SWAP_ROUTE | SWAPS | SWAPPERS | VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|---|
1 | wNEAR - USDC | 1540782 | 278658 | 339768836.038036 | 219.685749465 |
2 | wNEAR - USDT.e | 2004329 | 134898 | 186274026.703996 | 90.801507771 |
3 | wNEAR - USDt | 3476040 | 631202 | 150841912.551421 | 43.113641348 |
4 | wNEAR - FRAX | 407562 | 57116 | 86830478.0177488 | 212.825537007 |
5 | wNEAR - STNEAR | 83564 | 8347 | 78189846.098461 | 877.354646527 |
6 | wNEAR - USDC.e | 540310 | 92508 | 49950777.9956118 | 92.343601577 |
7 | wNEAR - LINEAR | 96528 | 37610 | 39341262.9390869 | 400.999540701 |
8 | wNEAR - PURGE | 407632 | 10190 | 29652514.6829603 | 71.808462468 |
9 | wNEAR - ETH | 536112 | 136330 | 21853649.4934001 | 40.14632037 |
10 | wNEAR - UWON | 1906136 | 620098 | 21682398.5645552 | 11.336561682 |
Afonso_DiazTop swap routes
Updated 2 days 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: 2 days ago
10
617B
477s