shadilTotal number Rocketpool stakes in over time
    Updated 2022-09-04
    select count(*) as total, block_timestamp::date as date_time
    from ethereum_core.fact_event_logs
    where event_inputs:from in ('0x0000000000000000000000000000000000000000')
    and event_name in ('Transfer')
    and origin_to_address ilike '%0x4d05e3d48a938db4b7a9a59a802d5b45011bde58%'
    group by date_time
    Run a query to Download Data