SWAP_ROUTE | SWAPS | SWAPPERS | VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|---|
1 | wNEAR - USDC | 1564830 | 279015 | 351896135.084446 | 224.015669864 |
2 | wNEAR - USDT.e | 2093492 | 135698 | 193454326.767363 | 90.141934501 |
3 | wNEAR - USDt | 3563320 | 632478 | 156467862.812765 | 43.619452867 |
4 | wNEAR - FRAX | 422321 | 57281 | 89970137.484064 | 212.816610608 |
5 | wNEAR - STNEAR | 85566 | 8416 | 79163903.8457796 | 866.818179134 |
6 | wNEAR - USDC.e | 547235 | 92652 | 50076122.3379688 | 91.404971695 |
7 | wNEAR - LINEAR | 96945 | 37667 | 39674045.2120612 | 402.492063711 |
8 | wNEAR - PURGE | 467873 | 10370 | 32695925.8648754 | 68.548510645 |
9 | wNEAR - ZEC | 283950 | 388 | 31598552.4565028 | 110.677942054 |
10 | wNEAR - ETH | 540628 | 136450 | 22135417.81369 | 40.277410892 |
Afonso_DiazTop swap routes
Updated 4 hours ago
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
34
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
trader as swapper,
platform,
symbol_in,
symbol_out,
nvl(amount_in_usd, amount_out_usd) as amount_usd
from
near.defi.ez_dex_swaps
where
block_timestamp between '{{ start_date }}' and '{{ end_date }}'
and 'wrap.near' in (token_in_contract, token_out_contract)
and amount_usd < 1e6
)
select
greatest(symbol_in, symbol_out) || ' - ' || least(symbol_in, symbol_out) as swap_route,
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
where
amount_usd > 0
and swap_route is not null
group by 1
order by volume_usd desc
limit 10
Last run: about 4 hours ago
10
612B
422s