strawbettyUntitled Query
9
1
2
3
4
5
6
7
›
⌄
select block_timestamp::date as day,
sum(amount) as daily_ETH,
sum(daily_ETH) over (order by day) as cum_ETH
from ethereum.udm_events
where to_address = lower('0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84')
group by 1
order by 1 desc
Run a query to Download Data