Swappers | Swaps | Avg Swap Per User | Volume | Avg Volume Per User | Average Volume | Median Volume | Max Volume | Token (IN) | Token (OUT) | |
---|---|---|---|---|---|---|---|---|---|---|
1 | 33100 | 115090 | 3.477039 | 11791668 | 356.243746224 | 89 | 2 | 26623 | 169 | 211 |
MasiTotal Numbers
Updated 2025-03-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 tb1 as ( select block_timestamp,
tx_hash,
origin_to_address,
origin_from_address as swapper,
from_address as dyor_router,
contract_address as token_in,
symbol as symbol_in,
amount as amount_in,
amount_usd as amount_in_usd
from ink.core.ez_token_transfers
where from_address = '0x9b17690de96fcfa80a3acaefe11d936629cd7a77'
union
select block_timestamp,
tx_hash,
origin_to_address,
origin_from_address as swapper,
from_address as dyor_router,
contract_address as token_in,
symbol as symbol_in,
amount as amount_in,
amount_usd as amount_in_usd
from ink.core.ez_token_transfers
where origin_to_address = lower('0x9b17690de96fcfa80a3acaefe11d936629cd7a77')
and origin_from_address = from_address)
,
tb2 as ( select b.*,
contract_address as token_out,
symbol as symbol_out,
amount as amount_out,
amount_usd as amount_out_usd
from ink.core.ez_token_transfers a join tb1 b on a.tx_hash = b.tx_hash
where to_address = b.swapper
union
select b.*,
contract_address as token_out,
symbol as symbol_out,
Last run: about 2 months ago
1
67B
28s