permaryDaily total stakes, delegating, withdrawals
    Updated 2025-03-31
    with unnest_signers as (
    select
    tx_id,
    block_timestamp,
    stake_authority,
    stake_account,
    event_type,
    succeeded,
    signer.value::STRING as signer
    from solana.gov.ez_staking_lp_actions,
    lateral flatten(input => signers) signer
    )
    select
    date_trunc('day', block_timestamp) as date,
    count(distinct tx_id) as total_stakes,
    count(distinct case when succeeded = 'true' then tx_id end) as successful_stakes,
    count(distinct case when succeeded = 'false' then tx_id end) as failed_stakes,
    count(distinct case when event_type = 'delegate' then tx_id end) as delegate_events,
    count(distinct case when event_type = 'withdraw' then tx_id end) as withdrawal_events,
    count(distinct stake_authority) as total_stakers,
    count(distinct stake_account) as stake_accounts,
    count(distinct signer) as total_signers
    from unnest_signers
    where block_timestamp >= '2024-01-01'
    and block_timestamp < '2025-01-01'
    group by date
    order by date asc;



    Last run: 27 days ago
    DATE
    TOTAL_STAKES
    SUCCESSFUL_STAKES
    FAILED_STAKES
    DELEGATE_EVENTS
    WITHDRAWAL_EVENTS
    TOTAL_STAKERS
    STAKE_ACCOUNTS
    TOTAL_SIGNERS
    1
    2024-01-01 00:00:00.000171481572214265539568857833026013030
    2
    2024-01-02 00:00:00.000285572505335047089743380273153214458
    3
    2024-01-03 00:00:00.000135291171718125521415962631916112511
    4
    2024-01-04 00:00:00.000206921745932335563696574913604814089
    5
    2024-01-05 00:00:00.000986396901734374202951221462210026
    6
    2024-01-06 00:00:00.00015169143767935480540354172300310263
    7
    2024-01-07 00:00:00.00086948523171373621704775109848583
    8
    2024-01-08 00:00:00.00018570176089626835510064662760912653
    9
    2024-01-09 00:00:00.0002315720561259610314405057412316910008
    10
    2024-01-10 00:00:00.000158351425115844905423571642189011960
    11
    2024-01-11 00:00:00.0002834327246109713198522975643183512731
    12
    2024-01-12 00:00:00.00099129094818443717174546144549152
    13
    2024-01-13 00:00:00.0006965519370502855623523859607605012103
    14
    2024-01-14 00:00:00.0001098688442142433018734971150739714
    15
    2024-01-15 00:00:00.0002677915232115475425418655043251810637
    16
    2024-01-16 00:00:00.000964393123313997235652951555410006
    17
    2024-01-17 00:00:00.0005203628939230975915592755395910512413
    18
    2024-01-18 00:00:00.00010691889917924243211747541528510142
    19
    2024-01-19 00:00:00.000129721181311594522508250101848310291
    20
    2024-01-20 00:00:00.00093408962378371028474639134498978
    ...
    366
    26KB
    14s