Rebasing Mechanism
Overview
Key Features
Technical Implementation
ERC-4626 Integration
interface IERC4626 is IERC20, IERC20Metadata {
function asset() external view returns (address assetTokenAddress);
function totalAssets() external view returns (uint256 totalManagedAssets);
function convertToShares(uint256 assets) external view returns (uint256 shares);
function convertToAssets(uint256 shares) external view returns (uint256 assets);
// ... additional interface methods
}Rebasing Mechanism
Advantages Over V1
Feature
V1
V2
Security Considerations
Further Resources
Last updated