SELECT
date_trunc(day, block_timestamp) as date,
sum(eth_value) as eth_deposited
from
(
select * from ethereum.core.fact_transactions
where to_address = lower('0xaBEA9132b05A70803a4E85094fD0e1800777fBEF')
and eth_value > 0
and status = 'SUCCESS'
and block_timestamp >= CURRENT_DATE-60
)
group by 1
order by 1 desc