sagharkaridaily user
Updated 2023-02-13Copy Reference Fork
99
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
›
⌄
select
date_trunc(day, mindate) as date,
count(distinct liquidity_provider_address) as New_LPers,
sum(new_Lpers) over (
order by
date
) as Total_LPers
from
(
select
liquidity_provider_address,
min(block_timestamp) as mindate
from
osmosis.core.fact_liquidity_provider_actions
where
pool_id[0] = '773'
and action in ('pool_joined')
and TX_SUCCEEDED = 'true'
group by
1
)
group by
1
order by
1
Run a query to Download Data