Vote Account
Pronunciation: VOHT uh-KOWNT
Definition
A vote account is a Solana on-chain account that records validator voting state, authorized voters, commission, credits, and reward history. Delegated stake points to the vote account rather than directly to the validator's network identity. Vote credits measure successful participation and influence staking rewards, while commission determines the validator operator's share under current reward rules. Operators must protect vote and withdraw authorities, maintain enough SOL for vote transaction fees, and update authorized voters safely.
Overview
A Solana vote account represents a validator’s consensus voting identity and stores data used by the Vote Program. It tracks recent votes, root information, epoch credits, authorized voters, withdraw authority, and commission.
Delegated stake points to the vote account rather than directly to the validator’s network identity. Vote credits measure successful participation and influence staking rewards, while commission determines the validator operator’s share under current reward rules. Operators must protect vote and withdraw authorities, maintain enough SOL for vote transaction fees, and update authorized voters safely. Delegators should verify the exact vote account because similar validator names are not authoritative. A vote account is distinct from a validator identity key, stake account, and ordinary wallet, even when one operator controls all related addresses. Testing for Vote Account should include valid and invalid examples, wrong-network values, boundary encodings, contract destinations, and any memo or tag requirements. Higher-value transfers benefit from an independent destination check rather than reliance on shortened display text.
A string that passes a format check can still belong to the wrong chain, unsupported asset, contract type, or destination that requires a memo or tag. Vote Account must be interpreted with its network, address or account type, encoding rules, and any required routing fields. Vote Account is an identifier or spendable object, not proof of legal ownership and not a secret credential. Authorization depends on keys, scripts, contracts, or protocol rules, while custodial systems may expose an identifier without giving the user direct control of the underlying account. Operational takeaway: A Solana vote account links consensus participation, credits, commission, and delegation, while its authorities and validator identity remain distinct.
Key Takeaway
A Solana vote account links consensus participation, credits, commission, and delegation, while its authorities and validator identity remain distinct.
Sources
- Solana Foundation Documentation: Core — Solana Foundation (2026-07-30)
- Solana Documentation: Transactions — Solana Foundation (2026-07-30)