NuveveCryptoArchivedUser Count & WETH Removed From Aave 2 Weeks Before Merge
    Updated 2022-09-16
    select
    block_timestamp::date as date,
    count(distinct(depositor_address)) as users,
    sum(withdrawn_tokens) as total_eth
    from ethereum.aave.ez_withdraws
    where symbol = 'WETH'
    and block_timestamp >= '2022-09-01'
    and block_timestamp < '2022-09-15'
    group by date

    Run a query to Download Data