olavAverage Balance and Number of Total Holders from 2022-10-15 until 2022-10-23
    Updated 2022-10-26
    select
    date_trunc('day', date) as "Date",
    avg (balance/ pow(10, 6)) as "Average Balance",
    count(distinct(address)) "Number of Addresses"
    from osmosis.core.fact_daily_balances
    where currency = 'uosmo'
    and "Date" between'2022-10-15' and '2022-10-23'
    group by 1
    Run a query to Download Data