sarathDEX change osmo
Updated 2022-11-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
with daily_users AS (
select date(block_timestamp) as days,
tx_from as users
from osmosis.core.fact_transactions
where days >= '2022-10-10'
group by 1, 2
)
select days,
case
when days < '2022-11-06' then 'Pre-crisis'
else 'Crisis'
end as period,
count( DISTINCT users) as daily_users
from daily_users
group by days,period
Run a query to Download Data