Azin7. Share of Stak
    Updated 2022-10-26
    with t1 as
    (select
    count(*) as number ,VALIDATOR_ADDRESS
    from
    osmosis.core.fact_staking
    group by 2
    order by 1 DESC
    limit 10)

    select LABEL,number from t1 a left join osmosis.core.dim_labels b on a.VALIDATOR_ADDRESS=b.ADDRESS
    Run a query to Download Data