mlhaETH total
Updated 2022-09-14Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
with sell as (select sum(amount_in_usd) as swap_from_rETH_USD_volume
FROM ethereum.core.ez_dex_swaps
where block_timestamp >= '2022-01-01'
and symbol_in in ('aETH')
),
buy as (select sum(amount_out_usd) as swap_to_rETH_USD_volume
FROM ethereum.core.ez_dex_swaps
where block_timestamp >= '2022-01-01'
and symbol_out in ('aETH')
)
select swap_from_rETH_USD_volume,
swap_to_rETH_USD_volume
from sell x
join buy y
Run a query to Download Data