Metrics of stVault with DeFi Wrapper
The stVault under a pool is an ordinary stVault, so every metric on stVaults Metrics applies to it unchanged — Total Value, the Health Factor, the fee obligations, the performance metrics. This page covers what the DeFi Wrapper adds on top: the pool's own accounting, each depositor's position inside it, and the withdrawal queue.
Notation
| Symbol | Meaning |
|---|---|
| Total Value of the underlying stVault | |
| , | the stVault's Reserve Ratio and Forced Rebalance Threshold, as fractions |
| , | the pool's own ratios, as fractions |
| assets an account's stv is worth | |
| stETH an account has minted, in ETH | |
| the stv rate — assets per stv |
stv carries 27 decimals against the asset's 18, so rates involving it are scaled by on-chain.
Ratios are stored in basis points (10000 = 100%). The formulas here use fractions and ETH, while on-chain the minted
amounts and the minting capacity are held in stETH shares. Two steps separate the two: shares convert to stETH at
the current share rate, which rises with every rebase, and minted stETH counts as an equal amount of ETH of liability.
Ratios such as the Utilization Ratio are unaffected by the choice, because numerator and denominator convert alike.
and are the stVault's ratios plus a fixed gap, 250 BP in every shipped configuration, which is what makes the pool force-rebalance an account before the protocol force-rebalances the stVault — see §3.3.
Pool state metrics
Total nominal assets
The stVault's Total Value minus the fees it owes. This is the raw number the pool prices stv from, before the corrections in Total assets:
Total assets
What the pool's stv is collectively worth. Two corrections can apply, and only ever one of them, because they are the same difference measured in opposite directions:
Both quantities are defined below, and the mechanics behind them are in Unassigned liability and bad debt and Exceeding minted stETH.
The plain pool has no minting, so only the second branch ever applies to it.
stv rate
Assets per stv, the price at which deposits mint and withdrawals settle:
Before any stv is issued the rate starts at 1 ETH per stv, which fixes the scale and keeps later conversions exact.
Total liability shares
The stETH shares the stVault owes Lido Core. The pool separately tracks what its own accounts owe it, and normally the two match. When they do not, the gap has a name: unassigned liability if the stVault owes more, exceeding minted stETH if the pool's records do.
Unassigned liability
The excess of what the stVault owes over what the pool has on record — debt no account is registered as owing. It arises through bad debt socialization, when the DAO moves uncovered liability onto this vault.
While this is above zero, every transfer, mint and burn of stv reverts, deposits included. It is checked inside the ERC-20 hook and no role can override it. Anyone can clear it permissionlessly, either out of the vault's own assets or with ETH they supply — see Unassigned liability and bad debt.
Exceeding minted stETH
The same difference the other way round: the pool has more debt on record than the stVault owes, which happens when the stVault's liability is repaid without the pool being involved.
It is a pool-wide budget that accounts settle against first come, first served — see Exceeding minted stETH.
Per-account metrics
Account assets
What an account's stv is worth:
Locked assets
What the account must keep to carry the debt it has:
The account can move any stv above this amount; a transfer that would take the balance below it fails.
Threshold assets
The same shape at the lower ratio. Below it the account may be force-rebalanced by anyone:
The gap between lock and threshold is the room an account has to lose value before that happens. That
room is thin for an account that mints to its limit.
Minting capacity
What the account could owe in total against what it holds, and how much of that is still unused:
The remaining capacity can also be evaluated against ETH not yet deposited, so a depositor can see what a deposit would let them mint.
Rounding always runs against the account — capacity floors, lock ceils — so it can never leave a position
short of collateral.
Account Utilization Ratio
The share of the account's own capacity in use:
Account Health Factor
How well the account's debt is backed by the assets behind its stv:
The account is healthy while HF ≥ 100%. This is the per-account analogue of the stVault's
Health Factor, measured on one account's own
assets and debt. The stVault's figure is an aggregate and says nothing about any single account: one account
can be in breach while the stVault as a whole is healthy.
Force-rebalance amount
The stETH shares a force-rebalance would repay out of a breached account's own stv, chosen to land it back exactly on the pool reserve ratio:
Both sides are in stETH shares here, because that is how the contract solves it — is the account's assets converted at the current share rate. The derivation, and what happens when the account's stv does not cover its debt, are in §3.3.
Withdrawal queue metrics
Unfinalized totals
Everything filed after the last finalized request is still outstanding:
Four figures measure that range: how many requests it holds, and what those requests are owed in each of three units — stv, stETH shares and assets.
ETH free to stake
The part of the vault balance the queue has no claim on — what can go to new validators without leaving finalization short:
Here is the stVault's own balance less the ETH already staged for pending validator activations. At zero, everything sitting on the balance is spoken for by the queue.
Rate discount
Each finalized batch records a checkpoint holding the stv rate in force. At claim time the request's own creation rate is compared against it, and the correction runs one way only:
A request that waited through a loss absorbs its share of it. A request that waited through rewards does not capture them — those stay with the depositors still in the pool, whose validators earned them. See §3.4.
Claimable ETH
What a finalized request pays its owner:
where the debt is valued at the checkpoint's stETH share rate. The gas cost coverage is a per-request deduction that pays whoever finalizes, 0 by default and capped at 0.0005 ETH. It is taken as , so a request never goes negative.
Performance and APR
The pool publishes no APR of its own. Performance is a property of the underlying stVault, so the performance metrics on the main page — gross staking rewards, Node Operator and Lido fees, Gross and Net staking APR, Carry Spread — describe a pool's returns too.
The DeFi Wrapper widget shows depositors an APY derived from those. It reads the stVault's Net staking APR as a simple moving average from the stVaults API and compounds it daily:
The period is a day because an oracle report updates the stVault's value once a day, so each day's rewards start earning from the next one. The compounding is why the APY comes out slightly above the APR it is derived from.
Strategy pools
A strategy pool earns twice: the stVault stakes the ETH, and the stETH minted against it works in the external protocol.
Only the spread over stETH counts — the position is funded with minted stETH, whose rebase the depositor still owes — and only on the share of the assets actually minted against:
is the account's stETH debt divided by its assets, with both amounts expressed in ETH. is the account's Utilization Ratio, expressed as a percentage. Before a deposit, the estimate assumes full use of the minting capacity: , so . For an existing position, use the account's actual Utilization Ratio in the formula for .
The strategy term is negative whenever the external protocol yields less than stETH, putting the total below what plain staking in the same vault would have paid.