Handle owners
You can easily add, remove or get all your wallet owners.
You can easily get/add/remove all the owners of your smart wallet.
Add owners
const txHash = await smartAccountClient.addOwner({ownerToAdd: ADDRESS_TO_ADD});
Remove owners
const txHash = await smartAccountClient.removeOwner({ownerToRemove: ADDRESS_TO_REMOVE});
Get owners
const owners = smartAccountClient.getOwners()
Last updated