SWAPS | SWAPPERS | VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|
1 | 72 | 52 | 3248.9 | 45.123611111 |
Afonso_DiazTotal
Updated 2025-03-30
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
transfers as (
select
tx_hash,
block_timestamp,
origin_from_address,
'RON' as symbol,
amount,
amount_usd,
from_address,
to_address
from
ronin.core.ez_native_transfers
where
origin_from_address in (from_address, to_address)
and origin_to_address in ('0xac4c6e212a361c968f1725b4d055b47e63f80b75', '0xe377e13256002ab260e8ab59478652710a79ac5c')
union all
select
tx_hash,
block_timestamp,
origin_from_address,
symbol,
amount,
amount_usd,
from_address,
to_address
from
ronin.core.ez_token_transfers
where
origin_from_address in (from_address, to_address)
and origin_to_address in ('0xac4c6e212a361c968f1725b4d055b47e63f80b75', '0xe377e13256002ab260e8ab59478652710a79ac5c')
),
Last run: 25 days ago
1
29B
2s