For AI agents: a documentation index is available at /llms.txt. A markdown version of this page is available at the same URL with .md appended (or via Accept: text/markdown).
Skip to main content

wallet_getPermissions

Gets the user's permissions. Specified by EIP-2255.

Parameters

This method doesn't accept any parameters.

Returns

An array of the user's permissions.

Example request
await provider.request({
method: 'wallet_getPermissions',
params: [],
})
Example response
{
"id": 1,
"jsonrpc": "2.0",
"result": {
"eth_accounts": {}
}
}