0-MIDsupply amount growth
    Updated 2023-04-13
    select date_trunc('month',BLOCK_TIMESTAMP)as month,sum(SUPPLIED_BASE_ASSET_USD)as monthly_supplied_usd
    ,sum(monthly_supplied_usd)over(order by month)as supply_amount_usd_growth
    from ethereum.compound.ez_deposits
    where month>='2020-05-01'
    group by 1
    order by 1

    Run a query to Download Data