negin-khNumber of stakers on Solana Defi ecosystem beofre and after the hack
    Updated 2022-10-17
    select BLOCK_TIMESTAMP::date date ,
    count(distinct signers[0]) as stakers,
    CASE WHEN date >= '2022-10-11' THEN 'Post hack' ELSE 'Pre hack' END as group1
    from solana.core.ez_staking_lp_actions
    where event_type in ('delegate') and SUCCEEDED = TRUE
    and date >= '2022-10-01'
    group by 1,3
    Run a query to Download Data