misaghlbETH Staked - daily stETH staked in LIDO
    Updated 2022-06-11
    SELECT
    date(block_timestamp) AS date,
    count(DISTINCT tx_id) AS tx_count,
    count(DISTINCT origin_address) AS stakers_count,
    sum(amount) AS total_eth
    FROM ethereum.udm_events
    WHERE origin_address = from_address
    AND to_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
    AND event_type = 'native_eth'
    AND date >= CURRENT_DATE - INTERVAL'3 months'
    GROUP BY 1
    ORDER BY 1
    Run a query to Download Data