MetaMask
Experimental
wallet_revokePermissions
Summary: Revokes the current dapp permissions.
Revokes previously granted permissions for the current dapp identified by its origin. This method accepts a single permission per call. Specified by MIP-2 and only available for the MetaMask browser extension.
Parameters
Permission
objectObject containing the permission to revoke.
Returns
Null response
nullThis method returns null
if the permission is revoked.
Customize request
Parameter
Value
Connect your MetaMask wallet to run requests successfully.
Request
await window.ethereum.request({
"method": "wallet_revokePermissions",
"params": [
{
eth_accounts: {}
}
],
});
Example response
null