mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-03 06:34:27 +01:00
72 lines
2.1 KiB
JavaScript
72 lines
2.1 KiB
JavaScript
|
import { ethErrors } from 'eth-rpc-errors';
|
||
|
import { RPC_ALLOWED_ORIGINS } from '@metamask-institutional/rpc-allowlist';
|
||
|
import { MESSAGE_TYPE } from '../../../../../../shared/constants/app';
|
||
|
|
||
|
const mmiSetAccountAndNetwork = {
|
||
|
methodNames: [MESSAGE_TYPE.MMI_SET_ACCOUNT_AND_NETWORK],
|
||
|
implementation: mmiSetAccountAndNetworkHandler,
|
||
|
hookNames: {
|
||
|
handleMmiSetAccountAndNetwork: true,
|
||
|
},
|
||
|
};
|
||
|
export default mmiSetAccountAndNetwork;
|
||
|
|
||
|
/**
|
||
|
* @typedef {object} MmiSetAccountAndNetworkOptions
|
||
|
* @property {Function} handleMmiSetAccountAndNetwork - The metmaskinsititutional_set_account_and_network method implementation.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @typedef {object} MmiSetAccountAndNetworkParam
|
||
|
* @property {string} account - Account address
|
||
|
* @property {number} network - Chain Id
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @param {import('json-rpc-engine').JsonRpcRequest<MmiSetAccountAndNetworkParam>} req - The JSON-RPC request object.
|
||
|
* @param {import('json-rpc-engine').JsonRpcResponse<true>} res - The JSON-RPC response object.
|
||
|
* @param {Function} _next - The json-rpc-engine 'next' callback.
|
||
|
* @param {Function} end - The json-rpc-engine 'end' callback.
|
||
|
* @param {WatchAssetOptions} options
|
||
|
*/
|
||
|
async function mmiSetAccountAndNetworkHandler(
|
||
|
req,
|
||
|
res,
|
||
|
_next,
|
||
|
end,
|
||
|
{ handleMmiSetAccountAndNetwork },
|
||
|
) {
|
||
|
try {
|
||
|
let validUrl = false;
|
||
|
RPC_ALLOWED_ORIGINS[MESSAGE_TYPE.MMI_PORTFOLIO].forEach((regexp) => {
|
||
|
// eslint-disable-next-line require-unicode-regexp
|
||
|
if (regexp.test(req.origin)) {
|
||
|
validUrl = true;
|
||
|
}
|
||
|
});
|
||
|
// eslint-disable-next-line no-negated-condition
|
||
|
if (!validUrl) {
|
||
|
throw new Error('Unauthorized');
|
||
|
}
|
||
|
|
||
|
if (!req.params?.[0] || typeof req.params[0] !== 'object') {
|
||
|
return end(
|
||
|
ethErrors.rpc.invalidParams({
|
||
|
message: `Expected single, object parameter. Received:\n${JSON.stringify(
|
||
|
req.params,
|
||
|
)}`,
|
||
|
}),
|
||
|
);
|
||
|
}
|
||
|
const { address, network } = req.params[0];
|
||
|
res.result = await handleMmiSetAccountAndNetwork(
|
||
|
req.origin,
|
||
|
address,
|
||
|
network,
|
||
|
);
|
||
|
return end();
|
||
|
} catch (error) {
|
||
|
return end(error);
|
||
|
}
|
||
|
}
|