PLATFORM | SWAPS | SWAPPERS | VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|---|
1 | hippo | 2136900 | 166677 | 285907337.198573 | 87.250184383 |
2 | cetus | 1257962 | 15338 | 3711915.13077 | 2.041031124 |
3 | tsunami | 8748 | 2405 | 1207584.43781373 | 138.041202311 |
4 | auxexchange | 2169519 | 154231 | 229670061.303318 | 79.567659967 |
5 | pancake | 13208162 | 699131 | 1400643233.49629 | 82.754034578 |
6 | liquidswap | 22530149 | 1399910 | 2860684993.82378 | 100.949862264 |
7 | batswap | 285074 | 28114 | 14254865.391016 | 43.809361834 |
8 | sushi | 2309096 | 171728 | 580387552.639064 | 235.621675645 |
9 | animeswap | 1441552 | 133667 | 7341873.20681253 | 3.491783659 |
10 | cellana | 14273550 | 614279 | 4355774603.76051 | 241.912122361 |
11 | thala | 8816295 | 634832 | 3914200509.99026 | 304.047879417 |
Afonso_DiazGeneral
Updated 2025-05-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
swapper,
platform,
nvl(amount_in_usd, amount_out_usd) as amount_usd,
symbol_in,
symbol_out,
token_in,
token_out
from
aptos.defi.ez_dex_swaps
where
amount_usd < 1e6
)
select
platform,
count(distinct tx_hash) as swaps,
count(distinct swapper) as swappers,
sum(amount_usd) as volume_usd,
avg(amount_usd) as average_amount_usd
from main
group by 1
Last run: 11 days ago
11
624B
13s