SWAP_ROUTE | SWAPS | SWAPPERS | VOLUME_USD | AVERAGE_AMOUNT_USD | VOLUME | AVERAGE_AMOUNT | |
---|---|---|---|---|---|---|---|
1 | WRON -> Ronke | 54059 | 8116 | 9781883.82 | 116.502314353 | 12995367267.9395 | 154774.927860361 |
2 | Ronke -> USDC | 2982 | 879 | 1312504.07 | 246.757674375 | 588336782.009679 | 110610.412109359 |
3 | USDC -> Ronke | 3187 | 873 | 754204.33 | 137.078213377 | 512624146.396418 | 93170.510068415 |
4 | WETH -> Ronke | 791 | 403 | 206430.44 | 158.063124043 | 176708436.429716 | 135305.081492891 |
5 | CAG -> Ronke | 829 | 412 | 199900.89 | 163.1844 | 203053895.962182 | 165758.282418108 |
6 | Ronke -> CAG | 594 | 274 | 175327.79 | 206.510942285 | 141932446.396739 | 167176.02638014 |
7 | KOKU -> Ronke | 571 | 340 | 134605.53 | 138.768587629 | 101996373.270863 | 105150.90027924 |
8 | AXS -> Ronke | 717 | 366 | 129639.09 | 121.72684507 | 170446850.539709 | 160043.991117098 |
9 | COCK -> Ronke | 253 | 132 | 96182.98 | 224.202750583 | 30969817.5858427 | 72190.716983316 |
10 | Ronke -> KOKU | 326 | 172 | 84803.32 | 140.17077686 | 40866981.0024965 | 67548.728929746 |
Afonso_DiazTop Trade Routes
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
33
34
35
36
›
⌄
with
swaps as (
select
tx_hash,
block_timestamp,
origin_from_address as swapper,
a.contract_address as token_in,
b.contract_address as token_out,
a.amount as amount_in,
b.amount as amount_out,
a.amount_usd as amount_in_usd,
b.amount_usd as amount_out_usd,
a.symbol as symbol_in,
b.symbol as symbol_out
from
ronin.core.ez_token_transfers a
join
ronin.core.ez_token_transfers b using (tx_hash, block_timestamp)
where
a.contract_address != b.contract_address
and b.to_address = origin_from_address
and a.to_address != '0x22cefc91e9b7c0f3890ebf9527ea89053490694e'
and b.to_address != '0x22cefc91e9b7c0f3890ebf9527ea89053490694e'
and a.from_address != '0x0000000000000000000000000000000000000000'
and b.from_address != '0x0000000000000000000000000000000000000000'
and tx_hash not in (select distinct tx_hash from ronin.core.fact_transactions where input_data = '0x')
),
main as (
select
*,
nvl(amount_in_usd, amount_out_usd) as amount_usd,
iff(token_in = '0xf988f63bf26c3ed3fbf39922149e3e7b1e5c27cb', amount_in, amount_out) as amount,
iff(token_in = '0xf988f63bf26c3ed3fbf39922149e3e7b1e5c27cb', 'Sell', 'Buy') as type
Last run: 12 days ago
10
831B
16s