Azinos7. osmo holder bridge in
    Updated 2022-11-24
    with t1 as(
    (select ADDRESS as number, 'Shrimp' as holder
    from
    osmosis.core.fact_daily_balances

    where
    CURRENCY='uosmo'
    and date='2022-11-24' and BALANCE/1e6 between 0 and 1)

    union all

    (select ADDRESS as number, 'Crab' as holder
    from
    osmosis.core.fact_daily_balances

    where
    CURRENCY='uosmo'
    and date='2022-11-24' and BALANCE/1e6 between 1 and 10)

    union all

    (select ADDRESS as number, 'Octopus' as holder
    from
    osmosis.core.fact_daily_balances

    where

    (CURRENCY='uosmo'
    and date='2022-11-24' and BALANCE/1e6 between 10 and 100))

    union all

    (select ADDRESS as number, 'Fish' as holder
    from
    osmosis.core.fact_daily_balances

    Run a query to Download Data