← All posts

Borrowing against a liquidity position without closing it

A Uniswap range is an asset worth borrowing against. Two operations put one in a vault and lend you money, with the position left earning fees throughout.

Strategy2 min readDeFiLoops

You need money and you own a liquidity position. The obvious move is to close it, which costs you the fee income, books whatever the range has done to your ratio, and leaves you to rebuild later at a price you cannot predict.

The position is an asset. You can borrow against it and leave it where it is.

Two operations

Deposit and borrow
Moves a position you already hold into the vault and borrows against it in the same step. The borrow is optional — leave it out and the position is deposited, ready to borrow against later
Borrow more
Draws further against a position already in the vault. The amount is required here, because nothing else in the step could say how much

That second detail is a small piece of design worth noticing. The step’s own amount field is carrying the position’s identifier, so it cannot also carry a size — which means the borrow amount has to be stated explicitly. A borrow of zero would be a transaction that did nothing, so it is not treated as a default.

What the position keeps doing

It stays in the pool. It keeps collecting fees. The range is unchanged and the liquidity is unchanged; the only new fact is a claim against it.

That is the entire argument for doing this rather than selling. A liquidity position that is working has a return you stop receiving the moment you close it, and you cannot get back into the same position at the same price by deciding to later.

The cost of the debt

Two costs, and only one is the interest rate.

  • Interest, continuously, on what you drew.
  • Everything else becomes harder. Once there is debt against the position, collecting the fees, adding liquidity, moving the range and splitting it each require the debt to be cleared first — which is why they are all flash-funded operations here. That cost is invisible until you try to do routine maintenance and find it is no longer routine.

Which asset

The borrow asset determines which vault market you are in, and a different symbol is a different market rather than a setting inside one. Choosing it is choosing where the position lives, not just what arrives in your account.