Sbhn_NPswap qabli
Updated 2023-01-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
›
⌄
select
date_trunc('day',block_timestamp) as date,
platform,
'Swap FROM ETH' as swap_type,
count(distinct tx_hash) as swaps,
count(distinct SENDER) as swappers,
sum(AMOUNT_IN) as volume_ETH,
sum(amount_in_usd) as volume_USD,
sum(volume_ETH) over (order by date) as cum_volume_eth,
sum(volume_USD) over (order by date) as cum_volume_USD
from ethereum.core.ez_dex_swaps
where date >='2023-01-01' and date <='2023-01-16'
and SYMBOL_IN='WETH'
and event_name = 'Swap'
group by 1,2
union all
select
date_trunc('day',block_timestamp) as date,
platform,
'Swap TO ETH' as swap_type,
count(distinct tx_hash) as swaps,
count(distinct SENDER) as swappers,
sum(AMOUNT_out) as volume_ETH,
sum(amount_out_usd) as volume_USD,
sum(volume_ETH) over (order by date) as cum_volume_eth,
sum(volume_USD) over (order by date) as cum_volume_USD
from ethereum.core.ez_dex_swaps
where date >='2023-01-01' and date <='2023-01-16'
and SYMBOL_OUT='WETH'
and event_name = 'Swap'
group by 1,2
Run a query to Download Data