Azinos7. osmo holder bridge in
Updated 2022-11-24Copy Reference Fork
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
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