Eman-RazFOX Swaps on the EVM Chains Over Time
Updated 2024-08-20
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 ethereum as (select date_trunc('month',block_timestamp) as "Date", count(distinct tx_hash) as "Swap Count", sum(amount_in_usd) as "Swap Volume ($USD)",
count(distinct origin_from_address) as "Swapper Count",
'Ethereum' as "Chain"
from ethereum.defi.ez_dex_swaps
where (token_in='0xc770eefad204b5180df6a14ee197d99d808ee52d'
or
token_out='0xc770eefad204b5180df6a14ee197d99d808ee52d')
group by 1),
arbitrum as (select date_trunc('month',block_timestamp) as "Date", count(distinct tx_hash) as "Swap Count", sum(amount_in_usd) as "Swap Volume ($USD)",
count(distinct origin_from_address) as "Swapper Count",
'Arbitrum' as "Chain"
from arbitrum.defi.ez_dex_swaps
where (token_in=lower('0xf929de51D91C77E42f5090069E0AD7A09e513c73')
or
token_out=lower('0xf929de51D91C77E42f5090069E0AD7A09e513c73'))
group by 1),
optimism as (select date_trunc('month',block_timestamp) as "Date", count(distinct tx_hash) as "Swap Count", sum(amount_in_usd) as "Swap Volume ($USD)",
count(distinct origin_from_address) as "Swapper Count",
'Optimism' as "Chain"
from optimism.defi.ez_dex_swaps
where (token_in=lower('0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174')
or
token_out=lower('0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174'))
group by 1),
polygon as (select date_trunc('month',block_timestamp) as "Date", count(distinct tx_hash) as "Swap Count", sum(amount_in_usd) as "Swap Volume ($USD)",
count(distinct origin_from_address) as "Swapper Count",
'Polygon' as "Chain"
from polygon.defi.ez_dex_swaps
where (token_in=lower('0x65A05DB8322701724c197AF82C9CaE41195B0aA8')
or
token_out=lower('0x65A05DB8322701724c197AF82C9CaE41195B0aA8'))
group by 1)
QueryRunArchived: QueryRun has been archived