mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
20 lines
476 B
JavaScript
20 lines
476 B
JavaScript
export default function getRestrictedMethods (permissionsController) {
|
|
return {
|
|
|
|
'eth_accounts': {
|
|
description: 'View the address of the selected account',
|
|
method: (_, res, __, end) => {
|
|
permissionsController.keyringController.getAccounts()
|
|
.then((accounts) => {
|
|
res.result = accounts
|
|
end()
|
|
})
|
|
.catch((err) => {
|
|
res.error = err
|
|
end(err)
|
|
})
|
|
},
|
|
},
|
|
}
|
|
}
|