Lux Docs
Staking

Liquid Staking

Stake LUX via xLUX with no lock period and full DeFi composability

Liquid staking through the xLUX vault lets you earn staking rewards and protocol fees without locking your LUX. You receive xLUX shares that are freely transferable and usable across DeFi.

How It Works

  1. Deposit LUX into the LiquidLUX vault.
  2. Receive xLUX shares proportional to the current exchange rate.
  3. The vault accumulates protocol fees and validator rewards, increasing the LUX-per-xLUX ratio.
  4. Withdraw at any time by burning xLUX to receive your LUX plus earned yield.

Comparison with P-Chain Staking

FeatureP-Chain StakingLiquid Staking (xLUX)
Lock period2 weeks - 1 yearNone
Minimum25 LUX (delegation)No minimum
Yield sourceValidator rewardsAll protocol fees + validator rewards
ComposabilityNone (locked)Full DeFi (collateral, LP, trading)
GovernanceNonevLUX voting power
Slashing riskDirectSocialized with reserve buffer

DeFi Composability

xLUX can be used as collateral, provided as liquidity, or traded on any Lux DEX:

  • Perps collateral: Use xLUX as margin for leveraged positions.
  • AMM liquidity: Provide xLUX/LUSD or xLUX/WLUX liquidity and earn swap fees on top of vault yield.
  • Governance: xLUX counts toward vLUX voting power in the DAO.

Yield Stacking Strategy

Deposit LUX → xLUX (vault yield)

     ├── Use as Perps collateral (leveraged exposure)
     ├── Provide AMM liquidity (swap fees)
     └── Vote in governance (vLUX)

Contract

Deposit and withdraw through the LiquidLUX contract. See the Liquid Protocol API for the full interface.

// Deposit
uint256 shares = liquidLux.deposit(1000e18);

// Check value
uint256 luxValue = liquidLux.convertToAssets(shares);

// Withdraw
uint256 luxReceived = liquidLux.withdraw(shares);

On this page