BATCH | SWAPPERS | |
---|---|---|
1 | > $10,000 | 81935 |
2 | > $1,000 - $10,000 | 103238 |
3 | < $1 | 375211 |
4 | $100 - $1,000 | 201894 |
5 | $10 - $100 | 306135 |
6 | $1 - $10 | 278142 |
pouya_22Liquidswap-stats-swappers-dist-volume
Updated 2025-03-05
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
›
⌄
-- forked from Liquidswap-stats-swappers-dist-count @ https://flipsidecrypto.xyz/studio/queries/adbb3c48-ead5-439b-a911-f12a420c0e91
with swappers as (
select
swapper,
sum(amount_in_usd) as volume
from aptos.defi.ez_dex_swaps
where platform = 'liquidswap'
and block_timestamp >= dateadd(month, -{{month}}, current_date)
group by swapper
)
select
case when volume < 1 then '< $1'
when volume >= 1 and volume < 10 then '$1 - $10'
when volume > 10 and volume <= 100 then '$10 - $100'
when volume > 100 and volume <= 1000 then '$100 - $1,000'
when volume > 1000 and volume <= 10000 then '> $1,000 - $10,000'
else '> $10,000'
end as batch,
count(distinct swapper) as swappers
from swappers
group by batch
order by swappers desc
Last run: about 1 month ago
6
134B
4s