elsinaDistribution of Osmo in 2022
Updated 2022-10-27
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
select
date as "Day",
count(address) as "Count",
case
when BALANCE/1e6 < 1 then ' <1'
when BALANCE/1e6 < 10 then '1>= , <10'
when BALANCE/1e6 < 100 then '10>= , <100'
when BALANCE/1e6 < 1000 then '100>= , <1K'
when BALANCE/1e6 < 10000 then '1K>= , <10K'
when BALANCE/1e6 < 100000 then '10K>= , <100K'
when BALANCE/1e6 >= 100000 then '100>=' end as "Amount"
from osmosis.core.fact_daily_balances
where currency = 'uosmo' and DATE >= '2022-01-01' and BALANCE_TYPE = 'liquid'
group by "Day","Amount"
Run a query to Download Data