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