Skip to main content

What is Delta-Neutral?

A delta-neutral strategy has near-zero exposure to the price of the underlying asset. Instead of betting on prices going up or down, it captures the spread between what you earn supplying an asset and what you pay borrowing against it. The position delta is:
Δ = qC - B ≈ 0
Where qC is the amount of collateral supplied and B is the amount borrowed. When these are approximately equal, price movements cancel out - the strategy earns the net spread regardless of market direction.

Why It Matters

In traditional DeFi, earning returns usually means taking on price risk. If you supply ETH as collateral, you’re exposed to ETH’s price. If ETH drops 30%, your position drops 30%. Delta-neutral strategies remove this risk. By supplying and borrowing simultaneously:
  • If the collateral price goes up: the collateral is worth more, but so is the debt
  • If the collateral price goes down: the collateral is worth less, but so is the debt
Net effect: Price changes wash out. The strategy keeps the spread.

How Risk Architects Use This

Blend’s infrastructure gives Risk Architects the building blocks to construct delta-neutral positions inside user Safes. The platform supports flash loans for atomic setup - the entire position is built in a single transaction that either fully succeeds or fully reverts.
1

Request flash loan

Borrow amount F in the base asset (e.g., USDC) from a flash loan provider. This must be repaid within the same transaction.
2

Swap into collateral

Swap F into the collateral asset C (e.g., wstETH) via a DEX router.
3

Supply as collateral

Deposit C into a lending market (e.g., Morpho Blue) to create a collateralized position qC.
4

Borrow against collateral

Borrow B in the base asset against the collateral, where B ≤ LTV × F.
5

Repay flash loan

Use the borrowed amount B plus excess capital to repay the flash loan F. The transaction completes atomically.
Result: A leveraged, hedged position where qC ≈ B. The user earns the net spread between supply APY and borrow APY, amplified by leverage.

Execution Sequence

Leverage

The effective leverage on the strategy portion is:
ℓ = F / (F - B) = 1 / (1 - LTV)
LTVLeverageWhat it means
50%2xEach 1ofcapitalcontrols1 of capital controls 2 of exposure
75%4xEach 1ofcapitalcontrols1 of capital controls 4 of exposure
80%5xEach 1ofcapitalcontrols1 of capital controls 5 of exposure
90%10xEach 1ofcapitalcontrols1 of capital controls 10 of exposure
Higher leverage amplifies the spread but also amplifies risk. Risk Architects configure LTV caps per-market and per-Basket to prevent over-exposure.

Net APR Model

The blended return combines the base allocation with the leveraged strategy:
APR_net = x × r_vault + (1 - x) × ℓ × r_spread
VariableWhat it is
xFraction of capital retained in base vault
r_vaultBase vault APR
(1-x)Fraction of capital in the delta-neutral strategy
r_spreadNet spread (supply APY - borrow APY)
Effective leverage

Example

With 50% of capital in a base vault earning 4% and 50% in a 5x leveraged strategy with a 2% net spread:
APR_net = 0.5 × 4% + 0.5 × 5 × 2% = 2% + 5% = 7%

Safety Guarantees

Because positions are constructed atomically via flash loans:
  • If any step fails, the entire transaction reverts - no partial execution, no stuck funds
  • LTV caps are enforced on-chain by the lending market
  • RolesGuard validates every transaction before execution
  • The Safe owner can unwind at any time by repaying the debt and reclaiming collateral
Flash loans are risk-free by construction: the loan exists only for the duration of a single transaction. If it can’t be repaid, nothing happens.

Unwinding a Position

Teardown is the reverse of setup, also done atomically:
  1. Flash borrow USDC to repay debt
  2. Reclaim collateral (wstETH)
  3. Swap collateral back to USDC
  4. Repay flash loan
The user receives their principal plus any accumulated spread.
Last modified on February 6, 2026