Tower BFT • Proof of History • Vote Credits • Jito MEV • mSOL / jitoSOL / Sanctum
Solana Staking
A practical, technically detailed guide to staking SOL on Solana: how Tower BFT consensus
and Proof of History work together to achieve sub-second confirmation, how vote credits
determine your staking rewards, what Jito MEV means for validator yield, how to compare
APY vs APR across Solana validators, and how mSOL, jitoSOL, and
Sanctum's LST aggregator provide liquid alternatives to native delegation.
Core distinction: Solana staking has no slashing of delegator principal —
a delinquent or misbehaving validator is simply removed from earning vote credits, and
delegators to that validator earn reduced or zero rewards for that epoch. Principal is safe;
only yield is at risk from validator performance failures.
This is a significant safety property for delegators compared to Cosmos Hub, Polkadot, or Ethereum.
How SOL Delegation Works: End-to-End (Stake → Activate → Earn → Unstake)
①
Create a stake account and delegate
Solana staking works through on-chain stake accounts — separate from your main wallet.
You create a stake account, fund it with SOL, and delegate to a validator.
The minimum is 0.001 SOL plus rent reserve (~0.00228 SOL for the stake account).
②
Stake warms up over one epoch
Newly delegated SOL does not immediately earn rewards. It "warms up" during the
current epoch and becomes fully active at the next epoch boundary.
Solana epochs last approximately 2–3 days (432,000 slots at ~0.5s each).
③
Rewards distribute at epoch boundaries
At the end of each epoch, rewards are calculated based on each validator's vote
credits — the cumulative score earned for correctly voting on block confirmations.
Rewards are automatically added to your stake account and compound for the next epoch.
④
Unstake: deactivation and cooldown
To withdraw, you deactivate your stake. It cools down over one epoch (~2–3 days)
and becomes withdrawable at the next epoch boundary.
During cooldown, the stake earns no rewards.
Overview: Solana's Design Philosophy and Staking Model
Solana is a high-performance Layer 1 blockchain designed around three core technical
innovations that work together to achieve high throughput with low latency: Proof of History
(a verifiable delay function used as a decentralised clock), Tower BFT (a PoH-optimised BFT
consensus algorithm), and a parallel transaction processing pipeline (Sealevel).
Official developer documentation at
solana.com/docs/economics/staking.
Proof of HistoryTower BFTVote CreditsJito MEVNo Delegator SlashingmSOL / jitoSOL
Why Solana's staking model differs from most PoS
On most PoS networks, validators propose and attest to blocks. On Solana, validators
vote on each block using a dedicated voting transaction — and those votes cost real
SOL in transaction fees (approximately 1.1 SOL per day per validator in vote costs).
This voting cost is factored into the commission structure you see as a delegator.
High-performing validators who earn more vote credits offset this cost; delinquent
validators burn SOL on vote fees without earning proportional rewards.
Solana does not slash delegator principal. If a validator misbehaves or goes offline,
delegators simply earn fewer (or zero) rewards for that epoch — their SOL principal
is unaffected. This is a significant safety advantage over Cosmos Hub (5% slash),
Polkadot (0.1–100% slash), and Ethereum (slashing for equivocation).
The risk for Solana delegators is yield loss, not principal loss.
No principal slashYield risk onlyUnique safety property
Solana performance context (2026): Solana has become one of the most
actively used blockchains by transaction volume, with thousands of validators globally.
Network health, validator statistics, and ecosystem TVL are tracked independently by
SolanaBeach.io
and
Validators.app.
Proof of History: The Cryptographic Clock That Enables Speed
Proof of History (PoH) is Solana's most distinctive innovation — a verifiable delay
function (VDF) that creates a historical record of events, acting as a shared clock
across the network. It is not consensus; it is the timestamp mechanism that allows
Solana's consensus to operate without waiting for all nodes to agree on time.
The original PoH paper is available at
solana.com/solana-whitepaper.pdf.
PoH sequence: continuous SHA-256 hash chain with transactions embedded at verifiable positions
H₀ seed
→
H₁
→
H₂ Tx embedded
→
H₃
→
H₄ Slot boundary
→
H₅
→
H₆ Tx embedded
→
H₇
→
H₈ Slot boundary
→
…
How PoH creates a verifiable time record
The leader (block producer) continuously runs SHA-256 hash iterations — each hash
takes real computational time to produce. Transactions are inserted into the hash
chain at specific positions, creating a cryptographically verifiable proof that the
transaction occurred at a specific point in the hash sequence.
Any node can verify the entire PoH sequence in parallel without running the hashes
sequentially — making verification fast.
Traditional BFT consensus spends significant time agreeing on what the current time is —
because nodes cannot trust each other's clocks. PoH provides a shared, verifiable clock
that all nodes can independently verify by re-running the hash chain.
This eliminates clock disagreements from consensus and allows Tower BFT to run
much faster than it otherwise could.
No clock sync neededEnables <0.5s slotsConsensus efficiency
What PoH means for staking: The 400–500ms slot time that PoH enables
is what makes Solana's high transaction throughput possible. For stakers, this means
rewards accumulate faster (more slots per epoch = more voting opportunities per validator)
and the network is more sensitive to validator latency — a slow validator misses voting
opportunities that directly reduce its vote credit score and your rewards.
Tower BFT: How Solana Consensus Reaches Finality
Tower BFT is Solana's consensus algorithm — a PoH-optimised version of Practical BFT
that uses the PoH hash chain as a shared clock to avoid the expensive clock synchronisation
overhead of traditional BFT algorithms.
Technical specification at
docs.solanalabs.com — Tower BFT.
How Tower BFT voting works
Validators submit vote transactions for each new block, recorded on-chain.
Each vote locks the validator's stake on that block for an exponentially increasing
lockout period — voting for a competing fork requires waiting through the lockout.
This makes double-voting economically irrational: the cost of waiting through an
exponential lockout greatly exceeds any benefit from voting on a competing chain.
Exponential lockoutAnti-fork incentiveVotes recorded on-chain
Optimistic confirmation vs finality
Solana uses two confirmation levels: optimistic confirmation (⅔+ stake voted on a block —
very fast, ~400ms) and true finality (the block is buried deep enough in confirmed votes
that reversal is computationally impossible — slower, ~12.8s). For staking, only
confirmed blocks generate vote credits — validators must respond quickly to avoid
missing optimistically confirmed blocks.
Vote latency and delegator yield connection: Tower BFT rewards validators
that vote quickly and accurately. A validator that votes late on blocks (high latency)
earns fewer maximum vote credits. Vote credit score is the direct multiplier on your
staking rewards — a validator at 95% vote credit efficiency earns 5% less in rewards
than a 100% efficient validator, for the same commission rate.
Vote Credits: The Mechanism That Directly Determines Your Rewards
Vote credits are the Solana-specific metric that determines how much of the epoch's
reward pool a validator receives. Understanding vote credits is the key to choosing
a good Solana validator. Credit data per validator is available at
Validators.app
and
SolanaBeach.io.
How vote credits are earned
Each time a validator successfully votes on a block that is subsequently confirmed,
it earns vote credits. The exact credit amount depends on how quickly the vote
was submitted relative to the slot — a latency-aware credit system introduced in
SIMD-0033 rewards timely votes more than late votes. A validator that consistently
votes in the first few slots after a block is proposed earns maximum credits.
At each epoch boundary, rewards are distributed in proportion to each validator's
vote credit share of the total credits earned by all validators in that epoch.
A validator with 1% of total vote credits earns approximately 1% of that epoch's
reward pool (adjusted for their stake weight). Commission is deducted from this
before delegators receive their portion.
Proportional to creditsEpoch-boundary payoutAuto-compounding
Vote credit efficiency comparison across validator tiers
Tier 1 (top performers)
98–100%
Tier 2 (good validators)
90–97%
Tier 3 (acceptable)
75–89%
Delinquent / poor
<75%
Practical rule: Only delegate to validators with trailing epoch vote credit
efficiency above 90%. Validators below 80% efficiency are earning meaningfully less per epoch
and represent poor delegation choices. Check the past 10 epochs of credit score on
Validators.app before delegating — one bad epoch is acceptable; consistent underperformance is not.
Rewards: Inflation, Jito MEV, and What Drives SOL Staking Yield
SOL staking rewards come from two sources: protocol inflation (the primary current source)
and MEV via the Jito ecosystem (a growing secondary source). Current inflation rate and
epoch reward data are available at
SolanaBeach.io.
SOL inflation: Solana launched with an initial inflation rate of 8% per year, decreasing by 15% annually toward a long-run target of 1.5%. In 2026, the inflation rate is approximately 4–5%. Of this, 95% goes to stakers and validators; 5% to the foundation. Current inflation rate is a protocol parameter verifiable on-chain.
Transaction fees: 50% of all Solana transaction fees are burned; 50% go to validators. The fee revenue component grows with network activity but is currently small relative to inflation.
Jito MEV (priority fees via block engine): Jito Labs operates a block engine that captures MEV and distributes it as "tips" to validators running the Jito-Solana validator client. Validators sharing Jito tips with delegators earn meaningfully higher effective APY than non-Jito validators. Jito data at jito.network.
Commission structure: validators charge commission on inflation rewards. Jito tips may be handled separately — some validators share 100% of Jito tips; others take a commission. Always check both the inflation commission and the Jito tip-sharing policy when evaluating a validator.
How Jito MEV adds to staking yield
Jito's block engine bundles MEV-producing transactions and auctions block space to
searchers. The auction proceeds ("tips") flow to validators running the Jito-Solana
client. Validators that pass these tips to delegators significantly boost effective APY.
At peak activity, Jito tips can add 1–3% additional APY on top of inflation rewards.
This is why jitoSOL liquid staking has become popular — it automatically captures
Jito tip revenue for all holders.
Solana validators pay approximately 1.1 SOL per day in vote transaction fees — a fixed
operational cost. Large validators with significant stake can absorb this easily; small
validators may find that vote costs exceed inflation earnings at low stake levels.
This creates a practical minimum viable stake size for validators — relevant when
evaluating whether a small validator is economically sustainable long-term.
Jito opt-in requirement: Not all validators run the Jito-Solana client or
share Jito tips with delegators. When comparing validators, check whether they run Jito
and what percentage of Jito tips they pass to delegators (Jito commission is separate from
inflation commission on some dashboards). Validators sharing 100% of Jito tips alongside
low inflation commission deliver the highest effective APY.
APY / APR: How to Compare Correctly for SOL Staking
Solana rewards auto-compound at each epoch boundary — so the APY figure is the honest
expected return if you stay delegated for a full year. The main complexity is the
Jito tip component, which many validators report separately.
Term
Solana context
What to watch
Gross inflation APR
Protocol inflation rate distributed to stakers (~4–5%)
Verify current rate on SolanaBeach.io — decreases ~15%/year per inflation schedule
Net APR (inflation only)
APR after validator commission on inflation rewards
Primary comparison metric for non-Jito validators; check commission on Validators.app
Jito tip APY
Additional yield from MEV tip sharing (variable)
Check validator's Jito commission and tip-sharing policy separately — not always included in quoted APY
Total effective APY
Inflation net APR + Jito tip yield + auto-compound
The honest total return estimate; use Validators.app or SolanaCompass for combined figures
Real yield
USD-adjusted return after SOL price movement
SOL price volatility dominates — 6% APY in SOL is not a USD guarantee
Quick calculation for Solana: Net APR (inflation) + Jito tip APY (if validator
shares tips) − validator vote cost drag (small) = total effective APY.
Use SolanaCompass.com
for combined effective APY estimates that include both inflation and Jito components.
How to Stake SOL: Step-by-Step Tutorial
Set up a Solana wallet:Phantom
is the most widely used Solana wallet with built-in staking support. Solflare is another strong option with advanced validator selection features. Download only from official developer sites — fake Phantom apps are a primary attack vector.
Fund your wallet with SOL: transfer SOL from an exchange to your Phantom/Solflare address. Keep at least 0.1 SOL liquid for transaction fees and rent.
Research validators: use
Validators.app
or
SolanaCompass.com
to evaluate validators on: vote credit efficiency (trailing 10 epochs), inflation commission, Jito tip sharing, stake concentration (avoid top-20 validators to support decentralisation), and data centre diversity.
Delegate via your wallet: in Phantom, click "Start Earning SOL" → "Native Staking" → search for your chosen validator. Review commission before confirming. Transaction fee: ~0.000005 SOL. Stake account rent: ~0.00228 SOL (returned on unstake).
Wait for activation: newly delegated SOL activates over one epoch (~2–3 days). You will see your stake as "activating" in your wallet until the epoch boundary.
Monitor via SolanaBeach.io or Validators.app: check your validator's vote credit performance at each epoch. If credit efficiency drops below 85% for multiple consecutive epochs, prepare to redelegate.
To unstake: deactivate in your wallet. The stake cools down over one epoch and is then withdrawable to your main balance.
Key principle: For SOL staking, validator selection focused on vote credit
efficiency and Jito tip sharing is the highest-yield optimisation available.
A validator with 99% vote credit efficiency + Jito tips dramatically outperforms one
with 90% vote credits and no Jito sharing — even with the same stated inflation commission.
Calculator: Net Yield Estimation for SOL
SOL yield calculation has two components — inflation rewards and Jito tips —
that must be modelled separately for an accurate estimate. Current parameters from
SolanaBeach.io.
Input
Meaning
Solana-specific note
SOL stake amount
Your delegated principal
No minimum beyond rent; rewards scale proportionally — 1 SOL earns same % as 10,000 SOL
Current inflation APR
Protocol inflation rate (~4–5% in 2026)
Decreasing per Solana's schedule — check current rate on SolanaBeach.io
Inflation commission %
Validator's cut of inflation rewards
Most competitive validators: 0–8%; verify on Validators.app
Variable: ~0.5–3% additional APY; check if validator runs Jito and their tip commission
Auto-compound frequency
Every ~2–3 days (one epoch) — automatic
No manual action required; rewards auto-add to stake account each epoch
Example: 100 SOL, top Jito validator
Inflation APR 4.5%, commission 7%, vote credits 99% → net inflation APR ≈ 4.16%. Jito tips ~1.5% additional (100% shared) → total effective APY ≈ 5.7%. Annual rewards: ~5.7 SOL. Auto-compounds every epoch. No gas cost for compounding.
Example: 100 SOL, no-Jito validator
Same inflation APR 4.5%, commission 5%, vote credits 96% → net inflation APR ≈ 4.1%. No Jito tips. Total effective APY ≈ 4.1%. Annual rewards: ~4.1 SOL. The Jito-enabled validator earns ~39% more yield at comparable commission — Jito participation is a significant differentiator.
Jito tip significance: The difference in effective APY between a high-quality
Jito-sharing validator and a non-Jito validator can be 1–3% additional APY —
representing up to 50%+ more annual yield at the same base commission.
Jito participation has become arguably the most important single criterion for
Solana validator selection as of 2025–2026.
Liquid Staking: mSOL, jitoSOL, and Sanctum
Three distinct approaches to Solana liquid staking have emerged, each with different
design philosophies and yield profiles. The Solana liquid staking ecosystem is tracked at
DeFiLlama — Solana.
Pool LST
Marinade Finance — mSOL
The original Solana liquid staking protocol. Deposit SOL, receive mSOL — a reward-bearing token whose exchange rate appreciates as staking rewards accrue. Marinade uses automated validator selection optimised for yield and decentralisation. mSOL is the most liquid Solana LST with widespread DeFi acceptance. Protocol fee: ~6% of rewards.
Jito's liquid staking product that specifically routes stake to Jito-client validators and captures MEV tips for token holders. jitoSOL earns both inflation rewards and Jito tip revenue — typically delivering higher effective APY than mSOL. Protocol fee: 4% of staking rewards. Best for users who want maximum APY from Solana staking.
jitoSOL + MEV tipsHigher APYJito ecosystem
Aggregator
Sanctum — Infinity Pool & LST Router
Sanctum is a Solana LST aggregator and liquidity layer that enables any LST to have deep liquidity. Sanctum's Infinity pool accepts all LSTs and its router finds the best LST yield for deposits. Sanctum enables validator-specific LSTs (e.g. bSOL, compassSOL) to maintain liquidity via shared pool. Documentation at sanctum.so.
LST aggregatorUniversal liquidityValidator LSTs
Dimension
Native delegation
Marinade (mSOL)
Jito (jitoSOL)
Unstaking period
~2–3 days (one epoch)
Instant via Marinade unstake (small fee)
Instant via DEX or epoch-based
MEV/Jito tips
Depends on validator choice
Partial (some Jito validators in pool)
Full — Jito-optimised by design
Effective APY (approx)
5–7% (Jito validator)
~6–6.5% (variable)
~6.5–8% (includes MEV)
Smart contract risk
None — native
Marinade contract risk
Jito contract risk
DeFi composability
SOL locked in stake account
mSOL usable in Solana DeFi
jitoSOL usable in Solana DeFi
Validator diversity
Your choice
Automated diversification
Jito-client validators only
Recommendation: For pure yield maximisation, jitoSOL delivers the highest
effective APY through MEV capture. For the safest approach with validator control,
native delegation to a high-quality Jito-participating validator is comparable in yield
with lower smart contract risk. mSOL is the best choice for DeFi use cases where
wide protocol acceptance matters more than marginal APY differences.
Delinquent Validators: Detection and Response
A delinquent validator is one that has stopped submitting votes — either due to software
failure, network issues, or hardware problems. Delegating to a delinquent validator
means earning zero rewards for that epoch. No principal is lost, but yield is forfeited.
How to detect delinquency
Check your validator's status on SolanaBeach.io or Validators.app using the validator's
vote account address. A delinquent validator shows "delinquent" status and will have
a recent epoch vote credit score of 0 or near-0. Most Solana wallets also display
a warning if your delegated validator is detected as delinquent.
Alerts can be set on Cogent Crypto
for validator status changes.
0 vote creditsWallet warningCogent alerts
What to do when your validator goes delinquent
Redelegate to a different validator as soon as possible. On Solana, redelegation is
done by deactivating your current stake, waiting one epoch (~2–3 days) for the SOL
to become available, and then creating a new stake account delegated to a different validator.
Some wallets support "stake merging" to simplify this process.
The epoch delay means acting early when you detect issues is important.
Deactivate immediately1-epoch waitRedelegate to new validator
Delinquency frequency on Solana: Short delinquency events (a few slots to
a few minutes) are relatively common and have minimal impact on vote credit scores.
Extended delinquency (hours or days) is uncommon for professional validators and should
prompt redelegation. Monitoring your validator at least weekly is the appropriate cadence —
epoch boundaries are the relevant time unit, not individual blocks.
Legitimacy, Trust Signals, and What to Watch (2025–2026)
Evaluating Solana staking legitimacy focuses on validator quality, wallet security,
and liquid staking protocol audits. Network health analytics from
SolanaBeach.io
and
Validators.app/stats.
Validator legitimacy signals
On-chain identity with verifiable keybase link and contact information.
Consistent vote credit efficiency above 95% over trailing 20 epochs.
Published data centre location and hardware specifications.
Transparent Jito participation policy and tip-sharing percentage.
Reasonable stake concentration (not in top 10 by stake — prefer validators that
support network decentralisation).
Active community presence and responsive support channel.
Red flags to investigate
0% commission with new validator and no history — commission can change at any time.
Undisclosed data centre infrastructure — validators sharing physical resources have
correlated failure risk.
Not participating in Jito without clear explanation.
Stake concentration in single cloud provider / geographic region.
Any "SOL staking reward" offer that requires sending SOL to claim.
2025/2026 specific threat: Fake Phantom Wallet apps across iOS, Android,
and Chrome extensions are the primary vector for Solana fund theft. Solana's fast
transaction finality makes theft extremely rapid once a seed phrase is compromised.
Download Phantom exclusively from phantom.app
and verify the app developer ID in the relevant app store. Never restore a wallet
from an unofficial source or enter your seed phrase on any non-official site.
Risks: No Delegator Slashing, But Yield and Key Risks Remain
Solana's risk profile for delegators is comparatively favourable because delegator
principal cannot be slashed — but several important risks remain.
Risk
Impact on Solana
Mitigation
Delegator slashing
Does NOT exist on Solana — delegator principal is safe
N/A — unique Solana safety property
Validator delinquency (yield loss)
Earn zero rewards for affected epochs
Monitor vote credit scores weekly; redelegate promptly if delinquency detected
Commission change
Validators can change commission with no prior notice
Monitor commission on Validators.app; set up alerts via Cogent Crypto
Network outages
Solana has experienced network interruptions historically
Historical issue — Solana has improved stability significantly. Monitor network health at SolanaBeach.io
Liquid staking smart contract
Principal loss if Marinade/Jito contracts are exploited
Use only audited protocols with multi-year mainnet track records; verify audit reports
SOL price volatility
USD real return depends on SOL price
Model USD scenarios; nominal SOL APY does not protect against price decline
Phishing / fake wallet
Seed phrase theft → immediate irreversible fund loss
Phantom from phantom.app only; hardware wallet for significant SOL; never enter seed online
Solana's no-delegator-slashing property in context: This is a genuinely
significant safety advantage over Cosmos Hub (5% delegator slash), Polkadot (proportional
delegator slash), and Ethereum PoS (validator-level slash that affects protocol operations).
For delegators focused on principal preservation, Solana's yield-risk-only model is
easier to manage than networks where validator misbehaviour directly reduces your SOL balance.
Comparison: Native SOL Delegation vs mSOL vs jitoSOL
The right choice depends on your yield priority, liquidity needs, and
comfort with additional smart contract layers.
When native delegation wins
You want zero smart contract risk beyond the base Solana protocol.
You want to choose your specific validators to support network decentralisation.
You are comfortable with the ~2–3 day epoch unstake period.
You choose a high-quality Jito-participating validator and enjoy comparable APY
to jitoSOL with lower protocol risk.
Lowest riskValidator controlComparable APY via Jito
When liquid staking wins
You need instant liquidity (Marinade's instant unstake or DEX secondary market).
You want to use SOL as DeFi collateral while earning staking yield simultaneously.
You want automated validator diversification across many pools.
jitoSOL is optimal if maximising MEV yield is the primary goal — it delivers the
highest effective APY in the Solana staking ecosystem.
Instant liquidityDeFi collateraljitoSOL for max APY
Decision shortcut: If you plan to use Solana DeFi, jitoSOL gives the
highest yield + instant liquidity + broad DeFi support. If you want the simplest approach
with zero smart contract risk, native delegation to a Jito-participating validator
with >97% vote credits delivers comparable APY. mSOL is the best middle ground
for DeFi users who prefer Marinade's automated validator diversification.
Best Practices: High-Impact Operational Rules for SOL Stakers
Prioritise vote credit efficiency over commission rate: a 5% commission validator with 99% vote credits earns more net yield than a 0% commission validator with 90% vote credits. Check trailing vote credit score on Validators.app before commission rate.
Evaluate Jito participation explicitly: check whether your target validator runs the Jito-Solana client and what percentage of tips they share. For maximum yield, Jito participation is the most important single criterion in 2025–2026.
Download Phantom or Solflare from official sources only: phantom.app, solflare.com. Fake Solana wallet apps are the highest-volume crypto theft vector globally in 2025–2026. Verify the app developer ID in every app store listing.
Hardware wallet for significant SOL positions: Ledger supports Solana natively via the Solana app. Pair with Phantom or Solflare for staking with hardware security.
Avoid delegating to the top 10–20 validators by stake: excessive stake concentration reduces Solana's decentralisation and BFT security. The Solana Foundation publishes validator decentralisation data — choosing validators outside the top concentration tier actively supports network health.
Monitor vote credits every epoch (~2–3 days): set up alerts on Cogent Crypto or check SolanaBeach.io regularly. Extended delinquency should trigger immediate redelegation action.
Keep at least 0.1 SOL liquid outside your stake account: for transaction fees, rent, and quick redelegation if your validator goes delinquent. Never stake 100% of your SOL.
For liquid staking: verify smart contract audits: Marinade and Jito have published audit reports — verify current audit status on their official documentation before depositing significant SOL.
Most common SOL staking mistake: Selecting the first validator in the default
wallet list or the validator with the highest displayed APY without checking vote credit efficiency.
Many default-listed validators in wallet interfaces are exchange validators with high stake
concentration — poor for network health. Some high-APY-displaying validators achieve this
by showing APY including MNDE or other non-SOL rewards that are volatile and not guaranteed.
Always verify: (1) vote credit score, (2) Jito participation, (3) commission, in that order.
Troubleshooting: Common Issues, Root Causes, and Fixes
"My stake shows 'activating' for more than one day"
Solana stake activation takes one full epoch (~2–3 days). If you delegated near the start of an epoch, you may wait the full epoch duration before "activating" transitions to "active." Check the current epoch and estimated time to next boundary on SolanaBeach.io.
Verify the delegation transaction was confirmed on-chain. Check your wallet's transaction history or search your stake account address on Solana Explorer — if the transaction was not confirmed, the delegation may need to be resubmitted.
"My rewards seem lower than expected this epoch"
Check your validator's vote credit score for the relevant epoch on Validators.app. If the validator had a period of delinquency or reduced voting efficiency, rewards for that epoch will be proportionally lower.
Verify the inflation commission rate — commission changes on Solana can take effect with no advance notice. Check your validator's current commission on the Solana Explorer or Validators.app.
Remember that Jito tip income is variable — lower network activity periods produce less MEV, reducing the tip component of APY.
"My validator shows as delinquent — what do I do?"
Begin the redelegation process immediately: deactivate your stake in your wallet. During the ~2–3 day cooldown epoch, research a replacement validator using Validators.app. After the epoch ends and SOL is withdrawable, create a new stake account and delegate to your chosen replacement.
Note: you cannot redelegate directly — you must deactivate, wait for the epoch, withdraw, and delegate fresh. Plan this process in advance to minimise the epochs of missed rewards.
"I received a 'claim your Solana staking rewards' message"
This is a scam. Solana staking rewards are automatically added to your stake account at each epoch boundary — there is no claiming action required and no separate site to "claim" from. Any message directing you to a site to claim rewards is phishing. Do not interact with it.
Best debugging source:SolanaBeach.io
and the official
Solana Explorer
are the authoritative data sources. Search your stake account address to see its exact
activation status, epoch reward history, and delegated validator details.
For validator-specific data (vote credits, commission history, Jito status), use Validators.app.
Authoritative Notes & External References
Primary sources used throughout this guide. All links point to official Solana Foundation
resources, official developer documentation, established validator analytics platforms,
and liquid staking protocol documentation.
About: Prepared by Crypto Finance Experts as a practical SEO-oriented knowledge base covering
Solana staking: Tower BFT consensus, Proof of History clock, vote credit mechanics, epoch rewards,
Jito MEV and tip sharing, mSOL/jitoSOL/Sanctum liquid staking, delinquent validator detection,
APY/APR, safety (no delegator slashing), and troubleshooting.
Solana Staking: Frequently Asked Questions
Solana staking works through on-chain stake accounts. You create a stake account, fund it with SOL, and delegate to a validator. The stake warms up over one epoch (~2–3 days) and then earns rewards at each subsequent epoch boundary. Rewards are automatically added to your stake account and compound for the next epoch — no manual claiming required. To withdraw, you deactivate the stake, wait one epoch for it to cool down, and then withdraw to your main balance.
In 2026, SOL staking yields approximately 4–5% gross APR from protocol inflation, decreasing per Solana's annual schedule. High-quality validators running the Jito client and sharing MEV tips can add 1–3% additional APY — bringing total effective APY for the best validators to 5–8%. Net APY after validator commission (typically 0–10%) and adjusted for vote credit efficiency is what you actually earn. Verify current rates on SolanaBeach.io and Validators.app — these show per-validator estimates.
No — Solana does not have delegator slashing. If a validator misbehaves or goes offline, delegators simply earn reduced or zero rewards for affected epochs. Your SOL principal is never reduced by validator performance failures. This is a significant safety advantage compared to networks like Cosmos Hub (5% slash), Polkadot (proportional delegator slash), and Ethereum PoS where validator issues can affect the protocol's operational integrity. The risk on Solana for delegators is yield loss only, not principal loss.
Vote credits are earned by validators for each block they successfully vote on that is subsequently confirmed. The vote credit score measures what percentage of maximum possible credits a validator earned in an epoch. A validator at 99% vote credit efficiency earns proportionally more rewards than one at 90%. Because rewards are distributed based on vote credit share, a validator's vote credit performance directly multiplies your effective APY. Always check trailing epoch vote credit scores (aim for 95%+) on Validators.app before delegating.
Jito is a MEV infrastructure layer for Solana. Jito's block engine bundles MEV-producing transactions and auctions block space to "searchers" who pay "tips." Validators running the Jito-Solana client receive these tips and can share them with delegators. Validators that share Jito tips can deliver 1–3% additional APY on top of standard inflation rewards — a significant boost. jitoSOL is Jito's liquid staking token that automatically captures MEV tip revenue for holders. As of 2025–2026, Jito participation is arguably the most important criterion for Solana validator selection.
mSOL (Marinade Finance) is the original Solana LST — auto-diversified across many validators, widest DeFi acceptance, ~6–6.5% effective APY. jitoSOL (Jito Network) routes stake specifically to Jito-client validators to capture MEV tips, delivering the highest effective APY (~6.5–8%) in the Solana liquid staking ecosystem. Sanctum is an LST aggregator and liquidity layer — not a standalone LST itself, but a protocol that enables any LST (including validator-specific tokens like bSOL, compassSOL) to maintain deep liquidity. Sanctum's Infinity pool accepts all Solana LSTs and its router finds optimal LST yield for deposits.
For native staking: deactivation takes approximately one full epoch (~2–3 days) before SOL becomes withdrawable. After the epoch, you withdraw to your main wallet — no additional waiting. For liquid staking: Marinade offers an instant unstake option (with a small fee) or standard epoch-based unstaking. jitoSOL can be sold on Solana DEXs for near-instant liquidity. The Solana epoch (~2–3 days) is shorter than most other PoS networks, making native unstaking relatively quick compared to Cosmos (21 days) or Polkadot (28 days).
Proof of History is a verifiable delay function that creates a shared cryptographic clock for the Solana network. It records the passage of time by continuously running SHA-256 hash iterations and embedding transactions at specific positions in the hash chain. This allows all nodes to independently verify the timing of events without relying on synchronised clocks. PoH enables Solana's ~400ms slot times by eliminating the clock synchronisation overhead of traditional BFT consensus — and is the foundation for Solana's high throughput. For stakers, faster slots mean more voting opportunities per epoch and faster reward accumulation.
Evaluate in this priority order: (1) Vote credit efficiency — aim for 95%+ over trailing 20 epochs on Validators.app. (2) Jito participation — does the validator run the Jito client and what percentage of tips do they share? (3) Inflation commission — lower is better, but only after confirming vote credits and Jito. (4) Stake concentration — avoid validators already holding >1.5% of total staked SOL to support decentralisation. (5) Identity verification — prefer validators with published keybase identity and contact information. (6) Data centre diversity — avoid validators clustered in the same DC as the largest operators.