Using Uniswap and other LP positions as loan collateral: how protocols price them, why v3 NFTs are harder than v2 tokens, and how impermanent loss interacts with liquidation.

If you hold a liquidity position, you hold an asset that earns fees and sits idle as collateral. The obvious question follows: can you borrow against it without withdrawing? Some protocols say yes. The mechanics are considerably more awkward than borrowing against a plain token, and the awkwardness is where people get liquidated.
An LP token is a claim on a share of two assets in a pool, plus accumulated fees. That is a different kind of object from a token with a market price, and every difficulty follows from it.
The naive method — read the pool's reserves, halve, multiply by spot — is exploitable. An attacker who can move the pool price can move the reported collateral value in the same transaction, which is the shape of a long list of historical exploits.
Safer implementations use a fair-value calculation: derive what the reserves would be if the pool were priced at an external oracle's price, then value the position from those hypothetical reserves. That makes the valuation depend on the oracle rather than on the pool's instantaneous state, so manipulating the pool alone does not move it.
Two things worth asking of any protocol that accepts LP collateral: which oracle prices the underlying assets, and whether the LP valuation is computed from reserves directly or from oracle-implied reserves. If the documentation cannot answer the second question, that is informative.
The distinction matters more than the brand of the DEX.
Fungible LP tokens — the classic constant-product model — are ordinary tokens. Every unit is identical, they transfer normally, and a lending protocol can hold them like any other collateral. This is the easy case, and it is why most LP-collateral support starts here.
Concentrated liquidity positions are NFTs. Each one has its own price range, its own fee tier and its own liquidity depth, so no two are interchangeable. Accepting them as collateral means valuing each position individually, and it introduces a failure mode fungible tokens do not have: when price leaves your range, the position converts entirely into one asset and stops earning fees. A lender must handle a collateral asset that can silently become 100% directional and stop producing yield, without the borrower doing anything.
That is why support for concentrated positions as collateral is much rarer, and why terms on it are usually worse.
This is the part that is genuinely different from ordinary collateral, and it is worth being precise about.
With a single-asset loan, your collateral value falls when that asset falls. With an LP position, divergence between the two assets reduces the position's value relative to simply holding them — so your collateral can lose value even when neither asset has crashed, purely because they moved apart.
The compounding problem: volatility is what causes divergence, and volatility is also when liquidations fire and when on-chain liquidity thins. The collateral weakens, the liquidation threshold approaches, and the market is at its least able to absorb a forced sale. Borrowing at a ratio that looks comfortable in calm conditions can be tight in exactly the conditions that matter.
A practical adjustment: size the loan against the position's value after a plausible divergence, not its value today. A stablecoin pair diverges little; a volatile pair against a stablecoin diverges a great deal. See impermanent loss explained for the arithmetic and crypto loan LTV explained for how to choose a ratio.
Liquidating LP collateral is a multi-step operation, and each step is a place it can go wrong. The liquidator must withdraw the position into its underlying assets, sell enough of them to cover the debt, and do it inside one transaction against a market that is already moving.
Concentrated positions add a further wrinkle: withdrawing removes liquidity from the very pool being sold into, so the exit worsens the price it depends on. In thin pools this is the difference between a clean liquidation and a shortfall the protocol has to absorb. Our guide to DeFi loan liquidations covers the general mechanics.
There is a second design that reaches a similar place from the other direction. Rather than depositing an LP position and borrowing something else, a leveraged farming protocol lets you deposit one asset, borrows the second on your behalf, and builds a larger position than your capital alone would support.
The economics differ in a way worth understanding. In LP-backed borrowing you keep the position and take on a debt to spend elsewhere. In leveraged farming the borrowed capital goes straight back into the position, so the borrow cost is paid out of farming yield rather than out of pocket, and the whole thing is managed as one unwindable unit.
JewelSwap runs the second model, with automated compounding and a single position object per user. The mechanics are in the beginner's guide to leveraged yield farming, and the broader category in what is yield farming.
Borrowing against LP tokens is a real capability and a reasonable one for fungible positions in deep, correlated pools. It becomes considerably harder to price and to liquidate for concentrated positions and volatile pairs, and the risk is not the same shape as a normal loan — your collateral is a moving composition, not a fixed quantity of a known asset.
If the goal is simply to put an idle position to work, compare it honestly against the alternatives: liquid staking keeps a transferable claim with a single risk, and leveraged farming pays the borrow cost out of yield rather than out of your pocket.
On some protocols, yes. Support is much more common for fungible constant-product LP tokens than for concentrated liquidity positions, which are NFTs with individual price ranges and have to be valued one by one. Availability, LTV and liquidation terms all differ by protocol, so check the specific market rather than assuming LP collateral is generally accepted.
Not by market price, since LP tokens rarely trade. Sound implementations compute a fair value: they take an external oracle price for each underlying asset, derive what the pool reserves would be at that price, and value your share from those. Implementations that read the pool's live reserves directly can be manipulated by trading the pool, which is the root of several historical exploits.
The liquidator withdraws it into the underlying assets and sells enough to repay your debt, typically plus a liquidation penalty. You lose the position itself, not just its value — including any fee income it would have earned, and including the price range you had chosen if it was a concentrated position.
Yes, directly. Divergence between the two assets reduces the position's value relative to holding them, so your collateral can weaken even without a broad market fall — and it weakens most during exactly the volatility that triggers liquidations. Size the loan against a post-divergence value, not today's.
Single assets are simpler and generally safer, because the collateral is a fixed quantity of a thing with a quoted price. LP collateral adds valuation complexity, a composition that shifts against you, and a harder liquidation path. The trade is that your capital keeps earning fees while it secures the loan.
In LP-backed borrowing you already hold the position and take out a loan against it to spend elsewhere. In leveraged farming the protocol borrows the second asset for you and puts it straight back into the position, so the debt funds the position rather than leaving it, and the borrow cost is paid from farming yield. See leveraged yield farming.