Health and Rebalance for stVault with DeFi Wrapper
The key stVault metrics that the Vault Owner should monitor and control are:
- Utilization Ratio — the share of the stETH minting capacity currently used by the Vault Owner. Learn more
- Health Factor — a metric that reflects the economic state of the stVault. It shows how the stETH liability is collateralized by the Total Value. A Health Factor of 100% corresponds to the Forced Rebalance Threshold, meaning that if the Health Factor falls below 100%, the stVault becomes subject to forced rebalancing. Learn more
Read more:
The Health Factor metric may decrease as a result of validator underperformance, penalties, or a slashing event.
If this happens, there are three main options available:
- Supply ETH to increase Total Value.
- Repay stETH to reduce stETH liability.
- Rebalance ETH (optionally combined with a supply in a single transaction).
Rebalancing involves transferring available ETH from the stVault balance to Lido Core, receiving stETH at a 1:1 ratio, and repaying it back to the stVault. This reduces stETH liability and thereby increases the Health Factor.
Rebalancing is performed in one transaction.
The amount of ETH required for rebalancing to bring the Utilization Ratio to 100% depends on the current Health Factor and Reserve Ratio. It can be pre-calculated manually using the formula, or via the built-in methods.
by Formula
ETH for rebalance = (stETH Liability − (1 − Reserve Ratio) × Total Value) / Reserve Ratio
by Command-line Interface
See the CLI documentation for rebalance commands.
using Etherscan UI
- Open Etherscan and navigate to the VaultHub contract by its address (available in the stVaults contract addresses list, see Environments).
- Since this contract is a proxy, complete the verification steps once (if not done before):
- Go to Contract → Code.
- Click More options.
- Select Is this a proxy?.
- Click Verify in the dialog.
- Return to the contract details page.
- Open the Contract tab → Read as Proxy.
- Click Connect to Web3 and connect your wallet in the dialog window.
- Find the method
healthShortfallSharesin the list, fill out the input with thevaultcontract address, and click Query. - Receive the result right under the submit button. It is denominated in stETH shares, not ETH.