mo115Copy of test
    Updated 2022-10-25
    SELECT
    date_trunc('week',date) as week,
    address as user,
    balance/pow(10,6)
    FROM osmosis.core.fact_daily_balances
    WHERE CURRENCY = 'uosmo'
    AND week >= '2022-01-03'

    order by 3 desc
    limit 100
    Run a query to Download Data