Liquidations
Liquidation exists to ensure operators are compensated for running validators and to prevent clusters from continuing to operate once their balance is no longer sufficient to cover ongoing costs.
To use SSV Network, stakers must deposit enough ETH into their cluster balance, proportional to the effective balance of their validators. The required protected portion is called liquidation collateral, while the balance above it is usually called operational runway.

Liquidators
Since Ethereum transactions are not free and users cannot be charged after their cluster balance is depleted, the protocol needs an incentive mechanism to keep the system solvent.
This role is filled by liquidators, who monitor the network and flag clusters whose balances are no longer sufficient to cover their costs.
SSV Network rewards liquidators for the cost and risk of liquidating insolvent clusters. The collateral serves both as a penalty for the cluster and as a reward to the liquidator.
Liquidation Collateral
The required collateral amount is the greater of two values: a fixed amount called the Minimum Liquidation Collateral, and a dynamic amount derived from the fees paid by the cluster over a predefined period called the Liquidation Threshold Period. Because fees vary across cluster compositions, this amount is calculated dynamically for each cluster.
Another way to explain it is to reverse the logic: Clusters that drop below the liquidation collateral threshold are deemed Liquidatable and are at risk of being liquidated.
Legend:
- - cluster balance (denominated in ETH); see Cluster Balance for the exact calculation
- - projected cluster expenses, also called the cluster burn rate (denominated in ETH per block)
- - minimum liquidation collateral (denominated in ETH)
- - liquidation threshold period (denominated in blocks)
Liquidated clusters will no longer be managed by operators and will become inactive to perform their duties; this could lead to severe penalties on the Beacon Chain.
Minimum Liquidation Collateral
A fixed constant, set by the SSV DAO and accessible through the SSVNetworkViews smart contract or via the Subgraph.
Liquidation Threshold Period
This is another fixed constant, set by the SSV DAO and accessible through the SSVNetworkViews smart contract or via the Subgraph. It can be defined as:
The minimum period (in blocks) for a cluster to maintain sufficient balance before they can be liquidated
This duration is denominated in blocks and is intended to ensure the cluster maintains enough balance to cover operator and network costs for at least that period.
To understand how to calculate when a cluster can be considered Liquidatable, another concept needs to be introduced: a cluster's Burn Rate.
Burn Rate
Because clusters vary in both validator effective balance and operator fees, the protocol estimates whether a cluster has enough balance for this period by calculating its burn rate.
The burn rate is the rate at which a cluster spends ETH per block, calculated as:
Legend:
- - operator fees - the fees of all operators in the cluster (denominated in ETH per block)
- - network fees - the fees owed to SSV Network (denominated in ETH per block)
- - total effective balance of validators managed by the cluster
Liquidation
Upon successful liquidation, the cluster will be flagged as "inactive". This will signal the operators managing the cluster's validators to cease their operation.
Clusters that have been liquidated can no longer use the network to run their validators until reactivation.
Liquidation Scenario Example
- Bob registers a single validator to the network that costs 0.04 ETH per year, with an initial cluster deposit of 0.05 ETH.
- Assuming a liquidation threshold period of one week (7 days) and an annual network fee of 0.01 ETH, Bob's liquidation collateral is 0.0009589 ETH: ((0.04 operator fee + 0.01 network fee) / 365 * 7).
- After a year, based on his burn rate of 0.00013699 ETH/day ((0.04 operator fee + 0.01 network fee) / 365), Bob's account falls below the liquidation threshold balance.
- Alice, acting as a liquidator, monitors the network and flags Bob's cluster for liquidation.
- The protocol confirms that Bob's account is insolvent and liquidates his cluster.
- Bob's cluster is marked inactive, and the remaining balance of 0.0009589 ETH is transferred to Alice as a liquidation reward.
- Bob's validator operators see that the cluster has been marked inactive and stop operating his validator on the Beacon Chain.
- Bob later deposits another 0.00506849 ETH, giving the cluster operational runway for another month, and reactivates it.