TOKEN_PAIR | SWAPS | SWAPPERS | VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|---|
1 | WETH -> iETH | 26434 | 19433 | 133444.363309112 | 5.04820925 |
2 | WETH -> XVELO | 4675 | 892 | 902937.765272639 | 193.141767973 |
3 | WETH -> USD₮0 | 3589 | 1398 | 1471887.84845506 | 410.110852175 |
4 | XVELO -> WETH | 846 | 59 | 218148.619951473 | 257.858888832 |
5 | WETH -> CAT | 501 | 125 | 299408.192411958 | 597.621142539 |
6 | iETH -> WETH | 430 | 351 | 12281.999537292 | 28.562789622 |
7 | USD₮0 -> kBTC | 401 | 23 | 179599.109839238 | 447.8780794 |
8 | WETH -> DINERO | 284 | 101 | 12122.67083737 | 42.685460695 |
9 | WETH -> kBTC | 217 | 79 | 50008.697514705 | 230.454827257 |
10 | USD₮0 -> WETH | 200 | 103 | 30010.758260716 | 150.053791304 |
11 | USD₮0 -> XVELO | 198 | 70 | 6271.40952894 | 31.6737855 |
12 | WETH -> Kraken | 145 | 30 | 3638.724634618 | 25.094652653 |
13 | iETH -> USD₮0 | 123 | 117 | 1721.855966926 | 13.998828999 |
14 | kBTC -> USD₮0 | 91 | 20 | 60963.154793029 | 669.924777945 |
15 | WETH -> VIOLET | 47 | 8 | 70.444733894 | 1.498824125 |
16 | kBTC -> WETH | 44 | 23 | 15636.970112182 | 355.385684368 |
17 | USD₮0 -> iETH | 43 | 38 | 906.982631979 | 21.092619348 |
18 | WETH -> PURPLE | 39 | 29 | 9074.615224952 | 232.682441665 |
19 | XVELO -> USD₮0 | 26 | 22 | 4315.007551981 | 165.961828922 |
20 | WETH -> SHROOMY | 16 | 15 | 149.303556272 | 9.331472267 |
Afonso_DiazTop Pairs (by swap frequency)
Updated 2025-04-08
999
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
35
36
›
⌄
with
pricet as (
select
hour::date as date,
token_address,
avg(price) as token_price_usd
from
ink.price.ez_prices_hourly
group by 1, 2
),
txns as (
select
tx_hash,
block_timestamp,
origin_from_address as swapper,
a.contract_address as token_out,
b.contract_address as token_in,
nvl(a.decoded_log:value, a.decoded_log:wad) as amount_out_unadj,
nvl(b.decoded_log:value, b.decoded_log:wad) as amount_in_unadj
from
ink.core.ez_decoded_event_logs a
join
ink.core.ez_decoded_event_logs b using (tx_hash, block_timestamp, event_name)
where
a.event_name = 'Transfer'
and nvl(a.decoded_log:from, a.decoded_log:src) = swapper
and nvl(b.decoded_log:to, b.decoded_log:dst) = swapper
and tx_succeeded
and origin_to_address = '0x652e53c6a4fe39b6b30426d9c96376a105c89a95'
and tx_hash in (select distinct tx_hash from ink.core.ez_decoded_event_logs where event_name = 'Swap')
union all
select
Last run: about 2 months ago
53
3KB
14s