mohammadh2) ETH Removed
    Updated 2022-09-15
    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