Staking Kit — CryptoForge

Restaking Adapter

EigenLayer integration adapter for restaking LSTs.
Contract Details
Categorycontracts
Files13
Price$12.99
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
restaking-adapter.sol
// 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
}
$12.99
Buy Now — $12.99