Updated 2023-05-31
    select
    date_trunc('week', block_timestamp) as date,
    sum(issued_tokens) as supplied_tokens
    from ethereum.aave.ez_deposits
    where date >= '2022-01-01'
    and symbol='AAVE'
    group by 1


    Run a query to Download Data