Glossary

Delegated Staking

Delegated staking lets token holders assign their staking power to a validator without transferring custody, earning a share of staking rewards.

Key Takeaways

  • Delegated staking allows token holders to assign their staking power to a professional validator without giving up custody of their tokens, earning rewards minus a validator commission (typically 5 to 10%).
  • Unlike liquid staking, which issues tradeable derivative tokens, native delegation locks tokens on-chain for an unbonding period and does not produce a transferable receipt: the delegator retains ownership but cannot trade or use the tokens until they unstake.
  • Delegators share in slashing risk: if their chosen validator misbehaves, the delegator's staked tokens can be partially destroyed along with the validator's own stake.

What Is Delegated Staking?

Delegated staking is a mechanism in proof-of-stake blockchains that lets token holders participate in network validation without running validator infrastructure themselves. Instead of operating a node, the delegator assigns their tokens' staking weight to a validator of their choice. The validator uses the combined stake to participate in consensus, and the delegator receives a proportional share of the rewards after the validator deducts a commission.

Crucially, delegated staking is non-custodial on most networks: the delegator's tokens never leave their wallet or move to the validator's control. The delegation is a protocol-level assignment of voting power, not a transfer of funds. The delegator can redelegate to a different validator or unstake entirely at any time (subject to unbonding periods).

The model is analogous to how Bitcoin mining pools work: individual miners contribute hashrate to a pool operator who finds blocks, and rewards are distributed proportionally. In delegated staking, individual token holders contribute stake weight to a validator who produces blocks, and rewards flow back accordingly. The key difference is that delegators risk slashing penalties, while pool miners only risk the opportunity cost of contributing hashrate to a poorly performing pool.

How It Works

The delegation process follows a consistent pattern across most PoS networks, though the specifics vary by chain:

  1. The token holder selects a validator from the network's active validator set
  2. The holder submits a delegation transaction, bonding their tokens to the chosen validator
  3. The validator's total stake weight increases by the delegated amount, improving their chance of being selected to propose blocks
  4. When the validator earns rewards, the protocol distributes them proportionally: the validator takes their commission, and the remainder goes to delegators based on their share of the total delegation
  5. To unstake, the delegator submits an unbonding transaction and waits for the chain's cooldown period before tokens become liquid again

Delegation on Major Chains

Each PoS network implements delegation with different parameters and tradeoffs:

NetworkModelUnbonding PeriodTypical Commission
Cosmos (ATOM)Native delegation to up to 180 validators21 days5 to 10%
Solana (SOL)Stake accounts delegated to validators2 to 3 days (epoch-based)0 to 10%
Polkadot (DOT)Nominated PoS: nominate up to 16 validators28 days0 to 20%
Cardano (ADA)Non-custodial delegation to stake poolsNone (liquid at all times)1 to 5% + fixed fee
Ethereum (ETH)No native delegation (requires 32 ETH solo or liquid staking)Variable exit queueN/A natively

Cosmos: The Delegation Standard

Cosmos Hub pioneered the modern delegation model. ATOM holders delegate to validators in the active set (currently capped at 180 validators). The delegation is non-custodial: tokens remain bonded in the delegator's account but are "at stake" for the chosen validator. Delegators can redelegate from one validator to another without waiting for the 21-day unbonding period, but each redelegation starts a new 21-day lock on the destination validator.

# Cosmos SDK delegation commands
# Delegate tokens to a validator
gaiad tx staking delegate <validator-addr> 1000uatom \
  --from <delegator-key> --chain-id cosmoshub-4

# Redelegate from one validator to another
gaiad tx staking redelegate <src-validator> <dst-validator> 500uatom \
  --from <delegator-key>

# Unbond (starts 21-day unbonding period)
gaiad tx staking unbond <validator-addr> 1000uatom \
  --from <delegator-key>

Solana: Stake Accounts

Solana uses a stake account model where delegators create dedicated accounts that hold SOL and delegate to a single validator. Each stake account can only delegate to one validator, so users who want to split their delegation must create multiple accounts. Activation and deactivation happen at epoch boundaries (roughly every 2 to 3 days), meaning newly delegated stake does not earn rewards until the next epoch starts.

# Solana delegation commands
# Create a stake account and delegate
solana create-stake-account stake-keypair.json 100 \
  --from <wallet>
solana delegate-stake stake-keypair.json <vote-account>

# Deactivate stake (begins cooldown)
solana deactivate-stake stake-keypair.json

# Withdraw after cooldown completes
solana withdraw-stake stake-keypair.json <wallet> 100

Polkadot: Nominated Proof of Stake

Polkadot uses a variant called Nominated Proof of Stake (NPoS), where nominators select up to 16 validators to back. The protocol's election algorithm (Phragmén's method) then distributes stake across elected validators to maximize decentralization. This means a nominator's stake might be assigned to only a subset of their chosen validators in any given era. The approach actively balances stake distribution rather than allowing it to concentrate on popular validators.

Validator Selection Criteria

Choosing a validator is the most consequential decision a delegator makes. Poor validator selection can result in reduced rewards, slashing losses, or missed staking income. Key criteria to evaluate:

  • Uptime and reliability: validators that go offline miss block proposals and attestations, reducing rewards for all delegators. Look for validators with 99%+ uptime over extended periods
  • Commission rate: the percentage of rewards the validator retains. Lower is not always better: validators charging 0% may be unsustainable and could shut down unexpectedly
  • Self-stake ratio: how much of the validator's own capital is at stake. A high self-stake signals that the operator has significant skin in the game and is incentivized to maintain the node properly
  • Slashing history: validators that have been slashed previously may indicate poor operational practices or inadequate infrastructure
  • Governance participation: on chains where validators vote on governance proposals, active participation signals long-term commitment to the network
  • Infrastructure diversity: delegating to validators that run minority clients or operate in underrepresented geographies strengthens network decentralization

