What it is
Token staking is a mechanism where holders voluntarily lock their tokens into a smart contract for a period of time in exchange for something the contract grants only to lockers: yield, governance weight, access to features, or standing in a game or marketplace. The lockup itself is the point — it signals commitment and removes tokens from active circulation, which the protocol rewards.
How it works
- A holder sends tokens to a staking contract, which records their deposit and often issues a receipt (a staking position, an NFT, or a derivative token representing the stake).
- The contract defines what staking unlocks: a share of protocol revenue or emissions, voting/proposal rights in governance, boosted rewards elsewhere in the protocol, or a functional gate (e.g., needing a minimum stake to list an item, verify a claim, or participate in an activity).
- Rewards typically accrue over time, calculated from the staker's share of the total staked pool, and are either streamed continuously or claimable at intervals.
- Many designs impose an unbonding or cooldown period: requesting withdrawal starts a timer, and tokens remain locked (and often still at risk) until it elapses.
- Some systems add slashing — if the staker (or a validator/curator they staked in support of) acts maliciously or fails an obligation, a portion of the stake is destroyed or redistributed.
- When the holder unstakes, they reclaim their principal plus any accrued rewards, minus any penalties, and their governance weight or utility access drops to zero.
Why designers use it
- Reduces circulating supply and sell pressure by giving holders a reason to lock tokens rather than trade them.
- Aligns economic incentives with long-term participation: stakers only earn if they stay committed, discouraging short-term speculation.
- Creates a Sybil-resistant, costly signal for governance weight, curation, or reputation — an attacker must acquire and lock capital, not just create accounts.
- Can fund real yield from protocol fees or emissions, giving token holders a direct stake in the protocol's success.
Failure modes
- Emissions-funded yield collapse: if staking rewards come mostly from inflationary token emissions rather than real revenue, the reward rate becomes unsustainable and dilutes non-stakers, and yields crash once emissions taper.
- Mercenary capital churn: stakers chase the highest yield across protocols and exit the moment a better rate appears elsewhere, so staked TVL is a poor proxy for genuine commitment.
- Liquid staking re-leverage risk: when staking issues a tradeable derivative token, that derivative can be reused as collateral elsewhere, building hidden leverage that amplifies losses if the underlying stake is slashed or depegs.
- Governance plutocracy: if staking size directly equals voting power, large holders can dominate decisions, and coordinated "stake-and-vote" whales can override smaller participants.
- Slashing disputes: overly aggressive or ambiguous slashing conditions punish honest mistakes or infrastructure failures as if they were malicious, damaging trust in the system.
What to check before using it
- Trace where staking rewards actually come from (fees vs. new emissions) and model sustainability if usage doesn't grow.
- Decide on unbonding period length and whether it's long enough to matter for security/commitment without trapping user funds unreasonably.
- If slashing exists, define conditions precisely and test edge cases (downtime vs. malice) to avoid punishing honest failures.
- Consider whether staking-derived voting or utility power concentrates control among a few large holders, and whether caps or quadratic weighting are needed.
- If a liquid staking derivative is issued, audit how it can be reused as collateral and what happens to it during a slashing event.