mattkstewHODLers vs LPers vs Stakers 2
    Updated 2022-07-09

    select
    date_trunc('day', block_timestamp),
    count(*) as Staking_Events,
    count(distinct DELEGATOR_ADDRESS) as Delegators

    from osmosis.core.fact_staking
    group by 1
    Run a query to Download Data