with stETH_stake as (
select
block_timestamp,
tx_hash
from flipside_prod_db.ethereum_core.fact_token_transfers
where contract_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
and from_address = '0x0000000000000000000000000000000000000000'
)
select
date_trunc('day', block_timestamp) as time,
count(distinct tx_hash) as number_of_staking_per_day
from stETH_stake
group by 1