flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Hot Contracts on Osmosis - Top 10 liquidity providers Since the beginning of May based on OSMO volume
pouya_22
Hot Contracts on Osmosis - Top 10 liquidity providers Since the beginning of May based on OSMO volume
Updated 2022-07-10
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
liquidity_provider_address
,
-- count(distinct tx_id) as number_of_txs
sum
(
amount
/
power
(
10
,
decimal
)
)
as
volume
from
osmosis
.
core
.
fact_liquidity_provider_actions
where
block_timestamp
::
date
>=
'2022-05-01'
and
tx_status
=
'SUCCEEDED'
and
action
=
'pool_joined'
and
amount
>
0
and
amount
is
not
null
group
by
1
order
by
2
desc
limit
10
Results
Run a query to Download Data