From 3d716b31cef614eaae0d745c66cd359948694719 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Wed, 26 Feb 2025 15:46:59 +0100 Subject: [PATCH 1/6] Update migrate-tags.sh --- scripts/migrate-tags.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/migrate-tags.sh b/scripts/migrate-tags.sh index 772aeb74110..b5b8a557f63 100755 --- a/scripts/migrate-tags.sh +++ b/scripts/migrate-tags.sh @@ -36,7 +36,7 @@ OPTIONS: -p SED_PATTERN --sed-pattern SED_PATTERN - sed pattern for extracting verson numbers from the original repo's tag names. Adjust if the original tag names follow a different naming scheme than 'v0.0.0'. + sed pattern for extracting version numbers from the original repo's tag names. Adjust if the original tag names follow a different naming scheme than 'v0.0.0'. --no-dry-run If specified, the tags will be created and pushed to the remote repo. Otherwise, the tags and associated release commit hashes will only be printed to stdout. From a5d3f816a2aaef90937a437ecff7e4f715c72169 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Wed, 26 Feb 2025 15:47:29 +0100 Subject: [PATCH 2/6] Update NameController.test.ts --- packages/name-controller/src/NameController.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/name-controller/src/NameController.test.ts b/packages/name-controller/src/NameController.test.ts index 551d7eb2ff9..43b7761a3b6 100644 --- a/packages/name-controller/src/NameController.test.ts +++ b/packages/name-controller/src/NameController.test.ts @@ -1670,7 +1670,7 @@ describe('NameController', () => { }); }); - it('stores emtpy array if result error while getting proposed name using provider', async () => { + it('stores empty array if result error while getting proposed name using provider', async () => { const provider1 = createMockProvider(1); const provider2 = createMockProvider(2); const error = new Error('TestError'); From 9d557db16921aa2bb628118d881c6a8311e04b61 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Wed, 26 Feb 2025 15:59:08 +0100 Subject: [PATCH 3/6] Update block-param.ts --- .../network-controller/tests/provider-api-tests/block-param.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/network-controller/tests/provider-api-tests/block-param.ts b/packages/network-controller/tests/provider-api-tests/block-param.ts index 975f0638912..0cdc8bd29bf 100644 --- a/packages/network-controller/tests/provider-api-tests/block-param.ts +++ b/packages/network-controller/tests/provider-api-tests/block-param.ts @@ -1540,7 +1540,7 @@ export function testsForRpcMethodSupportingBlockParam( for (const [nestedDesc, currentBlockNumber] of [ ['less than the current block number', '0x200'], - ['equal to the curent block number', '0x100'], + ['equal to the current block number', '0x100'], ]) { describe(`${nestedDesc}`, () => { it('makes an additional request to the RPC endpoint', async () => { From a88ca84ec34139c09432066328115f513a01dbaf Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Wed, 26 Feb 2025 16:00:03 +0100 Subject: [PATCH 4/6] Update MultichainBalancesController.ts --- .../MultichainBalancesController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/assets-controllers/src/MultichainBalancesController/MultichainBalancesController.ts b/packages/assets-controllers/src/MultichainBalancesController/MultichainBalancesController.ts index 97b45e4fe9b..53960d3d415 100644 --- a/packages/assets-controllers/src/MultichainBalancesController/MultichainBalancesController.ts +++ b/packages/assets-controllers/src/MultichainBalancesController/MultichainBalancesController.ts @@ -193,7 +193,7 @@ export class MultichainBalancesController extends BaseController< * anything, but it updates the state of the controller. * * @param accountId - The account ID. - * @param assets - The list of asset types for this account to upadte. + * @param assets - The list of asset types for this account to update. */ async #updateBalance( accountId: string, From 3dcc29ef7bec46c63c966f9a58b314c8ce5b7118 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Wed, 26 Feb 2025 16:00:49 +0100 Subject: [PATCH 5/6] Update TokenRatesController.test.ts --- packages/assets-controllers/src/TokenRatesController.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/assets-controllers/src/TokenRatesController.test.ts b/packages/assets-controllers/src/TokenRatesController.test.ts index aa47bfa9784..804a7387b0c 100644 --- a/packages/assets-controllers/src/TokenRatesController.test.ts +++ b/packages/assets-controllers/src/TokenRatesController.test.ts @@ -2345,7 +2345,7 @@ describe('TokenRatesController', () => { ); }); - it('correctly calls the Price API with unqiue native token addresses (e.g. MATIC)', async () => { + it('correctly calls the Price API with unique native token addresses (e.g. MATIC)', async () => { const tokenPricesService = buildMockTokenPricesService({ fetchTokenPrices: jest.fn().mockResolvedValue({ '0x0000000000000000000000000000000000001010': { From 1735c0e87887aa3aa6046ce7e1a972d56f20ec09 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Wed, 26 Feb 2025 16:01:25 +0100 Subject: [PATCH 6/6] Update KeyringController.test.ts --- packages/keyring-controller/src/KeyringController.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/keyring-controller/src/KeyringController.test.ts b/packages/keyring-controller/src/KeyringController.test.ts index f1eac625338..c14f2e89ad9 100644 --- a/packages/keyring-controller/src/KeyringController.test.ts +++ b/packages/keyring-controller/src/KeyringController.test.ts @@ -546,7 +546,7 @@ describe('KeyringController', () => { '', ), ).rejects.toThrow( - 'Eth-Hd-Keyring: Deserialize method cannot be called with an opts value for numberOfAccounts and no menmonic', + 'Eth-Hd-Keyring: Deserialize method cannot be called with an opts value for numberOfAccounts and no mnemonic', ); }, );