ELAYNumber of OSMO holders
    Updated 2022-10-25
    SELECT DATE, BALANCE_TYPE,
    count(DISTINCT ADDRESS)
    as OSMO_holders
    from osmosis.core.fact_daily_balances
    where CURRENCY = 'uosmo'
    GROUP by 1,2 order by 1,2
    Run a query to Download Data