2844daily amount of ETH staked with Lido in the past 3 months
    Updated 2022-06-15
    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


    Run a query to Download Data