Delegated Staking vs. Liquid Staking

Native delegation and liquid staking both allow token holders to earn staking rewards without running validators, but they differ fundamentally in how they handle liquidity and composability:

FeatureNative DelegationLiquid Staking
Token custodyDelegator retains ownership on-chainTokens deposited into protocol smart contract
LiquidityLocked until unbonding completesTradeable via LST (stETH, mSOL, etc.)
DeFi composabilityNone: staked tokens cannot be used elsewhereFull: LSTs usable as collateral, LP positions, etc.
Validator choiceDelegator selects specific validator(s)Protocol manages validator set
Smart contract riskMinimal: delegation is a protocol-level operationSignificant: bugs in protocol contracts can lose funds
Depeg riskNoneLSTs can trade below underlying value during stress

The choice depends on the user's priorities. Native delegation offers simplicity, direct validator selection, and minimal smart contract exposure. Liquid staking offers capital efficiency and DeFi integration at the cost of additional risk layers. For a detailed comparison of yield strategies, see the stablecoin yield landscape research article.

The Mining Pool Analogy

For Bitcoin users, delegated staking maps closely to the mining pool model. In both systems, individual participants pool resources with a professional operator to smooth out reward variance:

AspectMining Pool (PoW)Delegated Staking (PoS)
Resource contributedHashrate (computational power)Token stake (economic weight)
Operator roleConstructs block templates, distributes rewardsRuns validator node, participates in consensus
Operator fee1 to 3% of rewards0 to 20% commission
Custody modelMiners retain hardware ownershipDelegators retain token ownership
Penalty for misbehaviorWasted electricity, orphaned blocksSlashing: direct loss of staked tokens
Switching costMinutes (point hashrate elsewhere)Days to weeks (unbonding period)

The critical difference is the slashing risk. A mining pool that acts poorly wastes electricity but the miner's hardware is unharmed. A validator that gets slashed destroys a portion of every delegator's stake. This makes validator selection in delegated staking a higher-stakes decision than choosing a mining pool.

Use Cases

  • Passive income for token holders: delegated staking lets holders earn yield on tokens they plan to hold long-term, without the technical overhead of running validator infrastructure. On most chains, delegation requires only a wallet and a single transaction
  • Network security at scale: delegation allows thousands of token holders to contribute to network security through a manageable set of professional validators. Cosmos Hub has over 150,000 unique delegator addresses securing the network through fewer than 180 active validators
  • Governance participation: on many PoS chains, staking (including delegated staking) confers governance rights. Some networks allow validators to vote on behalf of their delegators unless the delegator explicitly votes differently
  • Decentralization incentive: by making it easy for small holders to participate in staking, delegation distributes economic security more broadly than a system requiring every participant to run a full validator node

Risks and Considerations

Slashing Exposure

Delegators inherit the slashing risk of their chosen validator. If a validator double-signs a block or violates consensus rules, the penalty applies proportionally to all delegated stake. On Cosmos chains, the standard slashing penalty for double-signing is 5% of bonded tokens. On Ethereum (via liquid staking protocols that delegate internally), slashing penalties can scale dramatically if multiple validators are slashed simultaneously due to correlation penalties.

Delegators cannot prevent slashing once it occurs. Their only defense is careful validator selection and diversification across multiple validators to limit exposure to any single operator's failure.

Unbonding Liquidity Risk

Unbonding periods lock delegated tokens for days or weeks. During this window, the delegator cannot sell, trade, or use the tokens. If the token's price drops significantly during a 21-day Cosmos unbonding period, the delegator has no way to exit their position. This illiquidity risk is the primary motivation behind liquid staking protocols, which issue tradeable tokens representing staked positions.

Validator Concentration

Delegation tends to concentrate on well-known, low-commission validators. On Solana, the top 20 validators by stake control a disproportionate share of the network's total staked SOL. This concentration creates centralization pressure: if a few large validators collude or go offline simultaneously, it can affect network liveness. Some networks implement stake caps or diminishing returns for oversaturated validators to mitigate this.

Commission Changes

Validators can adjust their commission rates after attracting delegators. A validator might launch with a 0% commission to attract delegation, then raise it to 20% once they have a large stake. Some networks allow validators to change commission instantly, while others impose rate-change limits or notice periods. Delegators should monitor their validators and be prepared to redelegate if terms change unfavorably.

Opportunity Cost

While delegated stake earns rewards, it cannot be used in DeFi protocols for lending, liquidity provision, or collateralized borrowing. On networks with high DeFi yields, the opportunity cost of native delegation can exceed the staking reward. This tradeoff drives users toward liquid staking solutions, where staked capital remains composable with other protocols. For more on how this dynamic plays out across yield sources, see the restaking risks analysis.

Why It Matters

Delegated staking is the primary way most PoS token holders participate in network security. The majority of staked assets across Cosmos, Solana, Polkadot, and Cardano are delegated rather than directly validated. On Cosmos Hub alone, over 65% of ATOM supply is staked through delegation. The mechanism lowers the barrier to earning staking rewards from "run a server 24/7" to "click a button in your wallet," which dramatically broadens participation in network security.

For Bitcoin users exploring the broader crypto ecosystem, delegated staking is one of the most common yield-generating activities. Understanding how it works, what risks it carries, and how it compares to Bitcoin's mining model helps inform decisions about stablecoin yields and cross-chain interactions. Bitcoin Layer 2 networks like Spark take a different architectural approach, using threshold signatures rather than PoS consensus, but the staking paradigm remains central to the broader blockchain landscape.

This glossary entry is for informational purposes only and does not constitute financial or investment advice. Always do your own research before using any protocol or technology.