MrftiOSMO top 100 holders (today)
    Updated 2022-10-24
    SELECT date,
    address as user,
    balance/pow(10,decimal) as total_osmo
    from osmosis.core.fact_daily_balances
    where currency = 'uosmo'
    and balance_type in ('liquid', 'staked')
    and date=CURRENT_DATE
    group by 1,2,3
    order by total_osmo desc
    limit 100
    Run a query to Download Data