Chain | Swap Count | Swap Volume ($USD) | Swap Volume | Swapper Count | Number of Token Pairs | |
---|---|---|---|---|---|---|
1 | Osmosis | 75529 | 10094487.73 | 23601016.91 | 1333 | 8 |
2 | Ethereum | 10917 | 9168381.68 | 20946927.24 | 1280 | 7 |
3 | Bsc | 3881 | 93540.48 | 227431.53 | 803 | 12 |
4 | Base | 3357 | 160025.13 | 374305.97 | 800 | 6 |
5 | Polygon | 740 | 4506.55 | 11053.33 | 319 | 7 |
6 | Arbitrum | 418 | 24562.22 | 56321.86 | 122 | 3 |
Eman-RazAXL Swap Count By Chain
Updated 2025-03-25
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 overview as (with ethereum as (select block_timestamp, tx_hash, origin_from_address as swapper, symbol_in, symbol_out, case
when token_in=lower('0x467719ad09025fcc6cf6f8311755809d45a5e5f3') then amount_in
when token_out=lower('0x467719ad09025fcc6cf6f8311755809d45a5e5f3') then amount_out
end as swap_amount, case
when token_in=lower('0x467719ad09025fcc6cf6f8311755809d45a5e5f3') then amount_in_usd
when token_out=lower('0x467719ad09025fcc6cf6f8311755809d45a5e5f3') then amount_out_usd
end as swap_amount_usd, 'Ethereum' as "Chain"
from ethereum.defi.ez_dex_swaps
where (token_in=lower('0x467719ad09025fcc6cf6f8311755809d45a5e5f3') or
token_out=lower('0x467719ad09025fcc6cf6f8311755809d45a5e5f3'))),
bsc as (select block_timestamp, tx_hash, origin_from_address as swapper, symbol_in, symbol_out, case
when token_in=lower('0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65') then amount_in
when token_out=lower('0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65') then amount_out
end as swap_amount, case
when token_in=lower('0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65') then amount_in_usd
when token_out=lower('0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65') then amount_out_usd
end as swap_amount_usd, 'Bsc' as "Chain"
from bsc.defi.ez_dex_swaps
where (token_in=lower('0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65') or
token_out=lower('0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65'))),
polygon as (select block_timestamp, tx_hash, origin_from_address as swapper, symbol_in, symbol_out, case
when token_in=lower('0x6e4e624106cb12e168e6533f8ec7c82263358940') then amount_in
when token_out=lower('0x6e4e624106cb12e168e6533f8ec7c82263358940') then amount_out
end as swap_amount, case
when token_in=lower('0x6e4e624106cb12e168e6533f8ec7c82263358940') then amount_in_usd
when token_out=lower('0x6e4e624106cb12e168e6533f8ec7c82263358940') then amount_out_usd
end as swap_amount_usd, 'Polygon' as "Chain"
from polygon.defi.ez_dex_swaps
where (token_in=lower('0x6e4e624106cb12e168e6533f8ec7c82263358940') or
token_out=lower('0x6e4e624106cb12e168e6533f8ec7c82263358940'))),
Last run: 20 days ago
6
258B
21s