sagharkariweekly user
Updated 2023-02-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select date_trunc (week,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