2844Number of swaps before and after war
Updated 2022-04-22
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
›
⌄
select count (tx_id) as swap_Daily,
platform,
case when platform='sushiswap' then 'sushiswap-after war'
when platform='uniswap-v2' then 'uniswap-v2-after war'
when platform='uniswap-v3' then 'uniswap-v3-after war'
end as platforms
from ethereum.dex_swaps
where
platform != 'curve'
and direction = 'IN'
and amount_in > '0'
and block_timestamp between '2022-02-24' and '2022-03-15'
GROUP by platform
UNION
select count (tx_id) as swap_Daily,
platform,
case when platform='sushiswap' then 'sushiswap-before war'
when platform='uniswap-v2' then 'uniswap-v2-before war'
when platform='uniswap-v3' then 'uniswap-v3-before war'
end as platforms
from ethereum.dex_swaps
where
platform != 'curve'
and direction = 'IN'
and amount_in > '0'
and block_timestamp between '2022-02-04' and '2022-02-23'
GROUP by platform
Run a query to Download Data