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

  1. Draft parameter change proposal

  2. Document rationale

  3. Model expected impact

  4. Gather community feedback

Announcement

  1. Announce change 48+ hours in advance

  2. Explain reasoning

  3. Show impact analysis

  4. Allow discussion

Execution

  1. Execute change via timelock

  2. Verify correct values

  3. Monitor impact

  4. Communicate completion


Best Practices

Gradual Changes

Transparency

Document all changes:

Safety Bounds

Set limits on parameter ranges:


Impact Analysis

Model Changes

Before updating:

Last updated