Configuration Guard Rails
In conjunction with a multitude of exogenous factors, a vault’s risk profile can be determined across several parameters such as TVL caps, asset whitelists, slippage tolerance and fees.
TVL & Deposit Caps: Managers can raise or lower per-asset caps, but never above the hard ceiling stored in ConfigurationFacet. Exceeding limits reverts with
ExceededMaxTVL
.Asset Whitelist: Each deposit and swap validates the token against an in-vault array; non-listed assets revert with
UnsupportedAsset
.Global Slippage Ceiling: A basis-points constant bounds price deviation for every swap path executed by the vault.
Timelocked Fee Changes: Performance and management fees carry the same delay as code upgrades, giving users an exit window before higher fees apply.
All parameters live in MoreVaultsLib storage and are surfaced through read-only getters, keeping front-ends up to date.
Last updated