Date | DEX | Swaps | Swappers | Volume | |
---|---|---|---|---|---|
1 | 2025-03-03 00:00:00.000 | Trader Joe | 811 | 118 | 1377828 |
2 | 2025-03-03 00:00:00.000 | pharaoh-v2 | 526 | 105 | 1150181 |
3 | 2025-03-03 00:00:00.000 | Balancer | 66 | 9 | 16605 |
4 | 2025-03-03 00:00:00.000 | Uniswap | 5 | 4 | 1 |
5 | 2025-02-24 00:00:00.000 | Trader Joe | 547 | 79 | 830182 |
6 | 2025-02-24 00:00:00.000 | pharaoh-v2 | 211 | 57 | 194574 |
7 | 2025-02-24 00:00:00.000 | Balancer | 46 | 10 | 9262 |
8 | 2025-02-24 00:00:00.000 | Uniswap | 19 | 13 | 641 |
9 | 2025-02-24 00:00:00.000 | WOOFi | 1 | 1 | 1 |
10 | 2025-02-17 00:00:00.000 | Trader Joe | 509 | 67 | 724907 |
11 | 2025-02-17 00:00:00.000 | pharaoh-v2 | 298 | 49 | 387128 |
12 | 2025-02-17 00:00:00.000 | Balancer | 37 | 7 | 6512 |
13 | 2025-02-17 00:00:00.000 | Uniswap | 3 | 3 | 14 |
14 | 2025-02-10 00:00:00.000 | pharaoh-v2 | 363 | 47 | 347707 |
15 | 2025-02-10 00:00:00.000 | Trader Joe | 143 | 53 | 18364 |
16 | 2025-02-10 00:00:00.000 | Balancer | 38 | 9 | 4583 |
17 | 2025-02-10 00:00:00.000 | Uniswap | 2 | 2 | 5 |
18 | 2025-02-03 00:00:00.000 | pharaoh-v2 | 136 | 36 | 40845 |
19 | 2025-02-03 00:00:00.000 | Trader Joe | 194 | 62 | 28339 |
20 | 2025-02-03 00:00:00.000 | Balancer | 85 | 19 | 6380 |
alitaslimiSwaps DEXs Over Time
Updated 6 days ago
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 --------------------
swaps as (
select
block_timestamp,
tx_hash,
origin_from_address as swapper,
case platform
when 'balancer' then 'Balancer'
when 'curve' then 'Curve'
when 'trader-joe-v1' then 'Trader Joe'
when 'trader-joe-v2' then 'Trader Joe'
when 'uniswap-v3' then 'Uniswap'
when 'woofi' then 'WOOFi'
else platform
end as dex,
pool_name,
token_in as from_token,
token_out as to_token,
symbol_in as from_symbol,
symbol_out as to_symbol,
case
when amount_in_usd - amount_out_usd > 100 then amount_out_usd
when amount_in_usd - amount_out_usd < -100 then amount_in_usd
else (amount_in_usd + amount_out_usd) / 2
end as amount_usd,
iff(amount_in_usd - amount_out_usd between -10 and 10, (amount_out_usd - amount_in_usd) / amount_out_usd * 100, 0) as slippage
from
avalanche.defi.ez_dex_swaps
where
token_in in (
'0xc891eb4cbdeff6e073e859e987815ed1505c2acd', -- EURC
'0x7678e162f38ec9ef2bfd1d0aaf9fd93355e5fa0b', -- VEUR
'0x228a48df6819ccc2eca01e2192ebafffdad56c19' -- VCHF
)
or
Last run: 6 days ago
...
278
14KB
5s