0-MIDCurrently total supply by token
    Updated 2023-04-13
    select BLOCK_HOUR::date as date,UNDERLYING_SYMBOL,avg(SUPPLY_USD)as Currently_supply_amount
    ,rank() over(order by Currently_supply_amount) as rank
    from ethereum.compound.ez_market_stats
    where date=current_date-1
    group by 1,2
    Run a query to Download Data