rajsRocketpool ETH Staked
    Updated 2022-09-03
    SELECT
    -- *
    sum(eth_value),
    count(*)
    -- min(block_timestamp)
    -- distinct input
    from ethereum.core.fact_traces
    where data:to = '0x4d05e3d48a938db4b7a9a59a802d5b45011bde58'
    -- where tx_hash = '0x27b9e8c41c41fb72b26e4d61ade9de38271481e9835f1604f93b7766d530acb9'
    and eth_value > 0
    and tx_status = 'SUCCESS'
    -- and input = '0xd0e30db0'
    -- and input <> '0xc095415d'
    -- and block_timestamp::date = '2021-12-31'
    order by block_timestamp desc
    -- limit 10
    Run a query to Download Data