Parameter Updates
Manage and update vault parameters for mutable strategies.
Overview
Mutable strategies allow parameter updates after deployment. This provides flexibility but requires careful management.
Updatable Parameters
Interest Rate
Adjust based on market conditions:
// Update interest rate
strategy.setInterestRate(newRate);When to adjust:
Market rates change
Utilization too high/low
Competition changes
Bond Ratio
Adjust risk requirements:
// Update bond requirements
strategy.setMinBondRatio(newRatio);When to adjust:
Market volatility changes
Bad debt concerns
Risk appetite shifts
Allowed Assets
Add or remove assets:
Governance Process
Proposal
Draft parameter change proposal
Document rationale
Model expected impact
Gather community feedback
Announcement
Announce change 48+ hours in advance
Explain reasoning
Show impact analysis
Allow discussion
Execution
Execute change via timelock
Verify correct values
Monitor impact
Communicate completion
Best Practices
Gradual Changes
Transparency
Document all changes:
Safety Bounds
Set limits on parameter ranges:
Impact Analysis
Model Changes
Before updating:
Related Documentation
Last updated