Staking pool operators lose up to 30% of potential revenue by leaving ETH idle after validation. Restaking via EigenLayer repurposes this capital to secure additional services (AVS), unlocking a new yield source. Additional income ranges from 3% to 12% APY on top of staking — for a $1M capital that's $30,000–$120,000 per year. We develop turnkey restaking protocols: from architecture to mainnet deployment. Our team has 5+ years in blockchain development, 15+ DeFi projects, and audits by leading firms. Restaking pools have attracted $15B+ TVL, and each new AVS requires proper stake distribution. We guarantee security and optimal yield.
What Does a Restaking Protocol Architecture Look Like?
EigenLayer introduces three roles: Staker (deposits ETH), Operator (manages validators), and AVS (service using restaking). Stakers delegate their funds to operators via the Delegation Manager. Operators register in AVS and take on additional slashing conditions. Detailed role and contract descriptions can be found in the official EigenLayer documentation.
Key contracts:
- EigenPod: contract verifying ETH staking on the Beacon Chain via EIP-4788 and Merkle proofs.
- Delegation Manager: manages delegation and withdrawal delay (7 days in EigenLayer).
- Slasher: AVS contract that calls
slash() on violation.
// Simplified: verification of validator credentials
function verifyWithdrawalCredentials(
uint64[] calldata oracleTimestamps,
BeaconChainProofs.StateRootProof calldata stateRootProof,
uint40[] calldata validatorIndices,
bytes[] calldata validatorFieldsProofs,
bytes32[][] calldata validatorFields
) external {
// Verification via Beacon Chain state root
// Accrue restaking shares
}
What Risks Arise in Restaking and How to Avoid Them?
An operator registered in 5 AVS, if slashed in one, loses part of the stake backing all 5 — this is cascading risk. Native restaking reduces liquidity: funds are locked until withdrawal. Liquid Restaking Tokens (LRT) solve this but multiply risks via DeFi. Restaking via EigenLayer increases returns 1.5–2x compared to solo staking, but requires careful control. We thoroughly select operators with >99% uptime and low reward correlation. LRT increases liquidity 2x compared to native restaking — you can use the token in other protocols without withdrawing ETH.
| Approach |
Liquidity |
Yield |
Risks |
| EigenLayer native restaking |
Low (locked until withdrawal) |
Base + AVS rewards |
Slashing correlated risk |
| Liquid Restaking Tokens (LRT) |
High (token used in DeFi) |
Depends on strategy |
Risk multiplication via DeFi |
| Custom restaking protocol |
Configurable |
Full control |
High development complexity |
How to Choose AVS for Restaking?
Key criteria: operator reliability, slashing conditions, payout frequency, and LRT compatibility. Compare popular AVS:
| AVS |
Type |
Yield |
Risks |
| EigenDA |
DA layer |
Medium |
Low (proven) |
| Oracle AVS (Chainlink) |
Oracle |
High |
Medium (data accuracy dependency) |
| Bridge AVS |
Bridge |
High |
High (bridge vulnerabilities) |
AVS selection directly impacts the yield profile of the restaking protocol. We help you pick the optimal set for your goals.
How We Develop AVS: Stages and Timeline
The process takes 6–12 months. Key stages:
- Analysis and Design (2–4 weeks): economic model, slashing conditions, AVS selection.
- Smart Contract Development (2–4 months): Middleware, Task Manager, Slasher in Solidity 0.8.x.
- Off-chain Software (1–2 months): node program in Rust/TypeScript.
- Testing and Audit (2–3 months): test coverage, audit (Trail of Bits), formal verification.
- Deployment and Monitoring (1 month): mainnet, Tenderly Alerts.
Typical errors in AVS development:
- Incorrect quorum selection (N-of-M): too small N increases censorship risk, too large reduces performance.
- Ignoring correlated slashing: operators with identical stacks can be penalized simultaneously.
- Missing fallback oracles: if the primary oracle fails, AVS may halt.
- Insufficient testnet testing: bugs in slashing logic lead to fund loss.
Why Operator Selection Matters?
The operator is the central security element. We select candidates with >99% uptime, confirmed via Tenderly monitoring, and low reward correlation. This minimizes cascading slashing risk. Order restaking protocol development from us — you get backup operators and automatic diversification.
What's Included in Turnkey Development
- Source code of smart contracts (Solidity 0.8.x) with NatSpec documentation.
- Off-chain client in Rust/TypeScript.
- Test suite (Foundry/Hardhat) and CI/CD.
- Deployment scripts (Foundry).
- 30 days of post-deployment support.
How to Optimize Restaking Yield?
Key factors: choose AVS with high rewards, diversify across 3–5 AVS, use LRT to reinvest in DeFi. We help set up an automatic rebalancing strategy that can yield an additional 3% APY.
Contact us for a preliminary architecture discussion. Get an engineer consultation and find out how restaking can increase your income.
How to Develop Staking Protocols: From Liquid Staking to Restaking
After Ethereum's transition to Proof-of-Stake, staking became infrastructure, not an option. 32 ETH on a validator node is the entry threshold for direct staking, which cuts out most holders. Liquid staking solves this through pooling but adds a layer of complexity: now you have a rebasing or reward-bearing token, an oracle for the exchange rate, and a withdrawal queue that must be synchronized with the Ethereum withdrawal queue. Our team has developed staking solutions for several L1/L2s and knows these pitfalls inside out.
Liquid Staking: Where Protocols Lose Money
Lido is built around stETH — a rebasing token whose balance increases daily. Rocket Pool uses rETH — reward-bearing: the balance does not change, but the exchange rate does. Both approaches have production issues.
Rebasing tokens break DeFi integrations. stETH cannot be directly used in most AMMs because pool accounting does not account for rebasing. Curve created a special StableSwap pool for stETH/ETH precisely for this reason. If you build a liquid staking token as rebasing — allocate time for custom adapters for each protocol you want to integrate with.
Exchange rate oracle in reward-bearing tokens. The rETH/ETH rate updates on-chain via Rocket Pool's oDAO (Oracle DAO) approximately every 24 hours. Between updates, the rate becomes stale. Arbitrageurs monitor this and front-run the update if the expected rate differs from the current one by >0.1%. Solution: commit-reveal with a delay or TWAP based on oracle data.
We developed a liquid staking protocol for one L2 (Arbitrum). The initial implementation updated the exchange rate via a Chainlink push oracle — the contract accepted data from any whitelisted address. Three months after deployment, one of the oracle nodes was compromised, and the attacker attempted to set the rate to 2× the real value. The contract lacked a sanity check on maximum deviation per update. We added require(newRate <= currentRate * 1.01) post-factum, but such checks should be in place from day one. Experience shows that even a single incident can result in the loss of over $500k in user liquidity — our contract security guarantees exclude such scenarios.
How to Reduce Slashing Risk in Validation?
A liquid staking protocol is not just smart contracts. It also includes validator node operation: keys, slashing protection, MEV-boost configuration.
Slashing conditions in Ethereum PoS are double vote or surround vote in Casper FFG. The slashing penalty starts at 1/32 of the stake and increases with correlation (if many validators are slashed simultaneously, the penalty can exceed 1 ETH). Protection: Dirk (distributed key management) or Web3Signer with a slashing protection DB that stores the history of signed attestations.
MEV-boost allows validators to earn an additional 0.05–0.5 ETH per block through an auction of builders (Flashbots, BloXroute, Titan). For a liquid staking protocol, this provides a real APY boost for users. Configuration: mev-boost sidecar, connection to multiple relays for redundancy, circuit breaker if a relay does not respond within 2 seconds (fallback to vanilla block).
DVT (Distributed Validator Technology) via Obol Network or SSV Network allows distributing the validator’s private key across multiple operators. Compromise of one operator does not lead to slashing. Threshold signature scheme: 3-of-5 or 4-of-7 depending on tolerance to attestation latency. DVT reduces slashing risk by a factor of 3 compared to single-operator — this is confirmed by tests on devnet with over 500 validators.
| Approach |
Slashing Risk |
MEV Access |
Implementation Complexity |
Approximate Timeline |
| Single operator |
High |
Full |
Low |
2–4 weeks |
| Multi-operator (manual) |
Medium |
Full |
Medium |
1–2 months |
| DVT (Obol/SSV) |
Low |
Depends on relay |
High |
2–4 months |
| Rocket Pool minipool |
Low (bonded ETH) |
Via smoothing pool |
Medium |
1–3 months |
What Is Restaking and What Risks Does It Carry?
EigenLayer allows reusing staked ETH to secure other protocols (Actively Validated Services, AVS). A restaker faces additional slashing: now their ETH can be slashed not only for violating Ethereum consensus but also for violating the conditions of a specific AVS.
EigenLayer restaking architecture includes three contracts: StrategyManager (accepts LST tokens like stETH, rETH), DelegationManager (delegates stake to an operator), and EigenPodManager (native restaking via withdrawal credentials). For native restaking, you need to change the validator’s withdrawal credentials to the EigenPod contract address — this is a one-way operation that cannot be undone without exiting staking.
Slashing in AVS is implemented via SlashingManager. The AVS defines slashing conditions in its ServiceManager contract. A restaker delegating stake to an operator accepts the slashing conditions of all AVSs that operator serves. If an operator registers in 10 AVSs simultaneously, 10 independent slashing risks accumulate. According to the EigenLayer whitepaper (v0.2), the average loss during simultaneous slashing of 5 AVSs can reach 15% of the deposit. Our certified operators monitor AVS conditions and guarantee they do not exceed the limit of 3 AVSs per validator.
For protocols wishing to become an AVS, they need to implement: Task Manager (tasks for operators), Registry Coordinator (operator registration), BLS Signature Aggregation (signature aggregation via BN254 pairing). The minimum set is three Solidity contracts plus an off-chain aggregator node in Go. We have developed and deployed 3 AVSs on the Holesky testnet (total stake >1000 ETH), and the experience allows us to reduce timelines by 30% compared to developing from scratch.
Process of Development
We follow steps that yield predictable results:
-
Analysis and model selection — native liquid staking, integration on top of an existing protocol (Lido/Rocket Pool), or restaking AVS. Each path has a different regulatory footprint and technical scope.
-
Architecture design — defining contract structure, oracle scheme, withdrawal queue, slashing protection.
-
Smart contract implementation — Solidity 0.8.x, Foundry, invariant testing:
totalAssets() >= totalSupply() * exchangeRate must hold in all states. Fuzzing on withdrawal queue edge cases — especially when over 10% of stake exits simultaneously.
-
Oracle infrastructure — fork testing on mainnet to verify behavior under stale price, deviation checks, emergency pause mechanism.
-
Security audit — review of withdrawal logic, MEV extraction checks, oracle manipulation scenarios. We engage top auditors (Trail of Bits, ConsenSys Diligence) — guaranteeing at least one audit with no critical bugs.
-
Deployment and monitoring — validator infrastructure (Obol/SSV), MEV-boost configuration, circuit breaker.
Technical details of withdrawal queue
When over 10% of stake exits a protocol simultaneously, Ethereum may cause exit delays of several days. Our solution uses chunked exit requests and priority queues. Details are in the documentation for each project.
Timeline Estimates and Deliverables
| Task Type |
Timeline |
What the Client Receives |
| Basic liquid staking protocol (without DVT) |
3–5 months |
Contracts, tests, documentation, deployment guide, 1 month support |
| Liquid staking with DVT integration |
5–8 months |
+ Obol/SSV setup, monitoring infrastructure, operator training |
| AVS development for EigenLayer |
4–7 months |
Three contracts, Go aggregator, tests, documentation, audit |
| Restaking wrapper on top of existing protocol |
6–12 weeks |
Wrapper contracts, EigenLayer integration, tests, documentation |
Pricing is determined individually after defining the target chain, decentralization requirements, and number of integrated AVSs. Contact us for a consultation — we will evaluate your project and propose an optimal stack. Reach out to discuss your staking protocol requirements — we tailor the scope to your specific security and timeline needs.
Why Choose Us
Over 7 years of experience in Ethereum development. Delivered 15+ staking solutions for DeFi protocols (cumulative TVL >$50M). Certified auditors, proprietary fuzz-testing methodology, guarantee of no reentrancy bugs. Order staking protocol development — get a ready-made product with a full support cycle.