TOKEN_PAIR | TRANSACTIONS | USERS | TOTAL_VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|---|
1 | USDC -> FLOW | 6940 | 1564 | 3733581.07566064 | 533.368725094 |
2 | FLOW -> USDC | 7329 | 1535 | 3610699.80137748 | 487.602944143 |
3 | USDC.E -> FLOW | 2078 | 431 | 2116415.42753326 | 1012.154676008 |
4 | FLOW -> USDC.E | 2467 | 503 | 1465977.4106331 | 582.661927915 |
5 | FDUST -> FLOW | 2965 | 320 | 53525.334015256 | 17.128106885 |
6 | FLOW -> CEWETH | 308 | 149 | 37087.63159171 | 112.386762399 |
7 | FLOW -> FDUST | 947 | 175 | 29906.84438741 | 29.87696742 |
8 | CEWETH -> FLOW | 332 | 134 | 18732.56102534 | 53.829198349 |
9 | CEWBTC -> FLOW | 40 | 16 | 8304.571807313 | 193.129576914 |
10 | FLOW -> CEWBTC | 53 | 19 | 5553.159475215 | 97.423850442 |
11 | FDUST -> USDC | 404 | 85 | 110.685598844 | 0.2305949976 |
12 | USDC -> FDUST | 250 | 47 | 57.922377378 | 0.2032364119 |
Afonso_DiazBy token pair
Updated 2025-03-04
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
›
⌄
with
main as (
select
tx_id,
block_timestamp,
trader as user,
nvl(amount_in_usd, amount_out_usd) as amount_usd,
token_in_symbol as symbol_in,
token_out_symbol as symbol_out
from
flow.defi.ez_dex_swaps
where
amount_usd <= 1e6
and platform ilike 'increment%'
)
select
symbol_in || ' -> ' || symbol_out as token_pair,
count(distinct tx_id) as transactions,
count(distinct user) as users,
sum(amount_usd) as total_volume_usd,
avg(amount_usd) as average_amount_usd
from
main
where
token_pair is not null
group by 1
order by total_volume_usd desc
Last run: about 2 months ago
12
665B
3s