freemartianLP Actions
Updated 2022-11-16
9
1
2
3
4
5
6
7
8
›
⌄
select
date_trunc('day', block_timestamp::date) as time,
action,
count(distinct tx_id) as action_count
from osmosis.core.fact_liquidity_provider_actions
where action in ('pool_exited','pool_joined')
and block_timestamp > CURRENT_DATE - 60
group by 1, 2
Run a query to Download Data