0xaimanWithdrawal dynamics on AAVE due to new token release since Sept 2021
    Updated 2023-03-26
    select date_trunc('day',block_timestamp) as date, sum(withdrawn_tokens) as sum_usdc
    from aave.withdraws
    where date > '2021-09-01'
    AND symbol = 'USDC'

    group by DATE
    Order by date
    limit 100
    Run a query to Download Data