select date_trunc('day', block_timestamp) as day,
sum(amount) as ETH_deposited,
sum(ETH_deposited) over (order by day) as cumulative_ETH_deposited
from ethereum.core.ez_eth_transfers
where eth_to_address = '0xabea9132b05a70803a4e85094fd0e1800777fbef'
and day >= current_date - 90
group by 1