Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance transaction validation with standardized RPC errors #1690

Merged
merged 14 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/assets-controllers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"@metamask/metamask-eth-abis": "3.0.0",
"@metamask/network-controller": "^12.2.0",
"@metamask/preferences-controller": "^4.4.0",
"@metamask/rpc-errors": "^5.1.1",
"@metamask/rpc-errors": "^6.0.0",
"@metamask/utils": "^6.2.0",
"@types/uuid": "^8.3.0",
"abort-controller": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/transaction-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
"@metamask/eth-query": "^3.0.1",
"@metamask/metamask-eth-abis": "^3.0.0",
"@metamask/network-controller": "^12.2.0",
"@metamask/rpc-errors": "^6.0.0",
"@metamask/utils": "^6.2.0",
"async-mutex": "^0.2.6",
"eth-method-registry": "1.1.0",
"eth-rpc-errors": "^4.0.2",
"ethereumjs-util": "^7.0.10",
"fast-json-patch": "^3.1.1",
"lodash": "^4.17.21",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import type {
Provider,
} from '@metamask/network-controller';
import { NetworkClientType, NetworkStatus } from '@metamask/network-controller';
import { errorCodes } from 'eth-rpc-errors';
import { errorCodes } from '@metamask/rpc-errors';
import HttpProvider from 'ethjs-provider-http';
import NonceTracker from 'nonce-tracker';

