Liquid Staking
Auto-compounding liquid staking token
Last updated
Was this helpful?
Auto-compounding liquid staking token
Last updated
Was this helpful?
The liquid staking token, also called the LST, is the easiest way to get rewards from staking. It's like what stETH does for ETH staking.
The LST is, of course, liquid. Staking positions can be transferred without unstaking.
The LST auto-compounds rewards. Holders will automatically accrue the rewards without having to call claim()
The LST keeps governance power active. When the LST is in DeFi, cold storage, or a centralized exchange, the LST provides a backup plan for governance power.
The backup, called the , has the job of keeping voting power active in governance. For example, see the , which only votes on proposals that have lots of consensus.
Check out the code in the open-source .
Holder stake tokens to receive LST tokens.
Optionally, they can delegate the governance token voting power
The LST contracts deposit the staked tokens in Staker. The LST assigns the voting power to the holder's chosen delegate, if any. Otherwise, it assigns the voting power using the delegate
The can be configured by governance. This keeps the default voting power aligned with the DAO and mitigates capture risk.
The LST contract claims Staker's rewards regularly.
The position compounds. The rewards are auctioned off for more of the staked token, which is added to each user's staked position. e.g. a deposit worth 100 GOV tokens might grow to be worth 105 GOV tokens.
Holders can redeem their liquid staking tokens for the underlying staked token at any time. The LST has a short withdrawal delay to prevent MEV extraction.
Stakers - any holder of the staking token can stake for rewards
Owner - manages the fee switch
DelegateAdmin - controls the auto-delegate
Searchers - anyone, such as MEV searchers, can be a "crank turner" to push rewards through the system to stakers.
The owner can change the fee, up to a hardcoded MAX_FEE_BIPS
.
The fee is collecting on rewards. When a reward is distributed from the underlying staking system to stakers, the fee is applied to the reward amount.
The fee is only collected on rewards. There's no fee on deposits, staked assets, or withdrawals.
Each LST deployment consists of two ERC-20 tokens that distribute rewards through the same underlying accounting system.
Each deployment of the LST system includes both style of tokens, but a project may choose to emphasize one or the other, or to put both front and center for their users. Generally, fixed balance tokens are preferred by integrators and custody providers.
- Implements a rebasing style liquid staking token similar to stETH. One LST token is worth one of the underlying staked token, and each user's balance is updated dynamically.
- Implements a fixed balance vault-style staking token. A user's balance does not change, but also does not map 1:1 with the underlying staked token. Instead, the number of underlying tokens a user may claim in exchange for their position goes up over time.
For more information about the LST contracts, see