Vault Ownership Changes
How to safely transfer or rotate the Owner and other administrative roles on a live vault.
Transfer via Fusion Web App
Grant the Owner role to another address.
Test with the new address whether the action was successful.
If so, renounce your own role.

Transfer via Smart Contract
For the core PlasmaVault, control is managed through role-based access control via IporFusionAccessManager rather than traditional ownership. You can transfer control by:
Granting roles: Use
grantRole()to assign roles likeOWNER_ROLE,ADMIN_ROLE, orATOMIST_ROLEto new addressesRevoking old roles: Remove roles from previous controllers using the access manager
The role hierarchy must be respected (e.g., ADMIN_ROLE can grant OWNER_ROLE)
Last updated
Was this helpful?