SWAPPER | SWAPS | VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|
1 | 7c5206b1b75b8787420b09d8697e08180cdf896c5fcf15f6afbf5f33fcc3cf72 | 633381 | 192462105.942531 | 303.863706387 |
2 | trader-near.near | 363101 | 131275880.139002 | 360.605423368 |
3 | 96dd5e85761cb091a0af7fc906b4126048b670bdcaa66035362031857f6206e9 | 238619 | 102934208.095203 | 431.374735856 |
4 | 487702bab3c6caa9cf1da3845e6311f5e1dd9a82f1c53e7e0fd55f55b631ab82 | 349132 | 53152912.3935919 | 152.243026688 |
5 | aldor.near | 390339 | 51358217.1894302 | 65.786852919 |
6 | simpleguy.near | 35050 | 26253436.9958384 | 748.344934606 |
7 | dao-v5.near | 24546 | 23571809.7039094 | 633.514558802 |
8 | v1.near | 151 | 21926664.2010134 | 140555.539750086 |
9 | 51c0b243a75ace637d883afaae4e912d8d5842bfae11e8adfc9afc269fb0b70f | 33156 | 20658457.3179901 | 623.0496522 |
10 | jreive.near | 125278 | 18044230.3812924 | 100.971597939 |
11 | kagool.near | 40090 | 12817289.8459804 | 159.858439816 |
12 | dao-v6.near | 8808 | 12047953.8924289 | 704.188081853 |
13 | zalevsky.near | 25450 | 10861070.6674751 | 213.380563212 |
14 | stasiey.near | 10240 | 10786838.3789569 | 368.566589639 |
15 | relay.tg | 537969 | 9706723.36693878 | 14.823249612 |
16 | achatz64.near | 15824 | 9625368.92122217 | 608.12287852 |
17 | frisky.near | 18572 | 9528619.90604935 | 256.531873413 |
18 | c0c47c126faec0741dc040db0f460599c90d2bc597c04f94adafb4e40f0b50fd | 98 | 7750749.45493073 | 79089.280152354 |
19 | roundshirt9942.near | 41503 | 7516000.60659627 | 181.095357121 |
20 | 0-relay.hot.tg | 349612 | 7429078.72869322 | 16.742340452 |
Afonso_DiazTop swappers
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
31
32
›
⌄
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
swapper,
count(distinct tx_hash) as swaps,
sum(amount_usd) as volume_usd,
avg(amount_usd) as average_amount_usd
from
main
where
amount_usd > 0
group by 1
order by volume_usd desc
limit 100
Last run: 14 days ago
100
7KB
646s