flipside
FLIPSIDEAI
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
GET STARTED
flipside
Monthly New Pools
OneDataAnalyst
Monthly New Pools
Updated 2022-07-10
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
9
›
⌄
WITH
t1
AS
(
select
Min
(
Date_trunc
(
'month'
,
BLOCK_TIMESTAMP
)
)
AS
Date
,
POOL_ID
from
osmosis
.
core
.
fact_liquidity_provider_actions
group
by
2
)
select
date
,
count
(
pool_id
)
AS
pools
,
SUM
(
pools
)
over
(
Order
by
date
)
AS
ACC_Pools
from
t1
group
by
1
Results
Run a query to Download Data