0-MIDsupply count growth
    Updated 2023-04-13
    select date_trunc('month',BLOCK_TIMESTAMP)as month,count(distinct TX_HASH)as monthly_supply_count
    ,sum(monthly_supply_count)over(order by month)as supply_count_growth
    from ethereum.compound.ez_deposits
    where month>='2019-05-01'
    group by 1
    order by 1

    Run a query to Download Data