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

fix(deps): ethereumjs-util@6.1.0->^7.1.5 #11932

Draft
wants to merge 5 commits into
base: ellul/resolve-secp256k1
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all 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 app/components/Nav/Main/RootRPCMethodsUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {
getIsSwapApproveOrSwapTransaction,
isApprovalTransaction,
} from '../../../util/transactions';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import Logger from '../../../util/Logger';
import TransactionTypes from '../../../core/TransactionTypes';
import { swapsUtils } from '@metamask/swaps-controller';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import useBalance from '../Ramp/hooks/useBalance';
import { toTokenMinimalUnit } from '../../../util/number';
import { fireEvent } from '@testing-library/react-native';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { RootState } from '../../../reducers';
import { mockNetworkState } from '../../../util/test/network';
import { CHAIN_IDS } from '@metamask/transaction-controller';
Expand Down Expand Up @@ -48,7 +48,7 @@

const mockUseBalanceInitialValue: Partial<ReturnType<typeof useBalance>> = {
balanceFiat: '$27.02',
balanceBN: toTokenMinimalUnit('5.36385', 18) as BN,

Check failure on line 51 in app/components/UI/ConfirmAddAsset/ConfirmAddAsset.test.tsx

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

'BN' refers to a value, but is being used as a type here. Did you mean 'typeof BN'?
};

const mockUseBalanceValues: Partial<ReturnType<typeof useBalance>> = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { Limits, Payment } from '@consensys/on-ramp-sdk';
import { act, fireEvent, screen } from '@testing-library/react-native';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { renderScreen } from '../../../../../util/test/renderWithProvider';
import BuildQuote from './BuildQuote';
import useRegions from '../../hooks/useRegions';
Expand Down Expand Up @@ -191,7 +191,7 @@

const mockUseBalanceInitialValue: Partial<ReturnType<typeof useBalance>> = {
balanceFiat: '$27.02',
balanceBN: toTokenMinimalUnit('5.36385', 18) as BN,

Check failure on line 194 in app/components/UI/Ramp/Views/BuildQuote/BuildQuote.test.tsx

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

'BN' refers to a value, but is being used as a type here. Did you mean 'typeof BN'?
};

let mockUseBalanceValues: Partial<ReturnType<typeof useBalance>> = {
Expand Down Expand Up @@ -242,7 +242,7 @@
estimatedGasFee: toTokenMinimalUnit(
'0.01',
mockUseRampSDKInitialValues.selectedAsset?.decimals || 18,
) as BN,

Check failure on line 245 in app/components/UI/Ramp/Views/BuildQuote/BuildQuote.test.tsx

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

'BN' refers to a value, but is being used as a type here. Did you mean 'typeof BN'?
};

let mockUseGasPriceEstimationValue: ReturnType<typeof useGasPriceEstimation> =
Expand Down Expand Up @@ -669,7 +669,7 @@
mockUseBalanceValues.balanceBN = toTokenMinimalUnit(
'5',
mockUseRampSDKValues.selectedAsset?.decimals || 18,
) as BN;

Check failure on line 672 in app/components/UI/Ramp/Views/BuildQuote/BuildQuote.test.tsx

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

'BN' refers to a value, but is being used as a type here. Did you mean 'typeof BN'?
render(BuildQuote);
const initialAmount = '0';
const overBalanceAmout = '6';
Expand All @@ -688,7 +688,7 @@
mockUseBalanceValues.balanceBN = toTokenMinimalUnit(
'1',
mockUseRampSDKValues.selectedAsset?.decimals || 18,
) as BN;

Check failure on line 691 in app/components/UI/Ramp/Views/BuildQuote/BuildQuote.test.tsx

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

'BN' refers to a value, but is being used as a type here. Did you mean 'typeof BN'?
const symbol = mockUseRampSDKValues.selectedAsset?.symbol;
fireEvent.press(getByRoleButton(`${initialAmount} ${symbol}`));
fireEvent.press(getByRoleButton('25%'));
Expand Down Expand Up @@ -719,13 +719,13 @@
balanceBN: toTokenMinimalUnit(
'1',
mockUseRampSDKValues.selectedAsset?.decimals || 18,
) as BN,

Check failure on line 722 in app/components/UI/Ramp/Views/BuildQuote/BuildQuote.test.tsx

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

'BN' refers to a value, but is being used as a type here. Did you mean 'typeof BN'?
};
mockUseGasPriceEstimationValue = {
estimatedGasFee: toTokenMinimalUnit(
'0.27',
mockUseRampSDKValues.selectedAsset?.decimals || 18,
) as BN,

Check failure on line 728 in app/components/UI/Ramp/Views/BuildQuote/BuildQuote.test.tsx

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

'BN' refers to a value, but is being used as a type here. Did you mean 'typeof BN'?
};
const symbol = mockUseRampSDKValues.selectedAsset?.symbol;
fireEvent.press(getByRoleButton(`${initialAmount} ${symbol}`));
Expand All @@ -752,13 +752,13 @@
balanceBN: toTokenMinimalUnit(
'1',
mockUseRampSDKValues.selectedAsset?.decimals || 18,
) as BN,

