PROTOCOL | TOTAL_VOL | |
---|---|---|
1 | raydium amm | 25015325275 |
2 | orca | 20690304151 |
3 | meteora dlmm | 15664794907 |
4 | pumpswap | 13084525233 |
5 | lifinity v1 | 4598923615 |
6 | stabble | 3468583434 |
7 | pump.fun | 3276351035 |
8 | meteora pools | 2867728538 |
9 | launchlab | 494979252 |
10 | phoenix | 359253325 |
11 | launch coin on believe | 228512051 |
12 | skate amm | 118766535 |
13 | sanctum infinity | 79946274 |
14 | drift amm | 64503317 |
15 | saber | 53163458 |
16 | goosefx v2 | 41905622 |
17 | manifest trade | 25975921 |
18 | hashflow | 16657328 |
19 | saros | 9824289 |
20 | sanctum reserve | 9670825 |
tkvresearchabove-coral
Updated 8 days ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
-- select swap_program,
-- sum(SWAP_TO_AMOUNT_USD) as total_vol_usd
-- from solana.defi.ez_dex_swaps
-- where date(block_timestamp) >= current_date() - 30
-- group by 1
select protocol,
sum(volume) as total_vol
from external.defillama.fact_dex_volume
where chain = 'solana'
and
DATE >= current_date() - 30
group by 1
order by 2 desc
Last run: 8 days agoAuto-refreshes every 6 hours
32
759B
1s