TelemennoyerUntitled Query
Updated 2022-10-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
LIQUIDITY_PROVIDER_ADDRESS,
'deposited' as action,
sum(amount / pow(10,6)) as "volume"
from osmosis.core.fact_liquidity_provider_actions
where pool_id = 812
and currency != 'uosmo'
and action ='pool_joined'
and block_timestamp >= '2022-09-27 16:31:00'
and tx_status = 'SUCCEEDED'
group by 1,2
order by 3 desc
limit 10
Run a query to Download Data