shengyi-chiuUntitled Query
    Updated 2022-07-16
    select validator_address,
    count (distinct tx_id) as Redelegates_Count
    from osmosis.core.fact_staking
    where tx_status = 'SUCCEEDED' and currency = 'uosmo'
    group by 1
    order by 2 desc
    limit 20
    Run a query to Download Data