kaibladeparameter list copy
    -- forked from 30f81980-060c-47fa-8089-79dde8a4c396

    select
    date_trunc('{{grouping}}', d.block_timestamp)::date AS date,
    sum(d.amount_deposited)
    from
    ethereum.maker.ez_deposits d
    where
    d.block_timestamp > current_timestamp - interval '1 {{grouping}}'
    group by 1
    order by 1 asc



    Run a query to Download Data