PLATFORM | SWAPS | SWAPPERS | VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|---|
1 | v1.jumbo_exchange.near | 59687 | 2769 | 1660254.43150978 | 22.637775177 |
2 | dex.thundercontract.near | 45 | 8 | 40.310539036 | 0.8957897564 |
3 | v2.ref-finance.near | 16281789 | 1051563 | 1242897936.7518 | 66.0118618 |
4 | ref.marior.near | 12 | 1 | 414.558294 | 34.5465245 |
Afonso_DiazBy platform
Updated 2025-05-18
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
›
⌄
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
platform,
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
group by 1
Last run: 16 days ago
4
244B
680s