POOL_NAME | SWAP_VOLUME | SWAPPERS | SWAPS | |
---|---|---|---|---|
1 | WETH-USDC | 421093760.87 | 30050 | 197395 |
2 | GRAIL-WETH | 4467215.03 | 13883 | 85326 |
3 | WETH-ARB | 216391015.445 | 10424 | 63347 |
4 | ARB-USDC | 75602700.07 | 3286 | 45010 |
5 | PENDLE-WETH | 58808115.64 | 1764 | 38408 |
0-MIDTop pools waps
Updated 2024-02-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
select POOL_NAME
,sum((AMOUNT_IN_USD+AMOUNT_OUT_USD)/2) as swap_volume
,count(distinct ORIGIN_FROM_ADDRESS) as swappers
,count(distinct TX_HASH) as swaps
from arbitrum.defi.ez_dex_swaps
where PLATFORM in ('camelot-v2','camelot-v3')
and BLOCK_TIMESTAMP::date>=current_date-30
and AMOUNT_IN_USD is not null
and AMOUNT_OUT_USD is not null
group by 1
order by 4 desc
limit 5
Last run: about 1 year ago
5
193B
2s