Check failure on line 755 in app/components/UI/Ramp/Views/BuildQuote/BuildQuote.test.tsx

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

'BN' refers to a value, but is being used as a type here. Did you mean 'typeof BN'?
};
mockUseGasPriceEstimationValue = {
estimatedGasFee: toTokenMinimalUnit(
'0.27',
mockUseRampSDKValues.selectedAsset?.decimals || 18,
) as BN,

Check failure on line 761 in app/components/UI/Ramp/Views/BuildQuote/BuildQuote.test.tsx

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

'BN' refers to a value, but is being used as a type here. Did you mean 'typeof BN'?
};
const symbol = mockUseRampSDKValues.selectedAsset?.symbol;
fireEvent.press(getByRoleButton(`${initialAmount} ${symbol}`));
Expand Down
2 changes: 1 addition & 1 deletion app/components/UI/Ramp/Views/BuildQuote/BuildQuote.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Animated, {
withTiming,
} from 'react-native-reanimated';
import { useNavigation } from '@react-navigation/native';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';

import { useRampSDK } from '../../sdk';
import usePaymentMethods from '../../hooks/usePaymentMethods';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useCallback, useEffect, useMemo, useState } from 'react';
import { ImageSourcePropType, View } from 'react-native';
import { useDispatch, useSelector } from 'react-redux';
import { useNavigation } from '@react-navigation/native';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { SellOrder } from '@consensys/on-ramp-sdk/dist/API';
import {
TransactionParams,
Expand Down
2 changes: 1 addition & 1 deletion app/components/UI/Ramp/hooks/useGasPriceEstimation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
type GasFeeController as GasFeeControllerType,
} from '@metamask/gas-fee-controller';

import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import Engine from '../../../../core/Engine';
import { decGWEIToHexWEI } from '../../../../util/conversions';
import { selectGasFeeControllerState } from '../../../../selectors/gasFeeController';
Expand Down
2 changes: 1 addition & 1 deletion app/components/UI/Ramp/hooks/useIntentAmount.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useEffect } from 'react';
import { type BN } from 'ethereumjs-util';
import { type BN } from 'bn.js';
import { useRampSDK } from '../sdk';
import parseAmount from '../utils/parseAmount';
import { toTokenMinimalUnit } from '../../../../util/number';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import StakeInputView from './StakeInputView';
import { renderScreen } from '../../../../../util/test/renderWithProvider';
import Routes from '../../../../../constants/navigation/Routes';
import { backgroundState } from '../../../../../util/test/initial-root-state';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { Stake } from '../../sdk/stakeSdkProvider';

