with donations as (
select
block_timestamp::date as date,
sum(amount) as amount_eth
from ethereum.core.ez_eth_transfers
where eth_to_address = '0x7d655c57f71464b6f83811c55d84009cd9f5221c'
and origin_function_signature = '0x9120491c'
and block_timestamp >= '2022-09-07'
group by date
)
select
date,
sum(amount_eth) over(order by date) as cumulative_sum
from donations