Skip to main content
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
object
required

Object containing the permission to revoke.

permission_name
object

The permission object. permission_name is the name of the permission being revoked.

Returns

Null response
null

This method returns null if the permission is revoked.

Customize request
Parameter
Value
{}
object

Connect your MetaMask wallet to run requests successfully.

Request

await window.ethereum.request({
"method": "wallet_revokePermissions",
"params": [
{
eth_accounts: {}
}
],
});

Example response

null