Soheil_MKAmounts of Supplied ETH in compound
    Updated 2022-09-15
    SELECT
    BLOCK_TIMESTAMP ::date as date,
    sum(SUPPLIED_BASE_ASSET) as supplied_ETH,
    sum(supplied_ETH) over (order by date) as cum_supplied_ETH
    from ethereum.compound.ez_deposits
    where SUPPLIED_SYMBOL ='ETH'
    and date >='2022-07-01'
    group by 1
    Run a query to Download Data