Sandeshnew users
Updated 2022-10-12
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
with join_date as
(
select
LIQUIDITY_PROVIDER_ADDRESS,
min(block_timestamp) as join_date,
case when join_date >= '2022-09-26' then 'after cosmoverse'
else 'before cosmoverse'
end as event
from osmosis.core.fact_liquidity_provider_actions
group by LIQUIDITY_PROVIDER_ADDRESS
)
select
join_date::date as "date",
event,
count(LIQUIDITY_PROVIDER_ADDRESS) as number_of_new_users
from join_date
where join_date >= '2022-09-12'
group by "date", event
Run a query to Download Data