Updated 2021-11-11
    select
    date_trunc('day',block_timestamp) as date,
    sum(amount) as amount_deposited
    from gold.ethereum_events
    where to_label IN ('curve','curve fi')
    and contract_address = '0x57ab1ec28d129707052df4df418d58a2d46d5f51' --SUSD
    and block_timestamp > '2020-10-01'
    group by 1;
    Run a query to Download Data