Skip to main content
Once a wallet has signers, they may also revoke consent to prevent your app from taking any further wallet actions on their behalf.
To remove all the signers on the wallet, use the removeSigners method from the useSigners hook:

Usage

When invoked, the removeSigners method will remove all the signers, so only the user can transact on the wallet.
After this action, your app will no longer be able to take actions on behalf of the user with their wallet unless the user adds more session signers.
Check out the starter repo for an end to end example of how to use signers.

Parameters

The removeSigners method accepts a params object with the following fields:
address
string
required
Address of the embedded wallet to delegate.
As an example, you might have a button within your app to allow users to remove all signers like so:
Example remove signers button