Expand Down
10 changes: 5 additions & 5 deletions packages/transaction-controller/src/TransactionController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ import type {
NetworkState,
Provider,
} from '@metamask/network-controller';
import { errorCodes, rpcErrors, providerErrors } from '@metamask/rpc-errors';
import type { Hex } from '@metamask/utils';
import { Mutex } from 'async-mutex';
import MethodRegistry from 'eth-method-registry';
import { errorCodes, ethErrors } from 'eth-rpc-errors';
import { addHexPrefix, bufferToHex } from 'ethereumjs-util';
import { EventEmitter } from 'events';
import { merge, pickBy } from 'lodash';
Expand Down Expand Up @@ -1161,7 +1161,7 @@ export class TransactionController extends BaseController<
if (error.code === errorCodes.provider.userRejectedRequest) {
this.cancelTransaction(transactionId);

throw ethErrors.provider.userRejectedRequest(
throw providerErrors.userRejectedRequest(
'User rejected the transaction',
);
} else {
Expand All @@ -1176,10 +1176,10 @@ export class TransactionController extends BaseController<
switch (finalMeta?.status) {
case TransactionStatus.failed:
resultCallbacks?.error(finalMeta.error);
throw ethErrors.rpc.internal(finalMeta.error.message);
throw rpcErrors.internal(finalMeta.error.message);

case TransactionStatus.cancelled:
const cancelError = ethErrors.rpc.internal(
const cancelError = rpcErrors.internal(
'User cancelled the transaction',
);

Expand All @@ -1191,7 +1191,7 @@ export class TransactionController extends BaseController<
return finalMeta.hash as string;

default:
const internalError = ethErrors.rpc.internal(
const internalError = rpcErrors.internal(
`MetaMask Tx Signature: Unknown problem: ${JSON.stringify(
finalMeta || transactionId,
)}`,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ethErrors } from 'eth-rpc-errors';
import { rpcErrors } from '@metamask/rpc-errors';

import { validateConfirmedExternalTransaction } from './external-transactions';
import type { TransactionMeta } from './types';
Expand All @@ -17,15 +17,15 @@ describe('validateConfirmedExternalTransaction', () => {
expect(() =>
validateConfirmedExternalTransaction(undefined, [], []),
).toThrow(
ethErrors.rpc.invalidParams(
rpcErrors.invalidParams(
'"transactionMeta" or "transactionMeta.txParams" is missing',
),
);

expect(() =>
validateConfirmedExternalTransaction({} as TransactionMeta, [], []),
).toThrow(
ethErrors.rpc.invalidParams(
rpcErrors.invalidParams(
'"transactionMeta" or "transactionMeta.txParams" is missing',
),
);
Expand All @@ -37,7 +37,7 @@ describe('validateConfirmedExternalTransaction', () => {
'123',
);
expect(() => validateConfirmedExternalTransaction(transactionMeta)).toThrow(
ethErrors.rpc.invalidParams(
rpcErrors.invalidParams(
'External transaction status should be "confirmed"',
),
);
Expand All @@ -56,7 +56,7 @@ describe('validateConfirmedExternalTransaction', () => {
expect(() =>
validateConfirmedExternalTransaction(transactionMeta, [], pendingTxs),
).toThrow(
ethErrors.rpc.invalidParams(
rpcErrors.invalidParams(
'External transaction nonce should not be in pending txs',
),
);
Expand All @@ -75,7 +75,7 @@ describe('validateConfirmedExternalTransaction', () => {
expect(() =>
validateConfirmedExternalTransaction(transactionMeta, confirmedTxs, []),
).toThrow(
ethErrors.rpc.invalidParams(
rpcErrors.invalidParams(
'External transaction nonce should not be in confirmed txs',
),
);
Expand Down
10 changes: 5 additions & 5 deletions packages/transaction-controller/src/external-transactions.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// These utility functions are exclusively used by `confirmExternalTransaction` method in controller
import { ethErrors } from 'eth-rpc-errors';
import { rpcErrors } from '@metamask/rpc-errors';

import { TransactionStatus } from './types';
import type { TransactionMeta } from './types';
Expand All @@ -17,13 +17,13 @@ export function validateConfirmedExternalTransaction(
pendingTxs?: TransactionMeta[],
) {
if (!transactionMeta || !transactionMeta.txParams) {
throw ethErrors.rpc.invalidParams(
throw rpcErrors.invalidParams(
'"transactionMeta" or "transactionMeta.txParams" is missing',
);
}

if (transactionMeta.status !== TransactionStatus.confirmed) {
throw ethErrors.rpc.invalidParams(
throw rpcErrors.invalidParams(
'External transaction status should be "confirmed"',
);
}
Expand All @@ -34,7 +34,7 @@ export function validateConfirmedExternalTransaction(
(tx) => tx.txParams?.nonce === externalTxNonce,
);
if (foundPendingTxByNonce) {
throw ethErrors.rpc.invalidParams(
throw rpcErrors.invalidParams(
'External transaction nonce should not be in pending txs',
);
}
Expand All @@ -45,7 +45,7 @@ export function validateConfirmedExternalTransaction(
(tx) => tx.txParams?.nonce === externalTxNonce,
);
if (foundConfirmedTxByNonce) {
throw ethErrors.rpc.invalidParams(
throw rpcErrors.invalidParams(
'External transaction nonce should not be in confirmed txs',
);
}
Expand Down
53 changes: 43 additions & 10 deletions packages/transaction-controller/src/utils.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { rpcErrors } from '@metamask/rpc-errors';
import type { Transaction as NonceTrackerTransaction } from 'nonce-tracker/dist/NonceTracker';

import type {
Expand Down Expand Up @@ -49,19 +50,25 @@ describe('utils', () => {
describe('validateTxParams', () => {
it('should throw if no from address', () => {
expect(() => util.validateTxParams({} as any)).toThrow(
'Invalid "from" address: undefined must be a valid string.',
rpcErrors.invalidParams(
'Invalid "from" address: undefined must be a valid string.',
),
);
});

it('should throw if non-string from address', () => {
expect(() => util.validateTxParams({ from: 1337 } as any)).toThrow(
'Invalid "from" address: 1337 must be a valid string.',
rpcErrors.invalidParams(
'Invalid "from" address: 1337 must be a valid string.',
),
);
});

it('should throw if invalid from address', () => {
expect(() => util.validateTxParams({ from: '1337' } as any)).toThrow(
'Invalid "from" address: 1337 must be a valid string.',
rpcErrors.invalidParams(
'Invalid "from" address: 1337 must be a valid string.',
),
);
});

Expand All @@ -71,13 +78,21 @@ describe('utils', () => {
from: '0x3244e191f1b4903970224322180f1fbbc415696b',
to: '0x',
} as any),
).toThrow('Invalid "to" address: 0x must be a valid string.');
).toThrow(
rpcErrors.invalidParams(
'Invalid "to" address: 0x must be a valid string.',
),
);

expect(() =>
util.validateTxParams({
from: '0x3244e191f1b4903970224322180f1fbbc415696b',
} as any),
).toThrow('Invalid "to" address: undefined must be a valid string.');
).toThrow(
rpcErrors.invalidParams(
'Invalid "to" address: undefined must be a valid string.',
),
);
});

it('should delete data', () => {
Expand All @@ -96,7 +111,11 @@ describe('utils', () => {
from: '0x3244e191f1b4903970224322180f1fbbc415696b',
to: '1337',
} as any),
).toThrow('Invalid "to" address: 1337 must be a valid string.');
).toThrow(
rpcErrors.invalidParams(
'Invalid "to" address: 1337 must be a valid string.',
),
);
});

it('should throw if value is invalid', () => {
Expand All @@ -106,23 +125,35 @@ describe('utils', () => {
to: '0x3244e191f1b4903970224322180f1fbbc415696b',
value: '133-7',
} as any),
).toThrow('Invalid "value": 133-7 is not a positive number.');
).toThrow(
rpcErrors.invalidParams(
'Invalid "value": 133-7 is not a positive number.',
),
);

expect(() =>
util.validateTxParams({
from: '0x3244e191f1b4903970224322180f1fbbc415696b',
to: '0x3244e191f1b4903970224322180f1fbbc415696b',
value: '133.7',
} as any),
).toThrow('Invalid "value": 133.7 number must be denominated in wei.');
).toThrow(
rpcErrors.invalidParams(
'Invalid "value": 133.7 number must be denominated in wei.',
),
);

expect(() =>
util.validateTxParams({
from: '0x3244e191f1b4903970224322180f1fbbc415696b',
to: '0x3244e191f1b4903970224322180f1fbbc415696b',
value: 'hello',
} as any),
).toThrow('Invalid "value": hello number must be a valid number.');
).toThrow(
rpcErrors.invalidParams(
'Invalid "value": hello number must be a valid number.',
),
);

expect(() =>
util.validateTxParams({
Expand All @@ -131,7 +162,9 @@ describe('utils', () => {
value: 'one million dollar$',
} as any),
).toThrow(
'Invalid "value": one million dollar$ number must be a valid number.',
rpcErrors.invalidParams(
'Invalid "value": one million dollar$ number must be a valid number.',
),
);

expect(() =>
Expand Down
15 changes: 9 additions & 6 deletions packages/transaction-controller/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
convertHexToDecimal,
isValidHexAddress,
} from '@metamask/controller-utils';
import { rpcErrors } from '@metamask/rpc-errors';
import { addHexPrefix, isHexString } from 'ethereumjs-util';
import type { Transaction as NonceTrackerTransaction } from 'nonce-tracker/dist/NonceTracker';

Expand Down Expand Up @@ -59,7 +60,7 @@ export function validateTxParams(txParams: TransactionParams) {
typeof txParams.from !== 'string' ||
!isValidHexAddress(txParams.from)
) {
throw new Error(
throw rpcErrors.invalidParams(
`Invalid "from" address: ${txParams.from} must be a valid string.`,
);
}
Expand All @@ -68,24 +69,26 @@ export function validateTxParams(txParams: TransactionParams) {
if (txParams.data) {
delete txParams.to;
} else {
throw new Error(
throw rpcErrors.invalidParams(
`Invalid "to" address: ${txParams.to} must be a valid string.`,
);
}
} else if (txParams.to !== undefined && !isValidHexAddress(txParams.to)) {
throw new Error(
throw rpcErrors.invalidParams(
`Invalid "to" address: ${txParams.to} must be a valid string.`,
);
}

if (txParams.value !== undefined) {
const value = txParams.value.toString();
if (value.includes('-')) {
throw new Error(`Invalid "value": ${value} is not a positive number.`);
throw rpcErrors.invalidParams(
`Invalid "value": ${value} is not a positive number.`,
);
}

if (value.includes('.')) {
throw new Error(
throw rpcErrors.invalidParams(
`Invalid "value": ${value} number must be denominated in wei.`,
);
}
Expand All @@ -96,7 +99,7 @@ export function validateTxParams(txParams: TransactionParams) {
!isNaN(Number(value)) &&
Number.isSafeInteger(intValue);
if (!isValid) {
throw new Error(
throw rpcErrors.invalidParams(
`Invalid "value": ${value} number must be a valid number.`,
);
}
Expand Down
14 changes: 2 additions & 12 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1402,7 +1402,7 @@ __metadata:
"@metamask/metamask-eth-abis": 3.0.0
"@metamask/network-controller": ^12.2.0
"@metamask/preferences-controller": ^4.4.0
"@metamask/rpc-errors": ^5.1.1
"@metamask/rpc-errors": ^6.0.0
"@metamask/utils": ^6.2.0
"@types/jest": ^27.4.1
"@types/node": ^16.18.24
Expand Down Expand Up @@ -2224,16 +2224,6 @@ __metadata:
languageName: unknown
linkType: soft

"@metamask/rpc-errors@npm:^5.1.1":
version: 5.1.1
resolution: "@metamask/rpc-errors@npm:5.1.1"
dependencies:
"@metamask/utils": ^5.0.0
fast-safe-stringify: ^2.0.6
checksum: ccd1b24da66af3ae63960b79c04b86efb8b96acb89ca6f7e0bbfe636d23ba5cddeba533c0692eafb87c44ec6f840085372d0f21b39e05df9a80700ff61538a30
languageName: node
linkType: hard

"@metamask/rpc-errors@npm:^6.0.0":
version: 6.0.0
resolution: "@metamask/rpc-errors@npm:6.0.0"
Expand Down Expand Up @@ -2564,14 +2554,14 @@ __metadata:
"@metamask/eth-query": ^3.0.1
"@metamask/metamask-eth-abis": ^3.0.0
"@metamask/network-controller": ^12.2.0
"@metamask/rpc-errors": ^6.0.0
"@metamask/utils": ^6.2.0
"@types/jest": ^27.4.1
"@types/node": ^16.18.24
async-mutex: ^0.2.6
babel-runtime: ^6.26.0
deepmerge: ^4.2.2
eth-method-registry: 1.1.0
eth-rpc-errors: ^4.0.2
ethereumjs-util: ^7.0.10
ethjs-provider-http: ^0.1.6
fast-json-patch: ^3.1.1
Expand Down
Loading