MostlyData_Osmosis token distribution - whales
    Updated 2023-04-13
    with token_location as(
    select
    date,
    address,
    balance * pow(10,-decimal) as balance,
    balance_type

    from osmosis.core.fact_daily_balances
    where currency = 'uosmo'
    )

    select
    date,
    address,
    balance

    from token_location
    where balance > 1e5
    and balance_type = 'liquid'

    order by date asc
    Run a query to Download Data