✨Token Pair | 🔄Swap Count | 💰Swap Volume ($SPEC) | 💵Swap Volume ($USD) | 👥Swapper Count | |
---|---|---|---|---|---|
1 | WETH➡SPEC | 286817 | 28583560.1 | 287524994.37 | 35007 |
2 | SPEC➡WETH | 279477 | 28673951.5 | 288937666.1 | 40302 |
3 | SPEC➡SPECTR | 5952 | 881822.28 | 2492 | |
4 | USDC➡SPEC | 4515 | 8225.33 | 84067.42 | 1850 |
5 | SPEC➡USDC | 3987 | 8005.56 | 81083.92 | 1636 |
6 | SPEC➡SPECY | 3693 | 172635.22 | 1707 | |
7 | SPECTR➡SPEC | 3614 | 864161.12 | 1858 | |
8 | SPECY➡SPEC | 3000 | 175552.33 | 1174 | |
9 | SPEC➡RHJ | 2929 | 137608.18 | 1256 | |
10 | AERO➡SPEC | 2777 | 5291.88 | 56812.71 | 682 |
Eman-RazList of Tokens Swapped with SPEC Token
Updated 2025-04-28
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 overview as (select block_timestamp, tx_hash, origin_from_address as swapper,
symbol_in || '➡' || symbol_out as "✨Token Pair", case
when token_in = lower('0xAdF7C35560035944e805D98fF17d58CDe2449389') then sum(amount_in)
when token_out = lower('0xAdF7C35560035944e805D98fF17d58CDe2449389') then sum(amount_out)
end as volume, sum(coalesce(amount_in_usd,amount_out_usd)) as volume_usd, platform as dex, case
when token_in = lower('0xAdF7C35560035944e805D98fF17d58CDe2449389') then 'Sell'
when token_out = lower('0xAdF7C35560035944e805D98fF17d58CDe2449389') then 'Buy'
end as swap_direction, 'Ethereum' as "Chain"
from ethereum.defi.ez_dex_swaps
where (token_in = lower('0xAdF7C35560035944e805D98fF17d58CDe2449389')
or token_out = lower('0xAdF7C35560035944e805D98fF17d58CDe2449389'))
and block_timestamp::date between '{{Start_Date}}' and '{{End_Date}}'
group by block_timestamp, token_in, token_out, tx_hash, origin_from_address, symbol_in, symbol_out, platform
union all
select block_timestamp, tx_hash, origin_from_address as swapper,
symbol_in || '➡' || symbol_out as "✨Token Pair", case
when token_in = lower('0x96419929d7949D6A801A6909c145C8EEf6A40431') then sum(amount_in)
when token_out = lower('0x96419929d7949D6A801A6909c145C8EEf6A40431') then sum(amount_out)
end as volume, sum(coalesce(amount_in_usd,amount_out_usd)) as volume_usd, platform as dex, case
when token_in = lower('0x96419929d7949D6A801A6909c145C8EEf6A40431') then 'Sell'
when token_out = lower('0x96419929d7949D6A801A6909c145C8EEf6A40431') then 'Buy'
end as swap_direction, 'Base' as "Chain"
from base.defi.ez_dex_swaps
where (token_in = lower('0x96419929d7949D6A801A6909c145C8EEf6A40431')
or token_out = lower('0x96419929d7949D6A801A6909c145C8EEf6A40431'))
and block_timestamp::date between '{{Start_Date}}' and '{{End_Date}}'
group by block_timestamp, token_in, token_out, tx_hash, origin_from_address, symbol_in, symbol_out, platform)
select "✨Token Pair", count(distinct tx_hash) as "🔄Swap Count", ROUND(sum(volume),2) as "💰Swap Volume ($SPEC)",
ROUND(sum(volume_usd),2) as "💵Swap Volume ($USD)", count(distinct swapper) as "👥Swapper Count"
from overview
group by 1
order by 2 desc
LIMIT 10
Last run: about 1 month ago
10
444B
20s