Contract Details
Tech Stack
Solidity ^0.8.24 OpenZeppelin v5 Foundry
Chains
Ethereum Arbitrum Base Optimism
Description
Advanced ERC-4626 vault that allocates across multiple yield strategies with configurable weights and automatic rebalancing. Supports up to 10 strategies with individual performance tracking and risk limits.
Features
- ✓ Allocate across up to 10 yield strategies
- ✓ Configurable weight targets per strategy
- ✓ Automatic rebalancing with drift thresholds
- ✓ Per-strategy performance tracking
- ✓ Individual strategy deposit/withdrawal caps
- ✓ Emergency strategy removal
- ✓ Inherits all base vault security features
- ✓ Deploy script + integration examples
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /// @title Multi-Strategy Vault /// @notice Multi-strategy allocator vault with rebalancing and risk limits. contract MultiStrategyVault { 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 }