0-MIDholders and supply
    Updated 2023-07-14
    with tab1 as (
    select ADDRESS as holder
    ,BALANCE/pow(10,DECIMAL) as balance
    from osmosis.core.fact_daily_balances
    where DATE=current_date
    and CURRENCY='uosmo'
    and BALANCE_TYPE='liquid'
    )
    select count(holder) as holders
    ,sum(balance) as total_supply
    from tab1


    Run a query to Download Data