kaibladeparameter list copy
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
-- 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