mohammadh2) ETH Removed
Updated 2022-09-15
999
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 deposit as (
with AAVE as
(
select
date_trunc('day',block_timestamp) as block_day,
sum(ISSUED_TOKENS) as eth_amount
from ethereum.aave.ez_deposits
where SYMBOL in('WETH', 'stETH')
and BLOCK_TIMESTAMP >= '2022-07-01'
group by block_day
),
MAKER as (
select
date_trunc('day', block_timestamp)as block_day,
sum(AMOUNT_DEPOSITED) as eth_amount
from ethereum.maker.ez_deposits
where BLOCK_TIMESTAMP >='2022-07-01'
and SYMBOL = 'WETH'
group by block_day
),
UNI as
(
with A as
(
select
date_trunc('day', block_timestamp) as block_day,
sum(AMOUNT0_ADJUSTED) as eth_amount0
from ethereum.uniswapv3.ez_lp_actions
where BLOCK_TIMESTAMP >='2022-07-01'
Run a query to Download Data