A career guide for the growing field of Web3 staking. Learn what a staking specialist does, from running validators to designing liquid staking protocols.
A Web3 Staking Specialist keeps proof-of-stake networks secure and earning. You run validator infrastructure, build liquid staking products, or operate staking platforms that other people use. This guide explains what the work actually involves, who it suits, and how to build the skills with verifiable steps.
A staking specialist works on the proof-of-stake layer where token holders lock capital to validate transactions and attest to the correct chain. Validators get rewards for correct participation and lose ETH for going offline or signing conflicting messages. The specialist makes sure that participation is reliable, secure, and cost effective.
Three tracks make up most jobs. You can run validators directly, you can build liquid staking protocols, or you can build staking products for end users.
This path fits you if you like systems that must stay up, and you are comfortable with financial risk tied to uptime.
It is a poor fit if you want a purely research role with no on-call work, or if you do not want responsibility for private keys and customer funds.
You need the mechanics cold, because every hiring manager will test them.
Validators and committees. On Ethereum, time is split into 12-second slots and 32-slot epochs. One validator is randomly selected to propose a block each slot. A committee of validators attests to that block. Every active validator attests once per epoch, not once per slot. This keeps network load manageable. See the official proof-of-stake docs on ethereum.org for the full flow.
Capital at stake. You join as a validator by depositing 32 ETH into the deposit contract and running three pieces of software: an execution client, a consensus client, and a validator client. Since the Pectra upgrade in May 2025, a single validator can hold up to 2,048 ETH, with rewards compounding on every whole ETH above 32 when you use 0x02 withdrawal credentials. Deposits are recognized in about 13 minutes, then you wait in an activation queue that can take hours to weeks depending on demand. Withdrawals and exits can now be triggered directly from your withdrawal address, without the operator's signing keys. Source: ethereum.org staking overview.
Rewards in mid-2026. About 39 million ETH, roughly 32% of total supply, was staked as of June 2026, per on-chain trackers ultrasound.money and DefiLlama. With that much stake, base protocol APR sits around 2.4% to 2.9%. One large operator, Luganodes, reported 2.86% APR in April 2026 on 315,342 ETH. MEV-Boost can add another 0.5% to 1%, for a total of about 3.3% to 3.8% for well-run validators. Lido's stETH averaged about 2.4% gross in May 2026, which nets to about 2.16% after Lido's 10% fee. These yields are down from 4%+ in 2023 because issuance is split among more validators. The Gate and CoinLaw dashboards show the same compression: gross APRs span 1.9% to 2.8%, net yields cluster near 2.0% to 2.2%.
Penalties. Missed attestations cost small amounts of ETH each epoch. Equivocation, such as proposing two blocks in one slot or signing contradictory attestations, triggers slashing. Ethereum's slashing starts with an immediate penalty of 1/4096 of effective balance (up to 0.5 ETH), a correlation penalty halfway through the exit window around day 18 that scales with how many others are slashed at the same time, and ejection around day 36. Repeat or mass slashing can burn 100% of stake. This design makes coordinated attacks extremely costly.
Other networks differ. Cosmos SDK chains use a similar bonded stake model, but parameters vary by chain. On Cosmos Hub, double-sign costs about 5% and extended downtime costs about 0.01% plus jailing. Tombstoning is permanent. The code and docs for x/slashing and x/staking define the exact factors. Solana does not have live programmatic slashing as of July 2026. Rewards average about 6% to 7% for native SOL staking, with proposals SIMD-0204 and SIMD-0212 building detection and penalty economics for late 2026. A validator admission ticket of 1.6 SOL per epoch that is burned replaces the old voting cost. Per Everstake's July 2026 review, choosing a validator on Solana is still about lost yield more than loss of principal, but the economics may change if slashing ships.
You run the software that keeps the chain live.
What you do
Essential skills
This track underpins the other two. Even liquid staking teams need operators who understand validator performance at 12-second granularity.
For context, see our guide on breaking into blockchain DevOps.
You build protocols that let users stake without running a node and get a liquid receipt token back.
What you do
Essential skills
You build the hosted product that non-technical holders use.
What you do
Essential skills
Use these steps in order. Each one creates an artifact you can show to employers.
Read the official staking and proof-of-stake pages on ethereum.org, then pick one more network to compare. The Cosmos SDK staking and slashing modules show how delegation shares, unbonding, and tombstoning work with different parameters. Take notes on attestation, proposal, finality with checkpoints, and the two main slashing conditions. Write a one-page comparison of Ethereum and one Cosmos chain that you can hand to an interviewer.** 2. Run a validator on the right testnet**
Do not use Holesky. The Holesky testnet was deprecated in September 2025 after the Pectra rollout and is no longer maintained. For validator and staking work, use Hoodi, launched in March 2025 to replace Holesky. Hoodi activated Pectra at epoch 2048 on March 26, 2025, and is supported until September 2028. Use Sepolia only for application development. Ephemery resets every 28 days and is useful for short lifecycle tests.
Practical path:
3. Use liquid staking as a user with a small amount
Stake a small amount through one or two protocols and document what changes.
Note how each token behaves in a wallet, an explorer, and a lending app. That note becomes your answer to "explain rebasing versus exchange-rate LSTs" in interviews.
4. Build a small portfolio that proves reliability
Put each project in a public repo with a README that shows choices and trade-offs, not just happy-path screenshots.
In applications, state which networks, clients, and LSTs you have actually run, with hashes and block explorers. Name the testnet you used, the clients you ran, your skip or attestation rate, and how you handled the last client release. Hiring teams for this role value proven attention to upgrade windows and key handling more than generic DeFi knowledge.
See also: Mastering Web3 essential skills and Building a Web3 portfolio.
Do I need 32 ETH to work in staking
No. You need 32 ETH to activate a full Ethereum validator under your own keys, and that validator can now hold up to 2,048 ETH. You can still work in staking without that capital by running on Hoodi with test ETH, by operating a bonded minipool on Rocket Pool with about 4 ETH, or by building on pooled and liquid protocols that accept as little as 0.01 ETH per user. Is Holesky still the right testnet for validator practice
No. Holesky is deprecated and no longer supported by client teams. Use Hoodi for validator and staking provider work and Sepolia for application testing. Check the Ethereum Foundation blog post from March 18, 2025 and the September 1, 2025 shutdown notice for the timeline and purpose of each testnet. What is the difference between stETH, wstETH, and rETHstETH from Lido is rebasing, your balance grows daily and 1 stETH aims to equal 1 ETH plus rewards. wstETH is the wrapped, non-rebasing version where your balance stays fixed and the redemption value rises. rETH from Rocket Pool is also non-rebasing and works by exchange-rate appreciation. DeFi apps often prefer wstETH or rETH because balances do not change unexpectedly.
What causes slashing, and how common is it On Ethereum, provable double proposal or double attestation triggers slashing. On Cosmos SDK chains, double-sign and extended downtime trigger slashing and jailing. Well-run operators see zero slashing for long periods because the causes are preventable with key isolation, single active signer guarantees, and upgrade discipline. Correlation penalties mean that when many validators are slashed together, each loses more, so client diversity matters.
Does Solana have slashing Not yet as live enforced destruction of stake as of mid-2026. Solana validators that underperform lose rewards rather than principal, which is why research on skip rate, commission, and Jito MEV sharing dominates validator selection there. Changes are in progress. The validator admission ticket burned each epoch and the proposals SIMD-0204 and SIMD-0212 outline detection and future penalty economics. Follow official Solana docs and Everstake's protocol notes for updates before you assume risk.
How long do deposits and withdrawals take On Ethereum, deposits are seen in about 13 minutes. Activation and exit both go through rate-limited queues that can last hours to weeks based on how many validators are entering or leaving. Buying a liquid staking token is as fast as a swap, but the underlying validators are still queued. If you build products, surface both times to users.
Where should I track staking health and rewards
Start with ethereum.org for protocol rules, the Beacon API for validator and checkpoint data, and a local Prometheus and Grafana stack for your own node. For network-wide yield, watch DefiLlama and ultrasound.money for staked supply, issuance per day, and provider fees, and verify any single APR figure against at least one other source before you quote it.