select date_trunc('day', block_timestamp::date) as Dte, sum(amount) as Daily_ETH_staked_Lido
from flipside_prod_db.ethereum.udm_events
where contract_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
and from_address = '0x0000000000000000000000000000000000000000'
and block_timestamp >= '2022-03-15'
group by dte
order by dte desc