function render(Component: React.ComponentType) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useNavigation } from '@react-navigation/native';
import React, { useCallback, useEffect } from 'react';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import UnstakeInputViewBanner from './UnstakeBanner';
import { strings } from '../../../../../../locales/i18n';
import Button, {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { strings } from '../../../../../../locales/i18n';
import { renderFromWei } from '../../../../../util/number';
import { getTimeDifferenceFromNow } from '../../../../../util/date';
import { filterExitRequests } from './utils';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import bn from 'bignumber.js';
import {
CommonPercentageInputUnits,
Expand Down
2 changes: 1 addition & 1 deletion app/components/UI/Stake/hooks/useStakingInput.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { useState, useMemo, useCallback } from 'react';
import { useSelector } from 'react-redux';
import {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { fireEvent } from '@testing-library/react-native';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import renderWithProvider from '../../../../../util/test/renderWithProvider';
import { backgroundState } from '../../../../../util/test/initial-root-state';
import AppConstants from '../../../../../../app/core/AppConstants';
Expand Down
2 changes: 1 addition & 1 deletion app/components/UI/Tokens/index.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
// eslint-disable-next-line @typescript-eslint/no-shadow
import { fireEvent, waitFor } from '@testing-library/react-native';
import Tokens from './';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import renderWithProvider from '../../../util/test/renderWithProvider';
import { createStackNavigator } from '@react-navigation/stack';
import { getAssetTestId } from '../../../../wdio/screen-objects/testIDs/Screens/WalletView.testIds';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ import { StyleSheet, View } from 'react-native';
import PropTypes from 'prop-types';
import AnimatedTransactionModal from '../../../../../UI/AnimatedTransactionModal';
import TransactionReview from '../../../components/TransactionReview';
import { BN } from 'bn.js';
import {
hexToBN,
fromWei,
renderFromWei,
toHexadecimal,
} from '../../../../../../util/number';
import { isValidAddress, BN, addHexPrefix } from 'ethereumjs-util';
import { strings } from '../../../../../../../locales/i18n';
import { isValidAddress, addHexPrefix } from 'ethereumjs-util';
import { connect } from 'react-redux';
import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view';
import {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ import CollectibleMedia from '../../../../UI/CollectibleMedia';
import collectiblesTransferInformation from '../../../../../util/collectibles-transfer';
import { strings } from '../../../../../../locales/i18n';
import Device from '../../../../../util/device';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { MetaMetricsEvents } from '../../../../../core/Analytics';
import dismissKeyboard from 'react-native/Libraries/Utilities/dismissKeyboard';
import NetworkMainAssetLogo from '../../../../UI/NetworkMainAssetLogo';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { validateSufficientBalance, validateSufficientTokenBalance } from './validation';
import { renderFromWei, hexToBN } from '../../../../../util/number';
import {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
decodeTransferData,
} from '../../../../../util/transactions';
import { strings } from '../../../../../../locales/i18n';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';

interface SelectedAsset {
address: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Asset } from './useAddressBalance.types';
import useAddressBalance from './useAddressBalance';
import backgroundState from '../../../util/test/initial-root-state';
import { createMockAccountsControllerState } from '../../../util/test/accountsControllerTestUtils';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
const MOCK_ADDRESS_1 = '0x0';
const MOCK_ADDRESS_2 = '0x1';

Expand Down
2 changes: 1 addition & 1 deletion app/components/hooks/useTokenBalance.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useState, useEffect, Dispatch, SetStateAction } from 'react';
import Engine from '../../core/Engine';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';

/**
* Hook to handle the balance of ERC20 tokens
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Provider } from 'react-redux';
import { createStore, Store } from 'redux';
import { act, render, waitFor } from '@testing-library/react-native';
import useTokenBalancesController from './useTokenBalancesController';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { cloneDeep } from 'lodash';
import { backgroundState } from '../../../util/test/initial-root-state';

Expand Down
2 changes: 1 addition & 1 deletion app/constants/transaction.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';

// Transaction Status
export const TX_UNAPPROVED = 'unapproved';
Expand Down
3 changes: 1 addition & 2 deletions app/store/migrations/029.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { toHex } from '@metamask/controller-utils';
import { Hex, hasProperty, isObject } from '@metamask/utils';
import { regex } from '../../../app/util/regex';

//@ts-expect-error - This error is expected, but ethereumjs-util exports this function
import { isHexString } from 'ethereumjs-util';
import { TransactionParams } from '@metamask/transaction-controller';
import { captureException } from '@sentry/react-native';
Expand Down Expand Up @@ -466,7 +465,7 @@ export default async function migrate(stateAsync: unknown) {
if (Array.isArray(transactionControllerState.transactions)) {
transactionControllerState.transactions.forEach(
(transaction: TransactionParams, index: number) => {
if (transaction && !isHexString(transaction.chainId)) {
if (transaction && (!transaction.chainId || (transaction.chainId && !isHexString(transaction.chainId)))) {
if (
Array.isArray(transactionControllerState.transactions) &&
isObject(transactionControllerState.transactions[index])
Expand Down
1 change: 0 additions & 1 deletion app/store/migrations/031.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import {
TokensControllerState,
} from '@metamask/assets-controllers';
import { toHex } from '@metamask/controller-utils';
//@ts-expect-error - This error is expected, but ethereumjs-util exports this function
import { isHexString } from 'ethereumjs-util';

/**
Expand Down
1 change: 0 additions & 1 deletion app/util/address/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {
isValidAddress,
addHexPrefix,
isValidChecksumAddress,
//@ts-expect-error - This error is expected, but ethereumjs-util exports this function
isHexPrefixed,
} from 'ethereumjs-util';
import punycode from 'punycode/punycode';
Expand Down
2 changes: 1 addition & 1 deletion app/util/confirmation/transactions.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { buildTransactionParams } from './transactions';
import { GAS_ESTIMATE_TYPES } from '@metamask/gas-fee-controller';
import { TransactionEnvelopeType } from '@metamask/transaction-controller';
Expand Down
3 changes: 2 additions & 1 deletion app/util/conversion/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@

import BigNumber from 'bignumber.js';

import { stripHexPrefix, BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { stripHexPrefix } from 'etehreumjs-util';

// Big Number Constants
const BIG_NUMBER_WEI_MULTIPLIER = new BigNumber('1000000000000000000');
Expand Down
2 changes: 1 addition & 1 deletion app/util/custom-gas/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { renderFromWei, weiToFiat, toWei, conversionUtil } from '../number';
import { strings } from '../../../locales/i18n';
import TransactionTypes from '../../core/TransactionTypes';
Expand Down
2 changes: 1 addition & 1 deletion app/util/dappTransactions/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';

import { strings } from '../../../locales/i18n';
import Engine from '../../core/Engine';
Expand Down
2 changes: 1 addition & 1 deletion app/util/dappTransactions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Engine from '../../core/Engine';
import TransactionTypes from '../../core/TransactionTypes';
import { toLowerCaseEquals } from '../general';
import { strings } from '../../../locales/i18n';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { lt } from '../lodash';
import { estimateGas as controllerEstimateGas } from '../transaction-controller';

Expand Down
5 changes: 3 additions & 2 deletions app/util/number/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/**
* Collection of utility functions for consistent formatting and conversion
*/
import { BN, stripHexPrefix } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { stripHexPrefix } from 'ethereumjs-util';
import { utils as ethersUtils } from 'ethers';
import convert from 'ethjs-unit';
import {
Expand Down Expand Up @@ -367,7 +368,7 @@ export function isDecimal(value) {
* @returns {Object} - BN instance
*/
export function toBN(value) {
return new BN(value);
return new BN(value || 0);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion app/util/number/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';

import {
addCurrencySymbol,
Expand Down
2 changes: 1 addition & 1 deletion app/util/transaction-reducer-helpers.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { SecurityAlertResponse } from '@metamask/transaction-controller';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';

interface TxMeta {
data?: string;
Expand Down
3 changes: 2 additions & 1 deletion app/util/transactions/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { addHexPrefix, toChecksumAddress, BN } from 'ethereumjs-util';
import { BN } from 'bn.js';
import { rawEncode, rawDecode } from 'ethereumjs-abi';
import { addHexPrefix, toChecksumAddress } from 'ethereumjs-util';
import BigNumber from 'bignumber.js';
import humanizeDuration from 'humanize-duration';
import {
Expand Down
2 changes: 1 addition & 1 deletion app/util/transactions/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { swapsUtils } from '@metamask/swaps-controller';
import { BN } from 'ethereumjs-util';
import { BN } from 'bn.js';

/* eslint-disable-next-line import/no-namespace */
import * as controllerUtilsModule from '@metamask/controller-utils';
Expand Down
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
"@metamask/accounts-controller": "^18.1.0",
"@metamask/contract-metadata": "^2.1.0",
"@metamask/react-native-payments/validator": "^13.7.0",
"**/ethereumjs-abi": "npm:ethereumjs-abi@0.6.8",
"**/minimist": "1.2.6",
"d3-color": "3.1.0",
"tough-cookie": "4.1.3",
Expand All @@ -130,7 +131,6 @@
"socket.io-client/engine.io-client/ws": "^8.17.1",
"micromatch": "4.0.8",
"send": "0.19.0",
"ethereumjs-util/**/secp256k1": "3.8.1",
"**/secp256k1": "4.0.4"
},
"dependencies": {
Expand Down Expand Up @@ -225,6 +225,7 @@
"axios": "^1.6.8",
"base-64": "1.0.0",
"bignumber.js": "^9.0.1",
"bn.js": "5.2.1",
"buffer": "6.0.3",
"cockatiel": "^3.1.2",
"compare-versions": "^3.6.0",
Expand All @@ -239,8 +240,8 @@
"eth-json-rpc-filters": "4.2.2",
"eth-json-rpc-middleware": "4.3.0",
"eth-url-parser": "1.0.4",
"ethereumjs-abi": "0.6.6",
"ethereumjs-util": "6.1.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.0.14",
"ethjs-contract": "0.2.3",
"ethjs-ens": "2.0.1",
Expand Down Expand Up @@ -536,7 +537,7 @@
},
"lavamoat": {
"allowScripts": {
"ethereumjs-abi>ethereumjs-util>ethereum-cryptography>keccak": true,
"ethereumjs-util>ethereum-cryptography>keccak": true,
"@sentry/react-native>@sentry/cli": true,
"@storybook/manager-webpack5>@storybook/core-common>webpack>watchpack>watchpack-chokidar2>chokidar>fsevents": false,
"@storybook/addon-controls>@storybook/core-common>esbuild": false,
Expand All @@ -555,8 +556,6 @@
"detox": true,
"detox>bunyan>dtrace-provider": false,
"eciesjs>secp256k1": true,
"ethereumjs-util>keccak": true,
"ethereumjs-util>secp256k1": true,
"ethjs-query>babel-runtime>core-js": false,
"ganache>@trufflesuite/bigint-buffer": false,
"ganache>bufferutil": false,
Expand Down
Loading
Loading