0-MIDmonthly supplied(usd) by token
    Updated 2023-04-13
    select date_trunc('month',BLOCK_TIMESTAMP)as month,SUPPLIED_SYMBOL as token
    ,sum(SUPPLIED_BASE_ASSET_USD)as monthly_supplied_usd
    from ethereum.compound.ez_deposits
    where month>='2020-05-01'
    group by 1,2
    order by 1

    Run a query to Download Data