SWAPS | VOLUME_USD | AVERAGE_AMOUNT_USD | AMOUNT_CATEGORY | |
---|---|---|---|---|
1 | 445618 | 3557974.67 | 6.471751223 | Plankton ($0 - $9) |
2 | 553630 | 29072166.02 | 39.340564881 | Fish ($10 - $99) |
3 | 4834 | 200019195.18 | 25558.292254025 | Whale ($10,000+) |
4 | 354041 | 172117228.51 | 329.548459472 | Dolphin ($100 - $999) |
5 | 73761 | 296973577.04 | 2545.415077055 | Shark ($1,000 - $9,999) |
Afonso_DiazSwap Breakdown
Updated 2025-03-26
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
29
30
31
32
33
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
nvl(amount_in_usd, amount_out_usd) as amount_usd,
origin_from_address as swapper,
symbol_in,
symbol_out,
regexp_replace(platform, '-v.*', '') as platform
from
avalanche.defi.ez_dex_swaps
where
origin_to_address = '0x1a1ec25dc08e98e5e93f1104b5e5cdd298707d31' -- metamask: swap router
)
select
count(distinct tx_hash) as swaps,
sum(amount_usd) as volume_usd,
avg(amount_usd) as average_amount_usd,
case
when amount_usd >= 10000 then 'Whale ($10,000+)'
when amount_usd between 1000 and 9999 then 'Shark ($1,000 - $9,999)'
when amount_usd between 100 and 999 then 'Dolphin ($100 - $999)'
when amount_usd between 10 and 99 then 'Fish ($10 - $99)'
when amount_usd > 0 then 'Plankton ($0 - $9)'
else 'Unknown'
end as amount_category
from main
where
amount_usd > 0
group by amount_category
Last run: 29 days ago
5
284B
2s