0-MIDmonthly supply count by token
    Updated 2023-04-13
    select date_trunc('month',BLOCK_TIMESTAMP)as month,SUPPLIED_SYMBOL as token
    ,count(distinct TX_HASH)as monthly_supply_count
    from ethereum.compound.ez_deposits
    where month>='2019-05-01'
    group by 1,2
    order by 1

    Run a query to Download Data