ThatGuyDecentralization Post Merge 4. slashing
    Updated 2022-11-10
    select
    slot_timestamp::date as date,
    case
    when attester_slashings = [] then 'Not Slashed'
    else 'Attester Slashed'
    end as status,
    count (distinct slot_number) as "Block Count"
    from ethereum.beacon_chain.fact_blocks
    where attester_slashings is not null
    group by 1,2
    order by 1
    Run a query to Download Data