Risk and Security Model
The safety mechanisms built into Upshift Solana vaults, from AUM change limits to pause controls and admin transfer safety.
AUM Change Limits
The vault enforces asymmetric increase and decrease limits on deployed_aum updates. These are set by the admin in basis points via set_aum_limits(increase_limit, decrease_limit).
- Increase limit — caps how much
deployed_aumcan grow in a singleoperator_update_aumcall - Decrease limit — caps how much
deployed_aumcan fall in a single update (typically set tighter than the increase limit)
This prevents sudden, large NAV swings, whether from operator error or attempted manipulation. The IDL enforces a maximum value via the AumLimitTooHigh error.
Pause Mechanism
The admin can instantly pause all vault operations via pause(). When paused:
depositandredeemcalls revert withVaultPaused- Operator functions continue to work (the curator can still manage deployed capital)
- The admin can unpause at any time via
unpause()
This provides a circuit breaker in case of an exploit, market event, or strategy issue.
Admin Transfer Safety
Admin role transfers use a two-step nomination process:
- Current admin calls
nominate_admin(new_admin). This creates aNominatedAdminPDA with the nominee and an expiry timestamp - Nominated admin calls
accept_admin_nomination(). Must be called before expiry
This prevents accidental or malicious ownership changes. If the nomination expires, it must be re-issued. The NominatedAdmin PDA is closed upon acceptance.
Audit History
Built on the same architecture as Upshift's EVM vaults that secure $400M+ in TVL. Audited 3x in the past 12 months. A separate audit has been conducted for the Solana contracts and can be found here.