Quant Memo
Core

Proof of Stake and Staking Yields

Proof of stake replaces mining hardware with locked-up capital as the thing that makes a blockchain expensive to attack. The 'staking yield' investors quote is really a mix of new token issuance, transaction fees, and a real risk of losing the stake — closer to a dividend-plus-slashing-risk instrument than a savings account.

Prerequisites: Blockchains and Consensus

Proof of work makes attacking a blockchain expensive by burning electricity: a miner must out-compute the honest network. Proof of stake (PoS) makes attacking a blockchain expensive a different way — by requiring you to lock up the network's own valuable token as collateral and threatening to burn that if you misbehave. Instead of "prove you spent real-world energy," PoS says "prove you have skin in the game, and we'll destroy it if you cheat."

Think of it like a security deposit on an apartment. The landlord isn't paying you to be a good tenant out of the goodness of their heart — the deposit is only returned, plus sometimes a bit extra, if you follow the rules; damage the property (or in PoS terms, validate a fraudulent block) and the deposit is seized. A "validator" in PoS posts a large deposit of the native token, and in exchange for correctly proposing and confirming blocks, earns a staking yield. Misbehave — go offline too long, or try to validate two conflicting blocks — and a portion of that stake is slashed, destroyed outright.

Staking yield is compensation for locking capital and running honest infrastructure, not a fixed interest rate. It comes from new-token issuance and transaction fees, dilutes non-stakers, and carries real downside from slashing and lock-up illiquidity — it behaves more like a risky dividend than a bond coupon.

Where the yield comes from

staking yieldannual issuance+annual fee revenuetotal value staked\text{staking yield} \approx \frac{\text{annual issuance} + \text{annual fee revenue}}{\text{total value staked}}

Here annual issuance is the new tokens the protocol mints to pay validators, annual fee revenue is the share of transaction fees routed to validators, and total value staked is the dollar (or token) value locked up by all validators combined. In words: the yield is a pool of newly created and collected value, divided across everyone who has staked — so it mechanically falls as more capital piles in to stake, because the same pool of rewards is shared among more participants.

total value staked yield % 30% staked 70% staked
The reward pool is roughly fixed by protocol rules; more staked capital divides it more thinly, so quoted APRs compress as staking participation grows.

Worked example: computing a real yield

A network issues 900,000 new tokens per year to validators and collects another 300,000 tokens' worth of fees, for a total reward pool of 1,200,000 tokens. Total value staked across all validators is 30,000,000 tokens.

staking yield=1,200,00030,000,000=0.04=4%\text{staking yield} = \frac{1{,}200{,}000}{30{,}000{,}000} = 0.04 = 4\%

If participation then rises so that 40,000,000 tokens are staked while the reward pool stays roughly fixed (issuance schedules are typically set by protocol rules, not by demand), the yield falls to 1,200,000/40,000,000=3%1{,}200{,}000 / 40{,}000{,}000 = 3\% — the same headline "staking program" now pays a full percentage point less, purely from more capital chasing the same reward pool.

Worked example: slashing risk eats the yield

A validator stakes 10,000 tokens and earns the quoted 4 percent yield, expecting 400 tokens over the year. Midway through the year, a misconfigured server causes the validator to sign two conflicting blocks — a "double-sign" fault — and the protocol slashes 5 percent of the stake as a penalty: 500 tokens, plus the validator is ejected and stops earning further rewards for the rest of the year. Net result: roughly 200 tokens earned in the first half minus 500 tokens slashed, a loss of 300 tokens versus the 400 tokens the quoted yield implied. The headline APR said nothing about this tail risk.

What this means in practice

Institutional staking desks price staking yield the way they'd price any risky income stream: subtract expected slashing losses, subtract the opportunity cost of the token being locked and illiquid (many protocols impose multi-day or multi-week unbonding periods before staked tokens can be withdrawn), and only then compare the residual to other yield opportunities. Liquid staking derivatives exist precisely to solve the illiquidity piece, by issuing a tradeable receipt token against the locked stake.

The common mistake is quoting staking APR as if it were a savings-account interest rate. It is a share of protocol-level issuance and fees, it dilutes anyone who does not stake (their share of the network shrinks as the token supply grows), and it comes with real principal-at-risk from slashing and unbonding delays that a bond coupon never carries.

Key terms

  • Validator — a network participant who locks up (stakes) tokens as collateral to propose and confirm blocks.
  • Slashing — the protocol destroying part of a validator's stake as punishment for provable misbehavior.
  • Unbonding period — the mandatory delay between requesting to unstake and actually regaining liquid access to the tokens.
  • Issuance dilution — the reduction in a non-staker's proportional ownership as new tokens are minted to pay staking rewards.

Related concepts

Practice in interviews

Further reading

  • Buterin, A Proof of Stake Design Philosophy (2017)
  • Ethereum Foundation, Proof-of-Stake (PoS) documentation
ShareTwitterLinkedIn