EigenLayer
1. Submit AgentConfig information to the Cap team
struct AgentConfig {
address agent; // Your agent/borrower address
address strategy; // EigenLayer strategy address (e.g., wstETH)
address restaker; // Address of the Underwriter who will delegate to you
string avsMetadata; // AVS metadata URI (can be empty string)
string operatorMetadata; // Operator metadata URI (can be empty string)
uint256 ltv; // Loan-to-Value ratio (e.g., 5e26 for 50%)
uint256 liquidationThreshold; // Liquidation threshold (e.g., 8e26 for 80%)
uint256 delegationRate; // Underwriting premium for rewards (e.g., 2e25 for 2%)
}2. Agent Registration
3. Allocation
4. Verifying Information
5. Updating Metadata
Last updated