0-MIDTop 100 OSMO stk Holders start year
    Updated 2023-05-09

    select address as osmo_users,BALANCE/1e6 as osmo_bal_amount,rank()over(order by osmo_bal_amount)as rank
    from osmosis.core.fact_daily_balances
    where currency = 'uosmo'
    and BALANCE_TYPE='staked'
    and date = '2022-01-01'
    group by 1,2
    order by 2 desc
    limit 100

    Run a query to Download Data