akshatjainUntitled Query
    select date_trunc('month', BLOCK_TIMESTAMP)as date, sum(SUPPLIED_BASE_ASSET_USD) as deposits
    from ethereum.compound.ez_deposits
    group by 1
    order by 1 desc
    Run a query to Download Data