flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Most Gas Fees Paid by LPs
CryptoLion
Most Gas Fees Paid by LPs
Updated 2022-11-27
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
›
⌄
SELECT
liquidity_provider
,
sum
(
fee_usd
)
as
fees_paid
FROM
uniswapv3
.
lp_actions
INNER
JOIN
ethereum
.
transactions
on
uniswapv3
.
lp_actions
.
tx_id
=
ethereum
.
transactions
.
tx_id
GROUP
BY
liquidity_provider
HAVING
fees_paid
>
10000
ORDER
BY
fees_paid
DESC
Results
Run a query to Download Data