messarieth-val
    Updated 2022-12-21
    select
    date(slot_timestamp) as dt,
    proposer_index,
    count(slot_timestamp) as cou
    from ethereum.beacon_chain.fact_blocks
    where dt > DATE('2022-12-14')
    group by dt, proposer_index
    order by cou
    Run a query to Download Data