Contract Details
Tech Stack
Solidity ^0.8.24 OpenZeppelin v5 Foundry
Chains
Ethereum
Description
EigenLayer integration adapter for restaking liquid staking tokens. Handles LST deposit/withdrawal into EigenLayer strategies, operator delegation, and reward accounting for restaked positions.
Features
- ✓ EigenLayer StrategyManager integration
- ✓ LST deposit into restaking strategies
- ✓ Operator delegation management
- ✓ Reward accounting for restaked positions
- ✓ Withdrawal flow with unbonding period
- ✓ Multi-LST support (stETH, rETH, cbETH)
- ✓ Ownable2Step governance
- ✓ Full Foundry test suite
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /// @title Restaking Adapter /// @notice EigenLayer integration adapter for restaking LSTs. contract RestakingAdapter { address public immutable owner; uint256 public constant VERSION = 1; event Initialized(address indexed deployer); constructor() { owner = msg.sender; emit Initialized(msg.sender); } // ... full implementation in purchased package }