adriaparcerisasUSDC.grv/USDC pool 3
Updated 2023-02-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
select
distinct pool_id[0] as pool,
count(distinct tx_id) as actions,
count(distinct LIQUIDITY_PROVIDER_ADDRESS) as users
from osmosis.core.fact_liquidity_provider_actions
where ACTION in ('pool_joined')
and LIQUIDITY_PROVIDER_ADDRESS in (
select
DISTINCT LIQUIDITY_PROVIDER_ADDRESS AS exitors
from osmosis.core.fact_liquidity_provider_actions where ACTION in ('pool_exited')
and POOL_ID[0]='872'
) and block_timestamp>='2023-01-23'
group by 1
having users>1
order by 3 desc
Run a query to Download Data