Token Pair | Swap Count | Swapper Count | |
---|---|---|---|
1 | ETH➡USDC | 18842 | 11082 |
2 | USDC➡ETH | 9629 | 6744 |
3 | ETH➡WETH | 4305 | 2288 |
4 | ETH➡USDT | 3810 | 789 |
5 | USDC➡USDC | 2778 | 1828 |
SquidTop Token Pairs By Swap Count
Updated 2025-03-22
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 from_avax as (
--from native
select
block_number, block_timestamp, 'avalanche' as chain, tx_hash, origin_from_address as sender, 'AVAX' as from_token, amount as token_from_amount, amount_usd as token_from_amount_usd
from avalanche.core.ez_native_transfers
where block_timestamp::date between '{{Start_Date}}' and '{{End_Date}}'
and ORIGIN_TO_ADDRESS = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
and origin_from_address = from_address
union
--from token
select
block_number, block_timestamp, 'avalanche' as chain, tx_hash, origin_from_address as sender, symbol as from_token, amount as token_from_amount, amount_usd as token_from_amount_usd
from avalanche.core.ez_token_transfers
where block_timestamp::date between '{{Start_Date}}' and '{{End_Date}}'
and ORIGIN_TO_ADDRESS = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
and origin_from_address = from_address
),
to_avax as (
--to token
select
block_number, block_timestamp, 'avalanche' as chain, tx_hash, to_address as receiver, symbol as to_token, amount as token_to_amount, amount_usd as token_to_amount_usd
from avalanche.core.ez_token_transfers
where block_timestamp::date between '{{Start_Date}}' and '{{End_Date}}'
and origin_from_address = to_address
union
--to native
select
block_number, block_timestamp, 'avalanche' as chain, tx_hash, to_address as receiver, 'AVAX' as to_token, amount as token_to_amount, amount_usd as token_to_amount_usd
from avalanche.core.ez_native_transfers
where block_timestamp::date between '{{Start_Date}}' and '{{End_Date}}'
and origin_from_address = to_address
Last run: about 1 month ago
5
128B
512s