@metamask/accounts-controller 33.1.1 → 34.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -1
- package/dist/AccountsController.cjs +38 -28
- package/dist/AccountsController.cjs.map +1 -1
- package/dist/AccountsController.d.cts +15 -3
- package/dist/AccountsController.d.cts.map +1 -1
- package/dist/AccountsController.d.mts +15 -3
- package/dist/AccountsController.d.mts.map +1 -1
- package/dist/AccountsController.mjs +38 -28
- package/dist/AccountsController.mjs.map +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -7,12 +7,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [34.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Use new `Messenger` from `@metamask/messenger` ([#6426](https://github.com/MetaMask/core/pull/6426))
|
|
15
|
+
- Previously, `AccountsController` accepted a `RestrictedMessenger` instance from `@metamask/base-controller`.
|
|
16
|
+
- **BREAKING:** Bump `@metamask/keyring-controller` from `^23.0.0` to `^24.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
|
|
17
|
+
- **BREAKING:** Bump `@metamask/network-controller` from `^24.0.0` to `^25.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
|
|
18
|
+
- Bump `@metamask/eth-snap-keyring` from `^17.0.0` to `^18.0.0` ([#6951](https://github.com/MetaMask/core/pull/6951))
|
|
19
|
+
- Bump `@metamask/base-controller` from `^8.4.2` to `^9.0.0` ([#6962](https://github.com/MetaMask/core/pull/6962))
|
|
20
|
+
|
|
21
|
+
## [33.2.0]
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
|
|
25
|
+
- Add a `getAccounts` method (and its associated action) that is the plural version of `getAccount` ([#6927](https://github.com/MetaMask/core/pull/6927))
|
|
26
|
+
- This method is added to primarily be consumed in the `MultichainAccountService`.
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
- Bump `@metamask/base-controller` from `^8.4.1` to `^8.4.2` ([#6917](https://github.com/MetaMask/core/pull/6917))
|
|
31
|
+
|
|
10
32
|
## [33.1.1]
|
|
11
33
|
|
|
12
34
|
### Changed
|
|
13
35
|
|
|
14
36
|
- Bump `@metamask/utils` from `^11.4.2` to `^11.8.1` ([#6588](https://github.com/MetaMask/core/pull/6588), [#6708](https://github.com/MetaMask/core/pull/6708))
|
|
15
37
|
- Bump `@metamask/base-controller` from `^8.3.0` to `^8.4.1` ([#6632](https://github.com/MetaMask/core/pull/6632), [#6807](https://github.com/MetaMask/core/pull/6807))
|
|
38
|
+
- Bump `@metamask/network-controller` from `^24.2.2` to `^24.3.0` ([#6883](https://github.com/MetaMask/core/pull/6883))
|
|
16
39
|
|
|
17
40
|
## [33.1.0]
|
|
18
41
|
|
|
@@ -626,7 +649,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
626
649
|
|
|
627
650
|
- Initial release ([#1637](https://github.com/MetaMask/core/pull/1637))
|
|
628
651
|
|
|
629
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@
|
|
652
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@34.0.0...HEAD
|
|
653
|
+
[34.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@33.2.0...@metamask/accounts-controller@34.0.0
|
|
654
|
+
[33.2.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@33.1.1...@metamask/accounts-controller@33.2.0
|
|
630
655
|
[33.1.1]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@33.1.0...@metamask/accounts-controller@33.1.1
|
|
631
656
|
[33.1.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@33.0.0...@metamask/accounts-controller@33.1.0
|
|
632
657
|
[33.0.0]: https://github.com/MetaMask/core/compare/@metamask/accounts-controller@32.0.2...@metamask/accounts-controller@33.0.0
|
|
@@ -20,7 +20,7 @@ const accountsControllerMetadata = {
|
|
|
20
20
|
internalAccounts: {
|
|
21
21
|
includeInStateLogs: true,
|
|
22
22
|
persist: true,
|
|
23
|
-
|
|
23
|
+
includeInDebugSnapshot: false,
|
|
24
24
|
usedInUi: true,
|
|
25
25
|
},
|
|
26
26
|
};
|
|
@@ -84,6 +84,15 @@ class AccountsController extends base_controller_1.BaseController {
|
|
|
84
84
|
getAccount(accountId) {
|
|
85
85
|
return this.state.internalAccounts.accounts[accountId];
|
|
86
86
|
}
|
|
87
|
+
/**
|
|
88
|
+
* Returns the internal account objects for the given account IDs, if they exist.
|
|
89
|
+
*
|
|
90
|
+
* @param accountIds - The IDs of the accounts to retrieve.
|
|
91
|
+
* @returns The internal account objects, or undefined if the account(s) do not exist.
|
|
92
|
+
*/
|
|
93
|
+
getAccounts(accountIds) {
|
|
94
|
+
return accountIds.map((accountId) => this.getAccount(accountId));
|
|
95
|
+
}
|
|
87
96
|
/**
|
|
88
97
|
* Returns an array of all evm internal accounts.
|
|
89
98
|
*
|
|
@@ -233,7 +242,7 @@ class AccountsController extends base_controller_1.BaseController {
|
|
|
233
242
|
state.internalAccounts.accounts[account.id] = internalAccount;
|
|
234
243
|
state.internalAccounts.selectedAccount = account.id;
|
|
235
244
|
});
|
|
236
|
-
this.
|
|
245
|
+
this.messenger.publish('AccountsController:accountRenamed', internalAccount);
|
|
237
246
|
}
|
|
238
247
|
/**
|
|
239
248
|
* Updates the metadata of the account with the given ID.
|
|
@@ -254,7 +263,7 @@ class AccountsController extends base_controller_1.BaseController {
|
|
|
254
263
|
state.internalAccounts.accounts[accountId] = internalAccount;
|
|
255
264
|
});
|
|
256
265
|
if (metadata.name) {
|
|
257
|
-
this.
|
|
266
|
+
this.messenger.publish('AccountsController:accountRenamed', internalAccount);
|
|
258
267
|
}
|
|
259
268
|
}
|
|
260
269
|
/**
|
|
@@ -267,7 +276,7 @@ class AccountsController extends base_controller_1.BaseController {
|
|
|
267
276
|
const keyringAccountIndexes = new Map();
|
|
268
277
|
const existingInternalAccounts = this.state.internalAccounts.accounts;
|
|
269
278
|
const internalAccounts = {};
|
|
270
|
-
const { keyrings } = this.
|
|
279
|
+
const { keyrings } = this.messenger.call('KeyringController:getState');
|
|
271
280
|
for (const keyring of keyrings) {
|
|
272
281
|
const keyringTypeName = (0, utils_2.keyringTypeToName)(keyring.type);
|
|
273
282
|
for (const address of keyring.accounts) {
|
|
@@ -417,12 +426,12 @@ _AccountsController_instances = new WeakSet(), _AccountsController_assertAccount
|
|
|
417
426
|
metadata,
|
|
418
427
|
};
|
|
419
428
|
}, _AccountsController_getSnapKeyring = function _AccountsController_getSnapKeyring() {
|
|
420
|
-
const [snapKeyring] = this.
|
|
429
|
+
const [snapKeyring] = this.messenger.call('KeyringController:getKeyringsByType', eth_snap_keyring_1.SnapKeyring.type);
|
|
421
430
|
// Snap keyring is not available until the first account is created in the keyring
|
|
422
431
|
// controller, so this might be undefined.
|
|
423
432
|
return snapKeyring;
|
|
424
433
|
}, _AccountsController_handleOnSnapKeyringAccountEvent = function _AccountsController_handleOnSnapKeyringAccountEvent(event, ...payload) {
|
|
425
|
-
this.
|
|
434
|
+
this.messenger.publish(event, ...payload);
|
|
426
435
|
}, _AccountsController_handleOnKeyringStateChange = function _AccountsController_handleOnKeyringStateChange({ isUnlocked, keyrings, }) {
|
|
427
436
|
// TODO: Change when accountAdded event is added to the keyring controller.
|
|
428
437
|
// We check for keyrings length to be greater than 0 because the extension client may try execute
|
|
@@ -532,10 +541,10 @@ _AccountsController_instances = new WeakSet(), _AccountsController_assertAccount
|
|
|
532
541
|
() => {
|
|
533
542
|
// Now publish events
|
|
534
543
|
for (const id of diff.removed) {
|
|
535
|
-
this.
|
|
544
|
+
this.messenger.publish('AccountsController:accountRemoved', id);
|
|
536
545
|
}
|
|
537
546
|
for (const account of diff.added) {
|
|
538
|
-
this.
|
|
547
|
+
this.messenger.publish('AccountsController:accountAdded', account);
|
|
539
548
|
}
|
|
540
549
|
});
|
|
541
550
|
// NOTE: Since we also track "updated" accounts with our patches, we could fire a new event
|
|
@@ -572,9 +581,9 @@ _AccountsController_instances = new WeakSet(), _AccountsController_assertAccount
|
|
|
572
581
|
// `selectedAccount` to be non-empty.
|
|
573
582
|
if (account) {
|
|
574
583
|
if ((0, keyring_api_1.isEvmAccountType)(account.type)) {
|
|
575
|
-
this.
|
|
584
|
+
this.messenger.publish('AccountsController:selectedEvmAccountChange', account);
|
|
576
585
|
}
|
|
577
|
-
this.
|
|
586
|
+
this.messenger.publish('AccountsController:selectedAccountChange', account);
|
|
578
587
|
}
|
|
579
588
|
}
|
|
580
589
|
}, _AccountsController_handleOnSnapStateChange = function _AccountsController_handleOnSnapStateChange(snapState) {
|
|
@@ -687,25 +696,26 @@ _AccountsController_instances = new WeakSet(), _AccountsController_assertAccount
|
|
|
687
696
|
});
|
|
688
697
|
// DO NOT publish AccountsController:setSelectedAccount to prevent circular listener loops
|
|
689
698
|
}, _AccountsController_subscribeToMessageEvents = function _AccountsController_subscribeToMessageEvents() {
|
|
690
|
-
this.
|
|
691
|
-
this.
|
|
692
|
-
this.
|
|
693
|
-
this.
|
|
694
|
-
this.
|
|
699
|
+
this.messenger.subscribe('SnapController:stateChange', (snapStateState) => __classPrivateFieldGet(this, _AccountsController_instances, "m", _AccountsController_handleOnSnapStateChange).call(this, snapStateState));
|
|
700
|
+
this.messenger.subscribe('KeyringController:stateChange', (keyringState) => __classPrivateFieldGet(this, _AccountsController_instances, "m", _AccountsController_handleOnKeyringStateChange).call(this, keyringState));
|
|
701
|
+
this.messenger.subscribe('SnapKeyring:accountAssetListUpdated', (snapAccountEvent) => __classPrivateFieldGet(this, _AccountsController_instances, "m", _AccountsController_handleOnSnapKeyringAccountEvent).call(this, 'AccountsController:accountAssetListUpdated', snapAccountEvent));
|
|
702
|
+
this.messenger.subscribe('SnapKeyring:accountBalancesUpdated', (snapAccountEvent) => __classPrivateFieldGet(this, _AccountsController_instances, "m", _AccountsController_handleOnSnapKeyringAccountEvent).call(this, 'AccountsController:accountBalancesUpdated', snapAccountEvent));
|
|
703
|
+
this.messenger.subscribe('SnapKeyring:accountTransactionsUpdated', (snapAccountEvent) => __classPrivateFieldGet(this, _AccountsController_instances, "m", _AccountsController_handleOnSnapKeyringAccountEvent).call(this, 'AccountsController:accountTransactionsUpdated', snapAccountEvent));
|
|
695
704
|
// Handle account change when multichain network is changed
|
|
696
|
-
this.
|
|
705
|
+
this.messenger.subscribe('MultichainNetworkController:networkDidChange', (id) => __classPrivateFieldGet(this, _AccountsController_instances, "m", _AccountsController_handleOnMultichainNetworkDidChange).call(this, id));
|
|
697
706
|
}, _AccountsController_registerMessageHandlers = function _AccountsController_registerMessageHandlers() {
|
|
698
|
-
this.
|
|
699
|
-
this.
|
|
700
|
-
this.
|
|
701
|
-
this.
|
|
702
|
-
this.
|
|
703
|
-
this.
|
|
704
|
-
this.
|
|
705
|
-
this.
|
|
706
|
-
this.
|
|
707
|
-
this.
|
|
708
|
-
this.
|
|
709
|
-
this.
|
|
707
|
+
this.messenger.registerActionHandler(`${controllerName}:setSelectedAccount`, this.setSelectedAccount.bind(this));
|
|
708
|
+
this.messenger.registerActionHandler(`${controllerName}:listAccounts`, this.listAccounts.bind(this));
|
|
709
|
+
this.messenger.registerActionHandler(`${controllerName}:listMultichainAccounts`, this.listMultichainAccounts.bind(this));
|
|
710
|
+
this.messenger.registerActionHandler(`${controllerName}:setAccountName`, this.setAccountName.bind(this));
|
|
711
|
+
this.messenger.registerActionHandler(`${controllerName}:setAccountNameAndSelectAccount`, this.setAccountNameAndSelectAccount.bind(this));
|
|
712
|
+
this.messenger.registerActionHandler(`${controllerName}:updateAccounts`, this.updateAccounts.bind(this));
|
|
713
|
+
this.messenger.registerActionHandler(`${controllerName}:getSelectedAccount`, this.getSelectedAccount.bind(this));
|
|
714
|
+
this.messenger.registerActionHandler(`${controllerName}:getSelectedMultichainAccount`, this.getSelectedMultichainAccount.bind(this));
|
|
715
|
+
this.messenger.registerActionHandler(`${controllerName}:getAccountByAddress`, this.getAccountByAddress.bind(this));
|
|
716
|
+
this.messenger.registerActionHandler(`${controllerName}:getNextAvailableAccountName`, this.getNextAvailableAccountName.bind(this));
|
|
717
|
+
this.messenger.registerActionHandler(`AccountsController:getAccount`, this.getAccount.bind(this));
|
|
718
|
+
this.messenger.registerActionHandler(`AccountsController:getAccounts`, this.getAccounts.bind(this));
|
|
719
|
+
this.messenger.registerActionHandler(`AccountsController:updateAccountMetadata`, this.updateAccountMetadata.bind(this));
|
|
710
720
|
};
|
|
711
721
|
//# sourceMappingURL=AccountsController.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AccountsController.cjs","sourceRoot":"","sources":["../src/AccountsController.ts"],"names":[],"mappings":"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","sourcesContent":["import {\n type ControllerGetStateAction,\n type ControllerStateChangeEvent,\n type ExtractEventPayload,\n type RestrictedMessenger,\n BaseController,\n} from '@metamask/base-controller';\nimport {\n type SnapKeyringAccountAssetListUpdatedEvent,\n type SnapKeyringAccountBalancesUpdatedEvent,\n type SnapKeyringAccountTransactionsUpdatedEvent,\n SnapKeyring,\n} from '@metamask/eth-snap-keyring';\nimport type { KeyringAccountEntropyOptions } from '@metamask/keyring-api';\nimport {\n EthAccountType,\n EthMethod,\n EthScope,\n isEvmAccountType,\n KeyringAccountEntropyTypeOption,\n} from '@metamask/keyring-api';\nimport type { KeyringObject } from '@metamask/keyring-controller';\nimport {\n type KeyringControllerState,\n type KeyringControllerGetKeyringsByTypeAction,\n type KeyringControllerStateChangeEvent,\n type KeyringControllerGetStateAction,\n KeyringTypes,\n} from '@metamask/keyring-controller';\nimport type { InternalAccount } from '@metamask/keyring-internal-api';\nimport { isScopeEqualToAny } from '@metamask/keyring-utils';\nimport type { NetworkClientId } from '@metamask/network-controller';\nimport type {\n SnapControllerState,\n SnapStateChange,\n} from '@metamask/snaps-controllers';\nimport type { SnapId } from '@metamask/snaps-sdk';\nimport { type CaipChainId, isCaipChainId } from '@metamask/utils';\nimport type { WritableDraft } from 'immer/dist/internal.js';\nimport { cloneDeep } from 'lodash';\n\nimport type { MultichainNetworkControllerNetworkDidChangeEvent } from './types';\nimport type { AccountsControllerStrictState } from './typing';\nimport type { HdSnapKeyringAccount } from './utils';\nimport {\n getEvmDerivationPathForIndex,\n getEvmGroupIndexFromAddressIndex,\n getUUIDFromAddressOfNormalAccount,\n isHdKeyringType,\n isHdSnapKeyringAccount,\n isSimpleKeyringType,\n isSnapKeyringType,\n keyringTypeToName,\n} from './utils';\n\nconst controllerName = 'AccountsController';\n\nexport type AccountId = string;\n\nexport type AccountsControllerState = {\n internalAccounts: {\n accounts: Record<AccountId, InternalAccount>;\n selectedAccount: string; // id of the selected account\n };\n};\n\nexport type AccountsControllerGetStateAction = ControllerGetStateAction<\n typeof controllerName,\n AccountsControllerState\n>;\n\nexport type AccountsControllerSetSelectedAccountAction = {\n type: `${typeof controllerName}:setSelectedAccount`;\n handler: AccountsController['setSelectedAccount'];\n};\n\nexport type AccountsControllerSetAccountNameAction = {\n type: `${typeof controllerName}:setAccountName`;\n handler: AccountsController['setAccountName'];\n};\n\nexport type AccountsControllerSetAccountNameAndSelectAccountAction = {\n type: `${typeof controllerName}:setAccountNameAndSelectAccount`;\n handler: AccountsController['setAccountNameAndSelectAccount'];\n};\n\nexport type AccountsControllerListAccountsAction = {\n type: `${typeof controllerName}:listAccounts`;\n handler: AccountsController['listAccounts'];\n};\n\nexport type AccountsControllerListMultichainAccountsAction = {\n type: `${typeof controllerName}:listMultichainAccounts`;\n handler: AccountsController['listMultichainAccounts'];\n};\n\nexport type AccountsControllerUpdateAccountsAction = {\n type: `${typeof controllerName}:updateAccounts`;\n handler: AccountsController['updateAccounts'];\n};\n\nexport type AccountsControllerGetSelectedAccountAction = {\n type: `${typeof controllerName}:getSelectedAccount`;\n handler: AccountsController['getSelectedAccount'];\n};\n\nexport type AccountsControllerGetSelectedMultichainAccountAction = {\n type: `${typeof controllerName}:getSelectedMultichainAccount`;\n handler: AccountsController['getSelectedMultichainAccount'];\n};\n\nexport type AccountsControllerGetAccountByAddressAction = {\n type: `${typeof controllerName}:getAccountByAddress`;\n handler: AccountsController['getAccountByAddress'];\n};\n\nexport type AccountsControllerGetNextAvailableAccountNameAction = {\n type: `${typeof controllerName}:getNextAvailableAccountName`;\n handler: AccountsController['getNextAvailableAccountName'];\n};\n\nexport type AccountsControllerGetAccountAction = {\n type: `${typeof controllerName}:getAccount`;\n handler: AccountsController['getAccount'];\n};\n\nexport type AccountsControllerUpdateAccountMetadataAction = {\n type: `${typeof controllerName}:updateAccountMetadata`;\n handler: AccountsController['updateAccountMetadata'];\n};\n\nexport type AllowedActions =\n | KeyringControllerGetKeyringsByTypeAction\n | KeyringControllerGetStateAction;\n\nexport type AccountsControllerActions =\n | AccountsControllerGetStateAction\n | AccountsControllerSetSelectedAccountAction\n | AccountsControllerListAccountsAction\n | AccountsControllerListMultichainAccountsAction\n | AccountsControllerSetAccountNameAction\n | AccountsControllerSetAccountNameAndSelectAccountAction\n | AccountsControllerUpdateAccountsAction\n | AccountsControllerGetAccountByAddressAction\n | AccountsControllerGetSelectedAccountAction\n | AccountsControllerGetNextAvailableAccountNameAction\n | AccountsControllerGetAccountAction\n | AccountsControllerGetSelectedMultichainAccountAction\n | AccountsControllerUpdateAccountMetadataAction;\n\nexport type AccountsControllerChangeEvent = ControllerStateChangeEvent<\n typeof controllerName,\n AccountsControllerState\n>;\n\nexport type AccountsControllerSelectedAccountChangeEvent = {\n type: `${typeof controllerName}:selectedAccountChange`;\n payload: [InternalAccount];\n};\n\nexport type AccountsControllerSelectedEvmAccountChangeEvent = {\n type: `${typeof controllerName}:selectedEvmAccountChange`;\n payload: [InternalAccount];\n};\n\nexport type AccountsControllerAccountAddedEvent = {\n type: `${typeof controllerName}:accountAdded`;\n payload: [InternalAccount];\n};\n\nexport type AccountsControllerAccountRemovedEvent = {\n type: `${typeof controllerName}:accountRemoved`;\n payload: [AccountId];\n};\n\nexport type AccountsControllerAccountRenamedEvent = {\n type: `${typeof controllerName}:accountRenamed`;\n payload: [InternalAccount];\n};\n\nexport type AccountsControllerAccountBalancesUpdatesEvent = {\n type: `${typeof controllerName}:accountBalancesUpdated`;\n payload: SnapKeyringAccountBalancesUpdatedEvent['payload'];\n};\n\nexport type AccountsControllerAccountTransactionsUpdatedEvent = {\n type: `${typeof controllerName}:accountTransactionsUpdated`;\n payload: SnapKeyringAccountTransactionsUpdatedEvent['payload'];\n};\n\nexport type AccountsControllerAccountAssetListUpdatedEvent = {\n type: `${typeof controllerName}:accountAssetListUpdated`;\n payload: SnapKeyringAccountAssetListUpdatedEvent['payload'];\n};\n\nexport type AllowedEvents =\n | SnapStateChange\n | KeyringControllerStateChangeEvent\n | SnapKeyringAccountAssetListUpdatedEvent\n | SnapKeyringAccountBalancesUpdatedEvent\n | SnapKeyringAccountTransactionsUpdatedEvent\n | MultichainNetworkControllerNetworkDidChangeEvent;\n\nexport type AccountsControllerEvents =\n | AccountsControllerChangeEvent\n | AccountsControllerSelectedAccountChangeEvent\n | AccountsControllerSelectedEvmAccountChangeEvent\n | AccountsControllerAccountAddedEvent\n | AccountsControllerAccountRemovedEvent\n | AccountsControllerAccountRenamedEvent\n | AccountsControllerAccountBalancesUpdatesEvent\n | AccountsControllerAccountTransactionsUpdatedEvent\n | AccountsControllerAccountAssetListUpdatedEvent;\n\nexport type AccountsControllerMessenger = RestrictedMessenger<\n typeof controllerName,\n AccountsControllerActions | AllowedActions,\n AccountsControllerEvents | AllowedEvents,\n AllowedActions['type'],\n AllowedEvents['type']\n>;\n\nconst accountsControllerMetadata = {\n internalAccounts: {\n includeInStateLogs: true,\n persist: true,\n anonymous: false,\n usedInUi: true,\n },\n};\n\nconst defaultState: AccountsControllerState = {\n internalAccounts: {\n accounts: {},\n selectedAccount: '',\n },\n};\n\nexport const EMPTY_ACCOUNT = {\n id: '',\n address: '',\n options: {},\n methods: [],\n type: EthAccountType.Eoa,\n scopes: [EthScope.Eoa],\n metadata: {\n name: '',\n keyring: {\n type: '',\n },\n importTime: 0,\n },\n};\n\n/**\n * Controller that manages internal accounts.\n * The accounts controller is responsible for creating and managing internal accounts.\n * It also provides convenience methods for accessing and updating the internal accounts.\n * The accounts controller also listens for keyring state changes and updates the internal accounts accordingly.\n * The accounts controller also listens for snap state changes and updates the internal accounts accordingly.\n *\n */\nexport class AccountsController extends BaseController<\n typeof controllerName,\n AccountsControllerState,\n AccountsControllerMessenger\n> {\n /**\n * Constructor for AccountsController.\n *\n * @param options - The controller options.\n * @param options.messenger - The messenger object.\n * @param options.state - Initial state to set on this controller\n */\n constructor({\n messenger,\n state,\n }: {\n messenger: AccountsControllerMessenger;\n state: AccountsControllerState;\n }) {\n super({\n messenger,\n name: controllerName,\n metadata: accountsControllerMetadata,\n state: {\n ...defaultState,\n ...state,\n },\n });\n\n this.#subscribeToMessageEvents();\n this.#registerMessageHandlers();\n }\n\n /**\n * Returns the internal account object for the given account ID, if it exists.\n *\n * @param accountId - The ID of the account to retrieve.\n * @returns The internal account object, or undefined if the account does not exist.\n */\n getAccount(accountId: string): InternalAccount | undefined {\n return this.state.internalAccounts.accounts[accountId];\n }\n\n /**\n * Returns an array of all evm internal accounts.\n *\n * @returns An array of InternalAccount objects.\n */\n listAccounts(): InternalAccount[] {\n const accounts = Object.values(this.state.internalAccounts.accounts);\n return accounts.filter((account) => isEvmAccountType(account.type));\n }\n\n /**\n * Returns an array of all internal accounts.\n *\n * @param chainId - The chain ID.\n * @returns An array of InternalAccount objects.\n */\n listMultichainAccounts(chainId?: CaipChainId): InternalAccount[] {\n const accounts = Object.values(this.state.internalAccounts.accounts);\n if (!chainId) {\n return accounts;\n }\n\n if (!isCaipChainId(chainId)) {\n throw new Error(`Invalid CAIP-2 chain ID: ${String(chainId)}`);\n }\n\n return accounts.filter((account) =>\n isScopeEqualToAny(chainId, account.scopes),\n );\n }\n\n /**\n * Returns the internal account object for the given account ID.\n *\n * @param accountId - The ID of the account to retrieve.\n * @returns The internal account object.\n * @throws An error if the account ID is not found.\n */\n getAccountExpect(accountId: string): InternalAccount {\n const account = this.getAccount(accountId);\n if (account === undefined) {\n throw new Error(`Account Id \"${accountId}\" not found`);\n }\n return account;\n }\n\n /**\n * Returns the last selected EVM account.\n *\n * @returns The selected internal account.\n */\n getSelectedAccount(): InternalAccount {\n const {\n internalAccounts: { selectedAccount },\n } = this.state;\n\n // Edge case where the extension is setup but the srp is not yet created\n // certain ui elements will query the selected address before any accounts are created.\n if (selectedAccount === '') {\n return EMPTY_ACCOUNT;\n }\n\n const account = this.getAccountExpect(selectedAccount);\n if (isEvmAccountType(account.type)) {\n return account;\n }\n\n const accounts = this.listAccounts();\n if (!accounts.length) {\n // ! Should never reach this.\n throw new Error('No EVM accounts');\n }\n\n // This will never be undefined because we have already checked if accounts.length is > 0\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n return this.#getLastSelectedAccount(accounts)!;\n }\n\n /**\n * __WARNING The return value may be undefined if there isn't an account for that chain id.__\n *\n * Retrieves the last selected account by chain ID.\n *\n * @param chainId - The chain ID to filter the accounts.\n * @returns The last selected account compatible with the specified chain ID or undefined.\n */\n getSelectedMultichainAccount(\n chainId?: CaipChainId,\n ): InternalAccount | undefined {\n const {\n internalAccounts: { selectedAccount },\n } = this.state;\n\n // Edge case where the extension is setup but the srp is not yet created\n // certain ui elements will query the selected address before any accounts are created.\n if (selectedAccount === '') {\n return EMPTY_ACCOUNT;\n }\n\n if (!chainId) {\n return this.getAccountExpect(selectedAccount);\n }\n\n const accounts = this.listMultichainAccounts(chainId);\n return this.#getLastSelectedAccount(accounts);\n }\n\n /**\n * Returns the account with the specified address.\n * ! This method will only return the first account that matches the address\n *\n * @param address - The address of the account to retrieve.\n * @returns The account with the specified address, or undefined if not found.\n */\n getAccountByAddress(address: string): InternalAccount | undefined {\n return this.listMultichainAccounts().find(\n (account) => account.address.toLowerCase() === address.toLowerCase(),\n );\n }\n\n /**\n * Sets the selected account by its ID.\n *\n * @param accountId - The ID of the account to be selected.\n */\n setSelectedAccount(accountId: string): void {\n const account = this.getAccountExpect(accountId);\n\n if (this.state.internalAccounts.selectedAccount === account.id) {\n return;\n }\n\n this.#update((state) => {\n const { internalAccounts } = state;\n\n internalAccounts.accounts[account.id].metadata.lastSelected = Date.now();\n internalAccounts.selectedAccount = account.id;\n });\n }\n\n /**\n * Sets the name of the account with the given ID.\n *\n * @param accountId - The ID of the account to set the name for.\n * @param accountName - The new name for the account.\n * @throws An error if an account with the same name already exists.\n */\n setAccountName(accountId: string, accountName: string): void {\n // This will check for name uniqueness and fire the `accountRenamed` event\n // if the account has been renamed.\n this.updateAccountMetadata(accountId, {\n name: accountName,\n nameLastUpdatedAt: Date.now(),\n });\n }\n\n /**\n * Sets the name of the account with the given ID and select it.\n *\n * @param accountId - The ID of the account to set the name for and select.\n * @param accountName - The new name for the account.\n * @throws An error if an account with the same name already exists.\n */\n setAccountNameAndSelectAccount(accountId: string, accountName: string): void {\n const account = this.getAccountExpect(accountId);\n\n this.#assertAccountCanBeRenamed(account, accountName);\n\n const internalAccount = {\n ...account,\n metadata: {\n ...account.metadata,\n name: accountName,\n nameLastUpdatedAt: Date.now(),\n lastSelected: this.#getLastSelectedIndex(),\n },\n };\n\n this.#update((state) => {\n state.internalAccounts.accounts[account.id] = internalAccount;\n state.internalAccounts.selectedAccount = account.id;\n });\n\n this.messagingSystem.publish(\n 'AccountsController:accountRenamed',\n internalAccount,\n );\n }\n\n #assertAccountCanBeRenamed(account: InternalAccount, accountName: string) {\n if (\n this.listMultichainAccounts().find(\n (internalAccount) =>\n internalAccount.metadata.name === accountName &&\n internalAccount.id !== account.id,\n )\n ) {\n throw new Error('Account name already exists');\n }\n }\n\n /**\n * Updates the metadata of the account with the given ID.\n *\n * @param accountId - The ID of the account for which the metadata will be updated.\n * @param metadata - The new metadata for the account.\n */\n updateAccountMetadata(\n accountId: string,\n metadata: Partial<InternalAccount['metadata']>,\n ): void {\n const account = this.getAccountExpect(accountId);\n\n if (metadata.name) {\n this.#assertAccountCanBeRenamed(account, metadata.name);\n }\n\n const internalAccount = {\n ...account,\n metadata: { ...account.metadata, ...metadata },\n };\n\n this.#update((state) => {\n state.internalAccounts.accounts[accountId] = internalAccount;\n });\n\n if (metadata.name) {\n this.messagingSystem.publish(\n 'AccountsController:accountRenamed',\n internalAccount,\n );\n }\n }\n\n /**\n * Updates the internal accounts list by retrieving normal and snap accounts,\n * removing duplicates, and updating the metadata of each account.\n *\n * @returns A Promise that resolves when the accounts have been updated.\n */\n async updateAccounts(): Promise<void> {\n const keyringAccountIndexes = new Map<string, number>();\n\n const existingInternalAccounts = this.state.internalAccounts.accounts;\n const internalAccounts: AccountsControllerState['internalAccounts']['accounts'] =\n {};\n\n const { keyrings } = this.messagingSystem.call(\n 'KeyringController:getState',\n );\n for (const keyring of keyrings) {\n const keyringTypeName = keyringTypeToName(keyring.type);\n\n for (const address of keyring.accounts) {\n const internalAccount = this.#getInternalAccountFromAddressAndType(\n address,\n keyring,\n );\n\n // This should never really happen, but if for some reason we're not\n // able to get the Snap keyring reference, this would return an\n // undefined account.\n // So we just skip it, even though, this should not really happen.\n if (!internalAccount) {\n continue;\n }\n\n // Get current index for this keyring (we use human indexing, so start at 1).\n const keyringAccountIndex =\n keyringAccountIndexes.get(keyringTypeName) ?? 1;\n\n const existingAccount = existingInternalAccounts[internalAccount.id];\n internalAccounts[internalAccount.id] = {\n ...internalAccount,\n\n metadata: {\n ...internalAccount.metadata,\n\n // Re-use existing metadata if any.\n name:\n existingAccount?.metadata.name ??\n `${keyringTypeName} ${keyringAccountIndex}`,\n importTime: existingAccount?.metadata.importTime ?? Date.now(),\n lastSelected: existingAccount?.metadata.lastSelected ?? 0,\n },\n };\n\n // Increment the account index for this keyring.\n keyringAccountIndexes.set(keyringTypeName, keyringAccountIndex + 1);\n }\n }\n\n this.#update((state) => {\n state.internalAccounts.accounts = internalAccounts;\n });\n }\n\n /**\n * Loads the backup state of the accounts controller.\n *\n * @param backup - The backup state to load.\n */\n loadBackup(backup: AccountsControllerState): void {\n if (backup.internalAccounts) {\n this.update(\n (currentState: WritableDraft<AccountsControllerStrictState>) => {\n currentState.internalAccounts = backup.internalAccounts;\n },\n );\n }\n }\n\n /**\n * Gets an internal account representation for a non-Snap account.\n *\n * @param address - The address of the account.\n * @param keyring - The keyring object of the account.\n * @returns The generated internal account.\n */\n #getInternalAccountForNonSnapAccount(\n address: string,\n keyring: KeyringObject,\n ): InternalAccount {\n const id = getUUIDFromAddressOfNormalAccount(address);\n\n // We might have an account for this ID already, so we'll just re-use\n // the same metadata\n const account = this.getAccount(id);\n const metadata: InternalAccount['metadata'] = {\n name: account?.metadata.name ?? '',\n ...(account?.metadata.nameLastUpdatedAt\n ? {\n nameLastUpdatedAt: account?.metadata.nameLastUpdatedAt,\n }\n : {}),\n importTime: account?.metadata.importTime ?? Date.now(),\n lastSelected: account?.metadata.lastSelected ?? 0,\n keyring: {\n type: keyring.type,\n },\n };\n\n let options: InternalAccount['options'] = {};\n if (isHdKeyringType(keyring.type)) {\n // We need to find the account index from its HD keyring.\n const groupIndex = getEvmGroupIndexFromAddressIndex(keyring, address);\n\n // If for some reason, we cannot find this address, then the caller made a mistake\n // and it did not use the proper keyring object. For now, we do not fail and just\n // consider this account as \"simple account\".\n if (groupIndex !== undefined) {\n // NOTE: We are not using the `hdPath` from the associated keyring here and\n // getting the keyring instance here feels a bit overkill.\n // This will be naturally fixed once every keyring start using `KeyringAccount` and implement the keyring API.\n const derivationPath = getEvmDerivationPathForIndex(groupIndex);\n\n // Those are \"legacy options\" and they were used before `KeyringAccount` added\n // support for type options. We keep those temporarily until we update everything\n // to use the new typed options.\n const legacyOptions = {\n entropySource: keyring.metadata.id,\n derivationPath,\n groupIndex,\n };\n\n // New typed entropy options. This is required for multichain accounts.\n const entropyOptions: { entropy: KeyringAccountEntropyOptions } = {\n entropy: {\n type: KeyringAccountEntropyTypeOption.Mnemonic,\n id: keyring.metadata.id,\n derivationPath,\n groupIndex,\n },\n };\n\n options = {\n ...legacyOptions,\n ...entropyOptions,\n };\n }\n }\n\n return {\n id,\n address,\n options,\n methods: [\n EthMethod.PersonalSign,\n EthMethod.Sign,\n EthMethod.SignTransaction,\n EthMethod.SignTypedDataV1,\n EthMethod.SignTypedDataV3,\n EthMethod.SignTypedDataV4,\n ],\n scopes: [EthScope.Eoa],\n type: EthAccountType.Eoa,\n metadata,\n };\n }\n\n /**\n * Get Snap keyring from the keyring controller.\n *\n * @returns The Snap keyring if available.\n */\n #getSnapKeyring(): SnapKeyring | undefined {\n const [snapKeyring] = this.messagingSystem.call(\n 'KeyringController:getKeyringsByType',\n SnapKeyring.type,\n );\n\n // Snap keyring is not available until the first account is created in the keyring\n // controller, so this might be undefined.\n return snapKeyring as SnapKeyring | undefined;\n }\n\n /**\n * Re-publish an account event.\n *\n * @param event - The event type. This is a unique identifier for this event.\n * @param payload - The event payload. The type of the parameters for each event handler must\n * match the type of this payload.\n * @template EventType - A Snap keyring event type.\n */\n #handleOnSnapKeyringAccountEvent<\n EventType extends AccountsControllerEvents['type'],\n >(\n event: EventType,\n ...payload: ExtractEventPayload<AccountsControllerEvents, EventType>\n ): void {\n this.messagingSystem.publish(event, ...payload);\n }\n\n /**\n * Handles changes in the keyring state, specifically when new accounts are added or removed.\n *\n * @param keyringState - The new state of the keyring controller.\n * @param keyringState.isUnlocked - True if the keyrings are unlocked, false otherwise.\n * @param keyringState.keyrings - List of all keyrings.\n */\n #handleOnKeyringStateChange({\n isUnlocked,\n keyrings,\n }: KeyringControllerState): void {\n // TODO: Change when accountAdded event is added to the keyring controller.\n\n // We check for keyrings length to be greater than 0 because the extension client may try execute\n // submit password twice and clear the keyring state.\n // https://github.com/MetaMask/KeyringController/blob/2d73a4deed8d013913f6ef0c9f5c0bb7c614f7d3/src/KeyringController.ts#L910\n if (!isUnlocked || keyrings.length === 0) {\n return;\n }\n\n // State patches.\n const generatePatch = () => {\n return {\n previous: {} as Record<string, InternalAccount>,\n added: [] as {\n address: string;\n keyring: KeyringObject;\n }[],\n updated: [] as InternalAccount[],\n removed: [] as InternalAccount[],\n };\n };\n const patches = {\n snap: generatePatch(),\n normal: generatePatch(),\n };\n\n // Gets the patch object based on the keyring type (since Snap accounts and other accounts\n // are handled differently).\n const patchOf = (type: string) => {\n if (isSnapKeyringType(type)) {\n return patches.snap;\n }\n return patches.normal;\n };\n\n // Create a map (with lower-cased addresses) of all existing accounts.\n for (const account of this.listMultichainAccounts()) {\n const address = account.address.toLowerCase();\n const patch = patchOf(account.metadata.keyring.type);\n\n patch.previous[address] = account;\n }\n\n // Go over all keyring changes and create patches out of it.\n const addresses = new Set<string>();\n for (const keyring of keyrings) {\n const patch = patchOf(keyring.type);\n\n for (const accountAddress of keyring.accounts) {\n // Lower-case address to use it in the `previous` map.\n const address = accountAddress.toLowerCase();\n const account = patch.previous[address];\n\n if (account) {\n // If the account exists before, this might be an update.\n patch.updated.push(account);\n } else {\n // Otherwise, that's a new account.\n patch.added.push({\n address,\n keyring,\n });\n }\n\n // Keep track of those address to check for removed accounts later.\n addresses.add(address);\n }\n }\n\n // We might have accounts associated with removed keyrings, so we iterate\n // over all previous known accounts and check against the keyring addresses.\n for (const patch of [patches.snap, patches.normal]) {\n for (const [address, account] of Object.entries(patch.previous)) {\n // If a previous address is not part of the new addesses, then it got removed.\n if (!addresses.has(address)) {\n patch.removed.push(account);\n }\n }\n }\n\n // Diff that we will use to publish events afterward.\n const diff = {\n removed: [] as string[],\n added: [] as InternalAccount[],\n };\n\n this.#update(\n (state) => {\n const { internalAccounts } = state;\n\n for (const patch of [patches.snap, patches.normal]) {\n for (const account of patch.removed) {\n delete internalAccounts.accounts[account.id];\n\n diff.removed.push(account.id);\n }\n\n for (const added of patch.added) {\n const account = this.#getInternalAccountFromAddressAndType(\n added.address,\n added.keyring,\n );\n\n if (account) {\n // Re-compute the list of accounts everytime, so we can make sure new names\n // are also considered.\n const accounts = Object.values(\n internalAccounts.accounts,\n ) as InternalAccount[];\n\n // Get next account name available for this given keyring.\n const name = this.getNextAvailableAccountName(\n account.metadata.keyring.type,\n accounts,\n );\n\n // If it's the first account, we need to select it.\n const lastSelected =\n accounts.length === 0 ? this.#getLastSelectedIndex() : 0;\n\n internalAccounts.accounts[account.id] = {\n ...account,\n metadata: {\n ...account.metadata,\n name,\n importTime: Date.now(),\n lastSelected,\n },\n };\n\n diff.added.push(internalAccounts.accounts[account.id]);\n }\n }\n }\n },\n // Will get executed after the update, but before re-selecting an account in case\n // the current one is not valid anymore.\n () => {\n // Now publish events\n for (const id of diff.removed) {\n this.messagingSystem.publish('AccountsController:accountRemoved', id);\n }\n\n for (const account of diff.added) {\n this.messagingSystem.publish(\n 'AccountsController:accountAdded',\n account,\n );\n }\n },\n );\n\n // NOTE: Since we also track \"updated\" accounts with our patches, we could fire a new event\n // like `accountUpdated` (we would still need to check if anything really changed on the account).\n }\n\n /**\n * Update the state and fixup the currently selected account.\n *\n * @param callback - Callback for updating state, passed a draft state object.\n * @param beforeAutoSelectAccount - Callback to be executed before auto-selecting an account\n * if the current one is no longer available.\n */\n #update(\n callback: (state: WritableDraft<AccountsControllerStrictState>) => void,\n beforeAutoSelectAccount?: () => void,\n ) {\n // The currently selected account might get deleted during the update, so keep track\n // of it before doing any change.\n const previouslySelectedAccount =\n this.state.internalAccounts.selectedAccount;\n\n this.update((state: WritableDraft<AccountsControllerStrictState>) => {\n callback(state);\n\n // If the account no longer exists (or none is selected), we need to re-select another one.\n const { internalAccounts } = state;\n if (!internalAccounts.accounts[previouslySelectedAccount]) {\n const accounts = Object.values(\n internalAccounts.accounts,\n ) as InternalAccount[];\n\n // Get the lastly selected account (according to the current accounts).\n const lastSelectedAccount = this.#getLastSelectedAccount(accounts);\n if (lastSelectedAccount) {\n internalAccounts.selectedAccount = lastSelectedAccount.id;\n internalAccounts.accounts[\n lastSelectedAccount.id\n ].metadata.lastSelected = this.#getLastSelectedIndex();\n } else {\n // It will be undefined if there are no accounts.\n internalAccounts.selectedAccount = '';\n }\n }\n });\n\n // We might want to do some pre-work before selecting a new account.\n beforeAutoSelectAccount?.();\n\n // Now, we compare the newly selected account, and we send event if different.\n const { selectedAccount } = this.state.internalAccounts;\n if (selectedAccount && selectedAccount !== previouslySelectedAccount) {\n const account = this.getSelectedMultichainAccount();\n\n // The account should always be defined at this point, since we have already checked for\n // `selectedAccount` to be non-empty.\n if (account) {\n if (isEvmAccountType(account.type)) {\n this.messagingSystem.publish(\n 'AccountsController:selectedEvmAccountChange',\n account,\n );\n }\n this.messagingSystem.publish(\n 'AccountsController:selectedAccountChange',\n account,\n );\n }\n }\n }\n\n /**\n * Handles the change in SnapControllerState by updating the metadata of accounts that have a snap enabled.\n *\n * @param snapState - The new SnapControllerState.\n */\n #handleOnSnapStateChange(snapState: SnapControllerState) {\n // Only check if Snaps changed in status.\n const { snaps } = snapState;\n\n const accounts: { id: string; enabled: boolean }[] = [];\n for (const account of this.listMultichainAccounts()) {\n if (account.metadata.snap) {\n const snap = snaps[account.metadata.snap.id as SnapId];\n\n if (snap) {\n const enabled = snap.enabled && !snap.blocked;\n const metadata = account.metadata.snap;\n\n if (metadata.enabled !== enabled) {\n accounts.push({ id: account.id, enabled });\n }\n } else {\n // If Snap could not be found on the state, we consider it disabled.\n accounts.push({ id: account.id, enabled: false });\n }\n }\n }\n\n if (accounts.length > 0) {\n this.update((state) => {\n for (const { id, enabled } of accounts) {\n const account = state.internalAccounts.accounts[id];\n\n if (account.metadata.snap) {\n account.metadata.snap.enabled = enabled;\n }\n }\n });\n }\n }\n\n /**\n * Returns the list of accounts for a given keyring type.\n *\n * @param keyringType - The type of keyring.\n * @param accounts - Accounts to filter by keyring type.\n * @returns The list of accounts associcated with this keyring type.\n */\n #getAccountsByKeyringType(keyringType: string, accounts?: InternalAccount[]) {\n return (accounts ?? this.listMultichainAccounts()).filter(\n (internalAccount) => {\n // We do consider `hd` and `simple` keyrings to be of same type. So we check those 2 types\n // to group those accounts together!\n if (isHdKeyringType(keyringType) || isSimpleKeyringType(keyringType)) {\n return (\n isHdKeyringType(internalAccount.metadata.keyring.type) ||\n isSimpleKeyringType(internalAccount.metadata.keyring.type)\n );\n }\n\n return internalAccount.metadata.keyring.type === keyringType;\n },\n );\n }\n\n /**\n * Returns the last selected account from the given array of accounts.\n *\n * @param accounts - An array of InternalAccount objects.\n * @returns The InternalAccount object that was last selected, or undefined if the array is empty.\n */\n #getLastSelectedAccount(\n accounts: InternalAccount[],\n ): InternalAccount | undefined {\n const [accountToSelect] = accounts.sort((accountA, accountB) => {\n // sort by lastSelected descending\n return (\n (accountB.metadata.lastSelected ?? 0) -\n (accountA.metadata.lastSelected ?? 0)\n );\n });\n\n return accountToSelect;\n }\n\n /**\n * Returns the next account number for a given keyring type.\n *\n * @param keyringType - The type of keyring.\n * @param accounts - Existing accounts to check for the next available account number.\n * @returns An object containing the account prefix and index to use.\n */\n getNextAvailableAccountName(\n keyringType: string = KeyringTypes.hd,\n accounts?: InternalAccount[],\n ): string {\n const keyringName = keyringTypeToName(keyringType);\n const keyringAccounts = this.#getAccountsByKeyringType(\n keyringType,\n accounts,\n );\n const lastDefaultIndexUsedForKeyringType = keyringAccounts.reduce(\n (maxInternalAccountIndex, internalAccount) => {\n // We **DO NOT USE** `\\d+` here to only consider valid \"human\"\n // number (rounded decimal number)\n const match = new RegExp(`${keyringName} ([0-9]+)$`, 'u').exec(\n internalAccount.metadata.name,\n );\n\n if (match) {\n // Quoting `RegExp.exec` documentation:\n // > The returned array has the matched text as the first item, and then one item for\n // > each capturing group of the matched text.\n // So use `match[1]` to get the captured value\n const internalAccountIndex = parseInt(match[1], 10);\n return Math.max(maxInternalAccountIndex, internalAccountIndex);\n }\n\n return maxInternalAccountIndex;\n },\n 0,\n );\n\n const index = Math.max(\n keyringAccounts.length + 1,\n lastDefaultIndexUsedForKeyringType + 1,\n );\n\n return `${keyringName} ${index}`;\n }\n\n /**\n * Retrieves the index value for `metadata.lastSelected`.\n *\n * @returns The index value.\n */\n #getLastSelectedIndex() {\n // NOTE: For now we use the current date, since we know this value\n // will always be higher than any already selected account index.\n return Date.now();\n }\n\n /**\n * Get an internal account given an address and a keyring type.\n *\n * If the account is not a Snap Keyring account, generates an internal account for it and adds it to the controller.\n * If the account is a Snap Keyring account, retrieves the account from the keyring and adds it to the controller.\n *\n * @param address - The address of the new account.\n * @param keyring - The keyring object of that new account.\n * @returns The newly generated/retrieved internal account.\n */\n #getInternalAccountFromAddressAndType(\n address: string,\n keyring: KeyringObject,\n ): InternalAccount | undefined {\n if (isSnapKeyringType(keyring.type)) {\n const snapKeyring = this.#getSnapKeyring();\n\n // We need the Snap keyring to retrieve the account from its address.\n if (!snapKeyring) {\n return undefined;\n }\n\n // This might be undefined if the Snap deleted the account before\n // reaching that point.\n let account = snapKeyring.getAccountByAddress(address);\n if (account) {\n // We force the copy here, to avoid mutating the reference returned by the Snap keyring.\n account = cloneDeep(account);\n\n // MIGRATION: To avoid any existing Snap account migration, we are\n // just \"adding\" the new typed options that we need for multichain\n // accounts. Ultimately, we would need a real Snap account migrations\n // (being handled by each Snaps).\n if (isHdSnapKeyringAccount(account)) {\n const options: HdSnapKeyringAccount['options'] = {\n ...account.options,\n entropy: {\n type: KeyringAccountEntropyTypeOption.Mnemonic,\n id: account.options.entropySource,\n groupIndex: account.options.index,\n derivationPath: account.options.derivationPath,\n },\n };\n // Inject the new typed options to the internal account copy.\n account.options = options;\n }\n }\n\n return account;\n }\n\n return this.#getInternalAccountForNonSnapAccount(address, keyring);\n }\n\n /**\n * Handles the change in multichain network by updating the selected account.\n *\n * @param id - The EVM client ID or non-EVM chain ID that changed.\n */\n #handleOnMultichainNetworkDidChange(id: NetworkClientId | CaipChainId) {\n let accountId: string;\n\n // We only support non-EVM Caip chain IDs at the moment. Ex Solana and Bitcoin\n // MultichainNetworkController will handle throwing an error if the Caip chain ID is not supported\n if (isCaipChainId(id)) {\n // Update selected account to non evm account\n const lastSelectedNonEvmAccount = this.getSelectedMultichainAccount(id);\n // @ts-expect-error - This should never be undefined, otherwise it's a bug that should be handled\n accountId = lastSelectedNonEvmAccount.id;\n } else {\n // Update selected account to evm account\n const lastSelectedEvmAccount = this.getSelectedAccount();\n accountId = lastSelectedEvmAccount.id;\n }\n\n if (this.state.internalAccounts.selectedAccount === accountId) {\n return;\n }\n\n this.update((currentState) => {\n currentState.internalAccounts.accounts[accountId].metadata.lastSelected =\n Date.now();\n currentState.internalAccounts.selectedAccount = accountId;\n });\n\n // DO NOT publish AccountsController:setSelectedAccount to prevent circular listener loops\n }\n\n /**\n * Subscribes to message events.\n */\n #subscribeToMessageEvents() {\n this.messagingSystem.subscribe(\n 'SnapController:stateChange',\n (snapStateState) => this.#handleOnSnapStateChange(snapStateState),\n );\n\n this.messagingSystem.subscribe(\n 'KeyringController:stateChange',\n (keyringState) => this.#handleOnKeyringStateChange(keyringState),\n );\n\n this.messagingSystem.subscribe(\n 'SnapKeyring:accountAssetListUpdated',\n (snapAccountEvent) =>\n this.#handleOnSnapKeyringAccountEvent(\n 'AccountsController:accountAssetListUpdated',\n snapAccountEvent,\n ),\n );\n\n this.messagingSystem.subscribe(\n 'SnapKeyring:accountBalancesUpdated',\n (snapAccountEvent) =>\n this.#handleOnSnapKeyringAccountEvent(\n 'AccountsController:accountBalancesUpdated',\n snapAccountEvent,\n ),\n );\n\n this.messagingSystem.subscribe(\n 'SnapKeyring:accountTransactionsUpdated',\n (snapAccountEvent) =>\n this.#handleOnSnapKeyringAccountEvent(\n 'AccountsController:accountTransactionsUpdated',\n snapAccountEvent,\n ),\n );\n\n // Handle account change when multichain network is changed\n this.messagingSystem.subscribe(\n 'MultichainNetworkController:networkDidChange',\n (id) => this.#handleOnMultichainNetworkDidChange(id),\n );\n }\n\n /**\n * Registers message handlers for the AccountsController.\n */\n #registerMessageHandlers() {\n this.messagingSystem.registerActionHandler(\n `${controllerName}:setSelectedAccount`,\n this.setSelectedAccount.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `${controllerName}:listAccounts`,\n this.listAccounts.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `${controllerName}:listMultichainAccounts`,\n this.listMultichainAccounts.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `${controllerName}:setAccountName`,\n this.setAccountName.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `${controllerName}:setAccountNameAndSelectAccount`,\n this.setAccountNameAndSelectAccount.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `${controllerName}:updateAccounts`,\n this.updateAccounts.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `${controllerName}:getSelectedAccount`,\n this.getSelectedAccount.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `${controllerName}:getSelectedMultichainAccount`,\n this.getSelectedMultichainAccount.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `${controllerName}:getAccountByAddress`,\n this.getAccountByAddress.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `${controllerName}:getNextAvailableAccountName`,\n this.getNextAvailableAccountName.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `AccountsController:getAccount`,\n this.getAccount.bind(this),\n );\n\n this.messagingSystem.registerActionHandler(\n `AccountsController:updateAccountMetadata`,\n this.updateAccountMetadata.bind(this),\n );\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"AccountsController.cjs","sourceRoot":"","sources":["../src/AccountsController.ts"],"names":[],"mappings":"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","sourcesContent":["import {\n type ControllerGetStateAction,\n type ControllerStateChangeEvent,\n BaseController,\n} from '@metamask/base-controller';\nimport {\n type SnapKeyringAccountAssetListUpdatedEvent,\n type SnapKeyringAccountBalancesUpdatedEvent,\n type SnapKeyringAccountTransactionsUpdatedEvent,\n SnapKeyring,\n} from '@metamask/eth-snap-keyring';\nimport type { KeyringAccountEntropyOptions } from '@metamask/keyring-api';\nimport {\n EthAccountType,\n EthMethod,\n EthScope,\n isEvmAccountType,\n KeyringAccountEntropyTypeOption,\n} from '@metamask/keyring-api';\nimport type { KeyringObject } from '@metamask/keyring-controller';\nimport {\n type KeyringControllerState,\n type KeyringControllerGetKeyringsByTypeAction,\n type KeyringControllerStateChangeEvent,\n type KeyringControllerGetStateAction,\n KeyringTypes,\n} from '@metamask/keyring-controller';\nimport type { InternalAccount } from '@metamask/keyring-internal-api';\nimport { isScopeEqualToAny } from '@metamask/keyring-utils';\nimport type { Messenger, ExtractEventPayload } from '@metamask/messenger';\nimport type { NetworkClientId } from '@metamask/network-controller';\nimport type {\n SnapControllerState,\n SnapStateChange,\n} from '@metamask/snaps-controllers';\nimport type { SnapId } from '@metamask/snaps-sdk';\nimport { type CaipChainId, isCaipChainId } from '@metamask/utils';\nimport type { WritableDraft } from 'immer/dist/internal.js';\nimport { cloneDeep } from 'lodash';\n\nimport type { MultichainNetworkControllerNetworkDidChangeEvent } from './types';\nimport type { AccountsControllerStrictState } from './typing';\nimport type { HdSnapKeyringAccount } from './utils';\nimport {\n getEvmDerivationPathForIndex,\n getEvmGroupIndexFromAddressIndex,\n getUUIDFromAddressOfNormalAccount,\n isHdKeyringType,\n isHdSnapKeyringAccount,\n isSimpleKeyringType,\n isSnapKeyringType,\n keyringTypeToName,\n} from './utils';\n\nconst controllerName = 'AccountsController';\n\nexport type AccountId = string;\n\nexport type AccountsControllerState = {\n internalAccounts: {\n accounts: Record<AccountId, InternalAccount>;\n selectedAccount: string; // id of the selected account\n };\n};\n\nexport type AccountsControllerGetStateAction = ControllerGetStateAction<\n typeof controllerName,\n AccountsControllerState\n>;\n\nexport type AccountsControllerSetSelectedAccountAction = {\n type: `${typeof controllerName}:setSelectedAccount`;\n handler: AccountsController['setSelectedAccount'];\n};\n\nexport type AccountsControllerSetAccountNameAction = {\n type: `${typeof controllerName}:setAccountName`;\n handler: AccountsController['setAccountName'];\n};\n\nexport type AccountsControllerSetAccountNameAndSelectAccountAction = {\n type: `${typeof controllerName}:setAccountNameAndSelectAccount`;\n handler: AccountsController['setAccountNameAndSelectAccount'];\n};\n\nexport type AccountsControllerListAccountsAction = {\n type: `${typeof controllerName}:listAccounts`;\n handler: AccountsController['listAccounts'];\n};\n\nexport type AccountsControllerListMultichainAccountsAction = {\n type: `${typeof controllerName}:listMultichainAccounts`;\n handler: AccountsController['listMultichainAccounts'];\n};\n\nexport type AccountsControllerUpdateAccountsAction = {\n type: `${typeof controllerName}:updateAccounts`;\n handler: AccountsController['updateAccounts'];\n};\n\nexport type AccountsControllerGetSelectedAccountAction = {\n type: `${typeof controllerName}:getSelectedAccount`;\n handler: AccountsController['getSelectedAccount'];\n};\n\nexport type AccountsControllerGetSelectedMultichainAccountAction = {\n type: `${typeof controllerName}:getSelectedMultichainAccount`;\n handler: AccountsController['getSelectedMultichainAccount'];\n};\n\nexport type AccountsControllerGetAccountByAddressAction = {\n type: `${typeof controllerName}:getAccountByAddress`;\n handler: AccountsController['getAccountByAddress'];\n};\n\nexport type AccountsControllerGetNextAvailableAccountNameAction = {\n type: `${typeof controllerName}:getNextAvailableAccountName`;\n handler: AccountsController['getNextAvailableAccountName'];\n};\n\nexport type AccountsControllerGetAccountAction = {\n type: `${typeof controllerName}:getAccount`;\n handler: AccountsController['getAccount'];\n};\n\nexport type AccountsControllerGetAccountsAction = {\n type: `${typeof controllerName}:getAccounts`;\n handler: AccountsController['getAccounts'];\n};\n\nexport type AccountsControllerUpdateAccountMetadataAction = {\n type: `${typeof controllerName}:updateAccountMetadata`;\n handler: AccountsController['updateAccountMetadata'];\n};\n\nexport type AllowedActions =\n | KeyringControllerGetKeyringsByTypeAction\n | KeyringControllerGetStateAction;\n\nexport type AccountsControllerActions =\n | AccountsControllerGetStateAction\n | AccountsControllerSetSelectedAccountAction\n | AccountsControllerListAccountsAction\n | AccountsControllerListMultichainAccountsAction\n | AccountsControllerSetAccountNameAction\n | AccountsControllerSetAccountNameAndSelectAccountAction\n | AccountsControllerUpdateAccountsAction\n | AccountsControllerGetAccountByAddressAction\n | AccountsControllerGetSelectedAccountAction\n | AccountsControllerGetNextAvailableAccountNameAction\n | AccountsControllerGetAccountAction\n | AccountsControllerGetAccountsAction\n | AccountsControllerGetSelectedMultichainAccountAction\n | AccountsControllerUpdateAccountMetadataAction;\n\nexport type AccountsControllerChangeEvent = ControllerStateChangeEvent<\n typeof controllerName,\n AccountsControllerState\n>;\n\nexport type AccountsControllerSelectedAccountChangeEvent = {\n type: `${typeof controllerName}:selectedAccountChange`;\n payload: [InternalAccount];\n};\n\nexport type AccountsControllerSelectedEvmAccountChangeEvent = {\n type: `${typeof controllerName}:selectedEvmAccountChange`;\n payload: [InternalAccount];\n};\n\nexport type AccountsControllerAccountAddedEvent = {\n type: `${typeof controllerName}:accountAdded`;\n payload: [InternalAccount];\n};\n\nexport type AccountsControllerAccountRemovedEvent = {\n type: `${typeof controllerName}:accountRemoved`;\n payload: [AccountId];\n};\n\nexport type AccountsControllerAccountRenamedEvent = {\n type: `${typeof controllerName}:accountRenamed`;\n payload: [InternalAccount];\n};\n\nexport type AccountsControllerAccountBalancesUpdatesEvent = {\n type: `${typeof controllerName}:accountBalancesUpdated`;\n payload: SnapKeyringAccountBalancesUpdatedEvent['payload'];\n};\n\nexport type AccountsControllerAccountTransactionsUpdatedEvent = {\n type: `${typeof controllerName}:accountTransactionsUpdated`;\n payload: SnapKeyringAccountTransactionsUpdatedEvent['payload'];\n};\n\nexport type AccountsControllerAccountAssetListUpdatedEvent = {\n type: `${typeof controllerName}:accountAssetListUpdated`;\n payload: SnapKeyringAccountAssetListUpdatedEvent['payload'];\n};\n\nexport type AllowedEvents =\n | SnapStateChange\n | KeyringControllerStateChangeEvent\n | SnapKeyringAccountAssetListUpdatedEvent\n | SnapKeyringAccountBalancesUpdatedEvent\n | SnapKeyringAccountTransactionsUpdatedEvent\n | MultichainNetworkControllerNetworkDidChangeEvent;\n\nexport type AccountsControllerEvents =\n | AccountsControllerChangeEvent\n | AccountsControllerSelectedAccountChangeEvent\n | AccountsControllerSelectedEvmAccountChangeEvent\n | AccountsControllerAccountAddedEvent\n | AccountsControllerAccountRemovedEvent\n | AccountsControllerAccountRenamedEvent\n | AccountsControllerAccountBalancesUpdatesEvent\n | AccountsControllerAccountTransactionsUpdatedEvent\n | AccountsControllerAccountAssetListUpdatedEvent;\n\nexport type AccountsControllerMessenger = Messenger<\n typeof controllerName,\n AccountsControllerActions | AllowedActions,\n AccountsControllerEvents | AllowedEvents\n>;\n\nconst accountsControllerMetadata = {\n internalAccounts: {\n includeInStateLogs: true,\n persist: true,\n includeInDebugSnapshot: false,\n usedInUi: true,\n },\n};\n\nconst defaultState: AccountsControllerState = {\n internalAccounts: {\n accounts: {},\n selectedAccount: '',\n },\n};\n\nexport const EMPTY_ACCOUNT = {\n id: '',\n address: '',\n options: {},\n methods: [],\n type: EthAccountType.Eoa,\n scopes: [EthScope.Eoa],\n metadata: {\n name: '',\n keyring: {\n type: '',\n },\n importTime: 0,\n },\n};\n\n/**\n * Controller that manages internal accounts.\n * The accounts controller is responsible for creating and managing internal accounts.\n * It also provides convenience methods for accessing and updating the internal accounts.\n * The accounts controller also listens for keyring state changes and updates the internal accounts accordingly.\n * The accounts controller also listens for snap state changes and updates the internal accounts accordingly.\n *\n */\nexport class AccountsController extends BaseController<\n typeof controllerName,\n AccountsControllerState,\n AccountsControllerMessenger\n> {\n /**\n * Constructor for AccountsController.\n *\n * @param options - The controller options.\n * @param options.messenger - The messenger object.\n * @param options.state - Initial state to set on this controller\n */\n constructor({\n messenger,\n state,\n }: {\n messenger: AccountsControllerMessenger;\n state: AccountsControllerState;\n }) {\n super({\n messenger,\n name: controllerName,\n metadata: accountsControllerMetadata,\n state: {\n ...defaultState,\n ...state,\n },\n });\n\n this.#subscribeToMessageEvents();\n this.#registerMessageHandlers();\n }\n\n /**\n * Returns the internal account object for the given account ID, if it exists.\n *\n * @param accountId - The ID of the account to retrieve.\n * @returns The internal account object, or undefined if the account does not exist.\n */\n getAccount(accountId: string): InternalAccount | undefined {\n return this.state.internalAccounts.accounts[accountId];\n }\n\n /**\n * Returns the internal account objects for the given account IDs, if they exist.\n *\n * @param accountIds - The IDs of the accounts to retrieve.\n * @returns The internal account objects, or undefined if the account(s) do not exist.\n */\n getAccounts(accountIds: string[]): (InternalAccount | undefined)[] {\n return accountIds.map((accountId) => this.getAccount(accountId));\n }\n\n /**\n * Returns an array of all evm internal accounts.\n *\n * @returns An array of InternalAccount objects.\n */\n listAccounts(): InternalAccount[] {\n const accounts = Object.values(this.state.internalAccounts.accounts);\n return accounts.filter((account) => isEvmAccountType(account.type));\n }\n\n /**\n * Returns an array of all internal accounts.\n *\n * @param chainId - The chain ID.\n * @returns An array of InternalAccount objects.\n */\n listMultichainAccounts(chainId?: CaipChainId): InternalAccount[] {\n const accounts = Object.values(this.state.internalAccounts.accounts);\n if (!chainId) {\n return accounts;\n }\n\n if (!isCaipChainId(chainId)) {\n throw new Error(`Invalid CAIP-2 chain ID: ${String(chainId)}`);\n }\n\n return accounts.filter((account) =>\n isScopeEqualToAny(chainId, account.scopes),\n );\n }\n\n /**\n * Returns the internal account object for the given account ID.\n *\n * @param accountId - The ID of the account to retrieve.\n * @returns The internal account object.\n * @throws An error if the account ID is not found.\n */\n getAccountExpect(accountId: string): InternalAccount {\n const account = this.getAccount(accountId);\n if (account === undefined) {\n throw new Error(`Account Id \"${accountId}\" not found`);\n }\n return account;\n }\n\n /**\n * Returns the last selected EVM account.\n *\n * @returns The selected internal account.\n */\n getSelectedAccount(): InternalAccount {\n const {\n internalAccounts: { selectedAccount },\n } = this.state;\n\n // Edge case where the extension is setup but the srp is not yet created\n // certain ui elements will query the selected address before any accounts are created.\n if (selectedAccount === '') {\n return EMPTY_ACCOUNT;\n }\n\n const account = this.getAccountExpect(selectedAccount);\n if (isEvmAccountType(account.type)) {\n return account;\n }\n\n const accounts = this.listAccounts();\n if (!accounts.length) {\n // ! Should never reach this.\n throw new Error('No EVM accounts');\n }\n\n // This will never be undefined because we have already checked if accounts.length is > 0\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n return this.#getLastSelectedAccount(accounts)!;\n }\n\n /**\n * __WARNING The return value may be undefined if there isn't an account for that chain id.__\n *\n * Retrieves the last selected account by chain ID.\n *\n * @param chainId - The chain ID to filter the accounts.\n * @returns The last selected account compatible with the specified chain ID or undefined.\n */\n getSelectedMultichainAccount(\n chainId?: CaipChainId,\n ): InternalAccount | undefined {\n const {\n internalAccounts: { selectedAccount },\n } = this.state;\n\n // Edge case where the extension is setup but the srp is not yet created\n // certain ui elements will query the selected address before any accounts are created.\n if (selectedAccount === '') {\n return EMPTY_ACCOUNT;\n }\n\n if (!chainId) {\n return this.getAccountExpect(selectedAccount);\n }\n\n const accounts = this.listMultichainAccounts(chainId);\n return this.#getLastSelectedAccount(accounts);\n }\n\n /**\n * Returns the account with the specified address.\n * ! This method will only return the first account that matches the address\n *\n * @param address - The address of the account to retrieve.\n * @returns The account with the specified address, or undefined if not found.\n */\n getAccountByAddress(address: string): InternalAccount | undefined {\n return this.listMultichainAccounts().find(\n (account) => account.address.toLowerCase() === address.toLowerCase(),\n );\n }\n\n /**\n * Sets the selected account by its ID.\n *\n * @param accountId - The ID of the account to be selected.\n */\n setSelectedAccount(accountId: string): void {\n const account = this.getAccountExpect(accountId);\n\n if (this.state.internalAccounts.selectedAccount === account.id) {\n return;\n }\n\n this.#update((state) => {\n const { internalAccounts } = state;\n\n internalAccounts.accounts[account.id].metadata.lastSelected = Date.now();\n internalAccounts.selectedAccount = account.id;\n });\n }\n\n /**\n * Sets the name of the account with the given ID.\n *\n * @param accountId - The ID of the account to set the name for.\n * @param accountName - The new name for the account.\n * @throws An error if an account with the same name already exists.\n */\n setAccountName(accountId: string, accountName: string): void {\n // This will check for name uniqueness and fire the `accountRenamed` event\n // if the account has been renamed.\n this.updateAccountMetadata(accountId, {\n name: accountName,\n nameLastUpdatedAt: Date.now(),\n });\n }\n\n /**\n * Sets the name of the account with the given ID and select it.\n *\n * @param accountId - The ID of the account to set the name for and select.\n * @param accountName - The new name for the account.\n * @throws An error if an account with the same name already exists.\n */\n setAccountNameAndSelectAccount(accountId: string, accountName: string): void {\n const account = this.getAccountExpect(accountId);\n\n this.#assertAccountCanBeRenamed(account, accountName);\n\n const internalAccount = {\n ...account,\n metadata: {\n ...account.metadata,\n name: accountName,\n nameLastUpdatedAt: Date.now(),\n lastSelected: this.#getLastSelectedIndex(),\n },\n };\n\n this.#update((state) => {\n state.internalAccounts.accounts[account.id] = internalAccount;\n state.internalAccounts.selectedAccount = account.id;\n });\n\n this.messenger.publish(\n 'AccountsController:accountRenamed',\n internalAccount,\n );\n }\n\n #assertAccountCanBeRenamed(account: InternalAccount, accountName: string) {\n if (\n this.listMultichainAccounts().find(\n (internalAccount) =>\n internalAccount.metadata.name === accountName &&\n internalAccount.id !== account.id,\n )\n ) {\n throw new Error('Account name already exists');\n }\n }\n\n /**\n * Updates the metadata of the account with the given ID.\n *\n * @param accountId - The ID of the account for which the metadata will be updated.\n * @param metadata - The new metadata for the account.\n */\n updateAccountMetadata(\n accountId: string,\n metadata: Partial<InternalAccount['metadata']>,\n ): void {\n const account = this.getAccountExpect(accountId);\n\n if (metadata.name) {\n this.#assertAccountCanBeRenamed(account, metadata.name);\n }\n\n const internalAccount = {\n ...account,\n metadata: { ...account.metadata, ...metadata },\n };\n\n this.#update((state) => {\n state.internalAccounts.accounts[accountId] = internalAccount;\n });\n\n if (metadata.name) {\n this.messenger.publish(\n 'AccountsController:accountRenamed',\n internalAccount,\n );\n }\n }\n\n /**\n * Updates the internal accounts list by retrieving normal and snap accounts,\n * removing duplicates, and updating the metadata of each account.\n *\n * @returns A Promise that resolves when the accounts have been updated.\n */\n async updateAccounts(): Promise<void> {\n const keyringAccountIndexes = new Map<string, number>();\n\n const existingInternalAccounts = this.state.internalAccounts.accounts;\n const internalAccounts: AccountsControllerState['internalAccounts']['accounts'] =\n {};\n\n const { keyrings } = this.messenger.call('KeyringController:getState');\n for (const keyring of keyrings) {\n const keyringTypeName = keyringTypeToName(keyring.type);\n\n for (const address of keyring.accounts) {\n const internalAccount = this.#getInternalAccountFromAddressAndType(\n address,\n keyring,\n );\n\n // This should never really happen, but if for some reason we're not\n // able to get the Snap keyring reference, this would return an\n // undefined account.\n // So we just skip it, even though, this should not really happen.\n if (!internalAccount) {\n continue;\n }\n\n // Get current index for this keyring (we use human indexing, so start at 1).\n const keyringAccountIndex =\n keyringAccountIndexes.get(keyringTypeName) ?? 1;\n\n const existingAccount = existingInternalAccounts[internalAccount.id];\n internalAccounts[internalAccount.id] = {\n ...internalAccount,\n\n metadata: {\n ...internalAccount.metadata,\n\n // Re-use existing metadata if any.\n name:\n existingAccount?.metadata.name ??\n `${keyringTypeName} ${keyringAccountIndex}`,\n importTime: existingAccount?.metadata.importTime ?? Date.now(),\n lastSelected: existingAccount?.metadata.lastSelected ?? 0,\n },\n };\n\n // Increment the account index for this keyring.\n keyringAccountIndexes.set(keyringTypeName, keyringAccountIndex + 1);\n }\n }\n\n this.#update((state) => {\n state.internalAccounts.accounts = internalAccounts;\n });\n }\n\n /**\n * Loads the backup state of the accounts controller.\n *\n * @param backup - The backup state to load.\n */\n loadBackup(backup: AccountsControllerState): void {\n if (backup.internalAccounts) {\n this.update(\n (currentState: WritableDraft<AccountsControllerStrictState>) => {\n currentState.internalAccounts = backup.internalAccounts;\n },\n );\n }\n }\n\n /**\n * Gets an internal account representation for a non-Snap account.\n *\n * @param address - The address of the account.\n * @param keyring - The keyring object of the account.\n * @returns The generated internal account.\n */\n #getInternalAccountForNonSnapAccount(\n address: string,\n keyring: KeyringObject,\n ): InternalAccount {\n const id = getUUIDFromAddressOfNormalAccount(address);\n\n // We might have an account for this ID already, so we'll just re-use\n // the same metadata\n const account = this.getAccount(id);\n const metadata: InternalAccount['metadata'] = {\n name: account?.metadata.name ?? '',\n ...(account?.metadata.nameLastUpdatedAt\n ? {\n nameLastUpdatedAt: account?.metadata.nameLastUpdatedAt,\n }\n : {}),\n importTime: account?.metadata.importTime ?? Date.now(),\n lastSelected: account?.metadata.lastSelected ?? 0,\n keyring: {\n type: keyring.type,\n },\n };\n\n let options: InternalAccount['options'] = {};\n if (isHdKeyringType(keyring.type)) {\n // We need to find the account index from its HD keyring.\n const groupIndex = getEvmGroupIndexFromAddressIndex(keyring, address);\n\n // If for some reason, we cannot find this address, then the caller made a mistake\n // and it did not use the proper keyring object. For now, we do not fail and just\n // consider this account as \"simple account\".\n if (groupIndex !== undefined) {\n // NOTE: We are not using the `hdPath` from the associated keyring here and\n // getting the keyring instance here feels a bit overkill.\n // This will be naturally fixed once every keyring start using `KeyringAccount` and implement the keyring API.\n const derivationPath = getEvmDerivationPathForIndex(groupIndex);\n\n // Those are \"legacy options\" and they were used before `KeyringAccount` added\n // support for type options. We keep those temporarily until we update everything\n // to use the new typed options.\n const legacyOptions = {\n entropySource: keyring.metadata.id,\n derivationPath,\n groupIndex,\n };\n\n // New typed entropy options. This is required for multichain accounts.\n const entropyOptions: { entropy: KeyringAccountEntropyOptions } = {\n entropy: {\n type: KeyringAccountEntropyTypeOption.Mnemonic,\n id: keyring.metadata.id,\n derivationPath,\n groupIndex,\n },\n };\n\n options = {\n ...legacyOptions,\n ...entropyOptions,\n };\n }\n }\n\n return {\n id,\n address,\n options,\n methods: [\n EthMethod.PersonalSign,\n EthMethod.Sign,\n EthMethod.SignTransaction,\n EthMethod.SignTypedDataV1,\n EthMethod.SignTypedDataV3,\n EthMethod.SignTypedDataV4,\n ],\n scopes: [EthScope.Eoa],\n type: EthAccountType.Eoa,\n metadata,\n };\n }\n\n /**\n * Get Snap keyring from the keyring controller.\n *\n * @returns The Snap keyring if available.\n */\n #getSnapKeyring(): SnapKeyring | undefined {\n const [snapKeyring] = this.messenger.call(\n 'KeyringController:getKeyringsByType',\n SnapKeyring.type,\n );\n\n // Snap keyring is not available until the first account is created in the keyring\n // controller, so this might be undefined.\n return snapKeyring as SnapKeyring | undefined;\n }\n\n /**\n * Re-publish an account event.\n *\n * @param event - The event type. This is a unique identifier for this event.\n * @param payload - The event payload. The type of the parameters for each event handler must\n * match the type of this payload.\n * @template EventType - A Snap keyring event type.\n */\n #handleOnSnapKeyringAccountEvent<\n EventType extends AccountsControllerEvents['type'],\n >(\n event: EventType,\n ...payload: ExtractEventPayload<AccountsControllerEvents, EventType>\n ): void {\n this.messenger.publish(event, ...payload);\n }\n\n /**\n * Handles changes in the keyring state, specifically when new accounts are added or removed.\n *\n * @param keyringState - The new state of the keyring controller.\n * @param keyringState.isUnlocked - True if the keyrings are unlocked, false otherwise.\n * @param keyringState.keyrings - List of all keyrings.\n */\n #handleOnKeyringStateChange({\n isUnlocked,\n keyrings,\n }: KeyringControllerState): void {\n // TODO: Change when accountAdded event is added to the keyring controller.\n\n // We check for keyrings length to be greater than 0 because the extension client may try execute\n // submit password twice and clear the keyring state.\n // https://github.com/MetaMask/KeyringController/blob/2d73a4deed8d013913f6ef0c9f5c0bb7c614f7d3/src/KeyringController.ts#L910\n if (!isUnlocked || keyrings.length === 0) {\n return;\n }\n\n // State patches.\n const generatePatch = () => {\n return {\n previous: {} as Record<string, InternalAccount>,\n added: [] as {\n address: string;\n keyring: KeyringObject;\n }[],\n updated: [] as InternalAccount[],\n removed: [] as InternalAccount[],\n };\n };\n const patches = {\n snap: generatePatch(),\n normal: generatePatch(),\n };\n\n // Gets the patch object based on the keyring type (since Snap accounts and other accounts\n // are handled differently).\n const patchOf = (type: string) => {\n if (isSnapKeyringType(type)) {\n return patches.snap;\n }\n return patches.normal;\n };\n\n // Create a map (with lower-cased addresses) of all existing accounts.\n for (const account of this.listMultichainAccounts()) {\n const address = account.address.toLowerCase();\n const patch = patchOf(account.metadata.keyring.type);\n\n patch.previous[address] = account;\n }\n\n // Go over all keyring changes and create patches out of it.\n const addresses = new Set<string>();\n for (const keyring of keyrings) {\n const patch = patchOf(keyring.type);\n\n for (const accountAddress of keyring.accounts) {\n // Lower-case address to use it in the `previous` map.\n const address = accountAddress.toLowerCase();\n const account = patch.previous[address];\n\n if (account) {\n // If the account exists before, this might be an update.\n patch.updated.push(account);\n } else {\n // Otherwise, that's a new account.\n patch.added.push({\n address,\n keyring,\n });\n }\n\n // Keep track of those address to check for removed accounts later.\n addresses.add(address);\n }\n }\n\n // We might have accounts associated with removed keyrings, so we iterate\n // over all previous known accounts and check against the keyring addresses.\n for (const patch of [patches.snap, patches.normal]) {\n for (const [address, account] of Object.entries(patch.previous)) {\n // If a previous address is not part of the new addesses, then it got removed.\n if (!addresses.has(address)) {\n patch.removed.push(account);\n }\n }\n }\n\n // Diff that we will use to publish events afterward.\n const diff = {\n removed: [] as string[],\n added: [] as InternalAccount[],\n };\n\n this.#update(\n (state) => {\n const { internalAccounts } = state;\n\n for (const patch of [patches.snap, patches.normal]) {\n for (const account of patch.removed) {\n delete internalAccounts.accounts[account.id];\n\n diff.removed.push(account.id);\n }\n\n for (const added of patch.added) {\n const account = this.#getInternalAccountFromAddressAndType(\n added.address,\n added.keyring,\n );\n\n if (account) {\n // Re-compute the list of accounts everytime, so we can make sure new names\n // are also considered.\n const accounts = Object.values(\n internalAccounts.accounts,\n ) as InternalAccount[];\n\n // Get next account name available for this given keyring.\n const name = this.getNextAvailableAccountName(\n account.metadata.keyring.type,\n accounts,\n );\n\n // If it's the first account, we need to select it.\n const lastSelected =\n accounts.length === 0 ? this.#getLastSelectedIndex() : 0;\n\n internalAccounts.accounts[account.id] = {\n ...account,\n metadata: {\n ...account.metadata,\n name,\n importTime: Date.now(),\n lastSelected,\n },\n };\n\n diff.added.push(internalAccounts.accounts[account.id]);\n }\n }\n }\n },\n // Will get executed after the update, but before re-selecting an account in case\n // the current one is not valid anymore.\n () => {\n // Now publish events\n for (const id of diff.removed) {\n this.messenger.publish('AccountsController:accountRemoved', id);\n }\n\n for (const account of diff.added) {\n this.messenger.publish('AccountsController:accountAdded', account);\n }\n },\n );\n\n // NOTE: Since we also track \"updated\" accounts with our patches, we could fire a new event\n // like `accountUpdated` (we would still need to check if anything really changed on the account).\n }\n\n /**\n * Update the state and fixup the currently selected account.\n *\n * @param callback - Callback for updating state, passed a draft state object.\n * @param beforeAutoSelectAccount - Callback to be executed before auto-selecting an account\n * if the current one is no longer available.\n */\n #update(\n callback: (state: WritableDraft<AccountsControllerStrictState>) => void,\n beforeAutoSelectAccount?: () => void,\n ) {\n // The currently selected account might get deleted during the update, so keep track\n // of it before doing any change.\n const previouslySelectedAccount =\n this.state.internalAccounts.selectedAccount;\n\n this.update((state: WritableDraft<AccountsControllerStrictState>) => {\n callback(state);\n\n // If the account no longer exists (or none is selected), we need to re-select another one.\n const { internalAccounts } = state;\n if (!internalAccounts.accounts[previouslySelectedAccount]) {\n const accounts = Object.values(\n internalAccounts.accounts,\n ) as InternalAccount[];\n\n // Get the lastly selected account (according to the current accounts).\n const lastSelectedAccount = this.#getLastSelectedAccount(accounts);\n if (lastSelectedAccount) {\n internalAccounts.selectedAccount = lastSelectedAccount.id;\n internalAccounts.accounts[\n lastSelectedAccount.id\n ].metadata.lastSelected = this.#getLastSelectedIndex();\n } else {\n // It will be undefined if there are no accounts.\n internalAccounts.selectedAccount = '';\n }\n }\n });\n\n // We might want to do some pre-work before selecting a new account.\n beforeAutoSelectAccount?.();\n\n // Now, we compare the newly selected account, and we send event if different.\n const { selectedAccount } = this.state.internalAccounts;\n if (selectedAccount && selectedAccount !== previouslySelectedAccount) {\n const account = this.getSelectedMultichainAccount();\n\n // The account should always be defined at this point, since we have already checked for\n // `selectedAccount` to be non-empty.\n if (account) {\n if (isEvmAccountType(account.type)) {\n this.messenger.publish(\n 'AccountsController:selectedEvmAccountChange',\n account,\n );\n }\n this.messenger.publish(\n 'AccountsController:selectedAccountChange',\n account,\n );\n }\n }\n }\n\n /**\n * Handles the change in SnapControllerState by updating the metadata of accounts that have a snap enabled.\n *\n * @param snapState - The new SnapControllerState.\n */\n #handleOnSnapStateChange(snapState: SnapControllerState) {\n // Only check if Snaps changed in status.\n const { snaps } = snapState;\n\n const accounts: { id: string; enabled: boolean }[] = [];\n for (const account of this.listMultichainAccounts()) {\n if (account.metadata.snap) {\n const snap = snaps[account.metadata.snap.id as SnapId];\n\n if (snap) {\n const enabled = snap.enabled && !snap.blocked;\n const metadata = account.metadata.snap;\n\n if (metadata.enabled !== enabled) {\n accounts.push({ id: account.id, enabled });\n }\n } else {\n // If Snap could not be found on the state, we consider it disabled.\n accounts.push({ id: account.id, enabled: false });\n }\n }\n }\n\n if (accounts.length > 0) {\n this.update((state) => {\n for (const { id, enabled } of accounts) {\n const account = state.internalAccounts.accounts[id];\n\n if (account.metadata.snap) {\n account.metadata.snap.enabled = enabled;\n }\n }\n });\n }\n }\n\n /**\n * Returns the list of accounts for a given keyring type.\n *\n * @param keyringType - The type of keyring.\n * @param accounts - Accounts to filter by keyring type.\n * @returns The list of accounts associcated with this keyring type.\n */\n #getAccountsByKeyringType(keyringType: string, accounts?: InternalAccount[]) {\n return (accounts ?? this.listMultichainAccounts()).filter(\n (internalAccount) => {\n // We do consider `hd` and `simple` keyrings to be of same type. So we check those 2 types\n // to group those accounts together!\n if (isHdKeyringType(keyringType) || isSimpleKeyringType(keyringType)) {\n return (\n isHdKeyringType(internalAccount.metadata.keyring.type) ||\n isSimpleKeyringType(internalAccount.metadata.keyring.type)\n );\n }\n\n return internalAccount.metadata.keyring.type === keyringType;\n },\n );\n }\n\n /**\n * Returns the last selected account from the given array of accounts.\n *\n * @param accounts - An array of InternalAccount objects.\n * @returns The InternalAccount object that was last selected, or undefined if the array is empty.\n */\n #getLastSelectedAccount(\n accounts: InternalAccount[],\n ): InternalAccount | undefined {\n const [accountToSelect] = accounts.sort((accountA, accountB) => {\n // sort by lastSelected descending\n return (\n (accountB.metadata.lastSelected ?? 0) -\n (accountA.metadata.lastSelected ?? 0)\n );\n });\n\n return accountToSelect;\n }\n\n /**\n * Returns the next account number for a given keyring type.\n *\n * @param keyringType - The type of keyring.\n * @param accounts - Existing accounts to check for the next available account number.\n * @returns An object containing the account prefix and index to use.\n */\n getNextAvailableAccountName(\n keyringType: string = KeyringTypes.hd,\n accounts?: InternalAccount[],\n ): string {\n const keyringName = keyringTypeToName(keyringType);\n const keyringAccounts = this.#getAccountsByKeyringType(\n keyringType,\n accounts,\n );\n const lastDefaultIndexUsedForKeyringType = keyringAccounts.reduce(\n (maxInternalAccountIndex, internalAccount) => {\n // We **DO NOT USE** `\\d+` here to only consider valid \"human\"\n // number (rounded decimal number)\n const match = new RegExp(`${keyringName} ([0-9]+)$`, 'u').exec(\n internalAccount.metadata.name,\n );\n\n if (match) {\n // Quoting `RegExp.exec` documentation:\n // > The returned array has the matched text as the first item, and then one item for\n // > each capturing group of the matched text.\n // So use `match[1]` to get the captured value\n const internalAccountIndex = parseInt(match[1], 10);\n return Math.max(maxInternalAccountIndex, internalAccountIndex);\n }\n\n return maxInternalAccountIndex;\n },\n 0,\n );\n\n const index = Math.max(\n keyringAccounts.length + 1,\n lastDefaultIndexUsedForKeyringType + 1,\n );\n\n return `${keyringName} ${index}`;\n }\n\n /**\n * Retrieves the index value for `metadata.lastSelected`.\n *\n * @returns The index value.\n */\n #getLastSelectedIndex() {\n // NOTE: For now we use the current date, since we know this value\n // will always be higher than any already selected account index.\n return Date.now();\n }\n\n /**\n * Get an internal account given an address and a keyring type.\n *\n * If the account is not a Snap Keyring account, generates an internal account for it and adds it to the controller.\n * If the account is a Snap Keyring account, retrieves the account from the keyring and adds it to the controller.\n *\n * @param address - The address of the new account.\n * @param keyring - The keyring object of that new account.\n * @returns The newly generated/retrieved internal account.\n */\n #getInternalAccountFromAddressAndType(\n address: string,\n keyring: KeyringObject,\n ): InternalAccount | undefined {\n if (isSnapKeyringType(keyring.type)) {\n const snapKeyring = this.#getSnapKeyring();\n\n // We need the Snap keyring to retrieve the account from its address.\n if (!snapKeyring) {\n return undefined;\n }\n\n // This might be undefined if the Snap deleted the account before\n // reaching that point.\n let account = snapKeyring.getAccountByAddress(address);\n if (account) {\n // We force the copy here, to avoid mutating the reference returned by the Snap keyring.\n account = cloneDeep(account);\n\n // MIGRATION: To avoid any existing Snap account migration, we are\n // just \"adding\" the new typed options that we need for multichain\n // accounts. Ultimately, we would need a real Snap account migrations\n // (being handled by each Snaps).\n if (isHdSnapKeyringAccount(account)) {\n const options: HdSnapKeyringAccount['options'] = {\n ...account.options,\n entropy: {\n type: KeyringAccountEntropyTypeOption.Mnemonic,\n id: account.options.entropySource,\n groupIndex: account.options.index,\n derivationPath: account.options.derivationPath,\n },\n };\n // Inject the new typed options to the internal account copy.\n account.options = options;\n }\n }\n\n return account;\n }\n\n return this.#getInternalAccountForNonSnapAccount(address, keyring);\n }\n\n /**\n * Handles the change in multichain network by updating the selected account.\n *\n * @param id - The EVM client ID or non-EVM chain ID that changed.\n */\n #handleOnMultichainNetworkDidChange(id: NetworkClientId | CaipChainId) {\n let accountId: string;\n\n // We only support non-EVM Caip chain IDs at the moment. Ex Solana and Bitcoin\n // MultichainNetworkController will handle throwing an error if the Caip chain ID is not supported\n if (isCaipChainId(id)) {\n // Update selected account to non evm account\n const lastSelectedNonEvmAccount = this.getSelectedMultichainAccount(id);\n // @ts-expect-error - This should never be undefined, otherwise it's a bug that should be handled\n accountId = lastSelectedNonEvmAccount.id;\n } else {\n // Update selected account to evm account\n const lastSelectedEvmAccount = this.getSelectedAccount();\n accountId = lastSelectedEvmAccount.id;\n }\n\n if (this.state.internalAccounts.selectedAccount === accountId) {\n return;\n }\n\n this.update((currentState) => {\n currentState.internalAccounts.accounts[accountId].metadata.lastSelected =\n Date.now();\n currentState.internalAccounts.selectedAccount = accountId;\n });\n\n // DO NOT publish AccountsController:setSelectedAccount to prevent circular listener loops\n }\n\n /**\n * Subscribes to message events.\n */\n #subscribeToMessageEvents() {\n this.messenger.subscribe('SnapController:stateChange', (snapStateState) =>\n this.#handleOnSnapStateChange(snapStateState),\n );\n\n this.messenger.subscribe('KeyringController:stateChange', (keyringState) =>\n this.#handleOnKeyringStateChange(keyringState),\n );\n\n this.messenger.subscribe(\n 'SnapKeyring:accountAssetListUpdated',\n (snapAccountEvent) =>\n this.#handleOnSnapKeyringAccountEvent(\n 'AccountsController:accountAssetListUpdated',\n snapAccountEvent,\n ),\n );\n\n this.messenger.subscribe(\n 'SnapKeyring:accountBalancesUpdated',\n (snapAccountEvent) =>\n this.#handleOnSnapKeyringAccountEvent(\n 'AccountsController:accountBalancesUpdated',\n snapAccountEvent,\n ),\n );\n\n this.messenger.subscribe(\n 'SnapKeyring:accountTransactionsUpdated',\n (snapAccountEvent) =>\n this.#handleOnSnapKeyringAccountEvent(\n 'AccountsController:accountTransactionsUpdated',\n snapAccountEvent,\n ),\n );\n\n // Handle account change when multichain network is changed\n this.messenger.subscribe(\n 'MultichainNetworkController:networkDidChange',\n (id) => this.#handleOnMultichainNetworkDidChange(id),\n );\n }\n\n /**\n * Registers message handlers for the AccountsController.\n */\n #registerMessageHandlers() {\n this.messenger.registerActionHandler(\n `${controllerName}:setSelectedAccount`,\n this.setSelectedAccount.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `${controllerName}:listAccounts`,\n this.listAccounts.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `${controllerName}:listMultichainAccounts`,\n this.listMultichainAccounts.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `${controllerName}:setAccountName`,\n this.setAccountName.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `${controllerName}:setAccountNameAndSelectAccount`,\n this.setAccountNameAndSelectAccount.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `${controllerName}:updateAccounts`,\n this.updateAccounts.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `${controllerName}:getSelectedAccount`,\n this.getSelectedAccount.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `${controllerName}:getSelectedMultichainAccount`,\n this.getSelectedMultichainAccount.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `${controllerName}:getAccountByAddress`,\n this.getAccountByAddress.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `${controllerName}:getNextAvailableAccountName`,\n this.getNextAvailableAccountName.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `AccountsController:getAccount`,\n this.getAccount.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `AccountsController:getAccounts`,\n this.getAccounts.bind(this),\n );\n\n this.messenger.registerActionHandler(\n `AccountsController:updateAccountMetadata`,\n this.updateAccountMetadata.bind(this),\n );\n }\n}\n"]}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { type ControllerGetStateAction, type ControllerStateChangeEvent,
|
|
1
|
+
import { type ControllerGetStateAction, type ControllerStateChangeEvent, BaseController } from "@metamask/base-controller";
|
|
2
2
|
import { type SnapKeyringAccountAssetListUpdatedEvent, type SnapKeyringAccountBalancesUpdatedEvent, type SnapKeyringAccountTransactionsUpdatedEvent } from "@metamask/eth-snap-keyring";
|
|
3
3
|
import { EthAccountType, EthScope } from "@metamask/keyring-api";
|
|
4
4
|
import { type KeyringControllerGetKeyringsByTypeAction, type KeyringControllerStateChangeEvent, type KeyringControllerGetStateAction } from "@metamask/keyring-controller";
|
|
5
5
|
import type { InternalAccount } from "@metamask/keyring-internal-api";
|
|
6
|
+
import type { Messenger } from "@metamask/messenger";
|
|
6
7
|
import type { SnapStateChange } from "@metamask/snaps-controllers";
|
|
7
8
|
import { type CaipChainId } from "@metamask/utils";
|
|
8
9
|
import type { MultichainNetworkControllerNetworkDidChangeEvent } from "./types.cjs";
|
|
@@ -59,12 +60,16 @@ export type AccountsControllerGetAccountAction = {
|
|
|
59
60
|
type: `${typeof controllerName}:getAccount`;
|
|
60
61
|
handler: AccountsController['getAccount'];
|
|
61
62
|
};
|
|
63
|
+
export type AccountsControllerGetAccountsAction = {
|
|
64
|
+
type: `${typeof controllerName}:getAccounts`;
|
|
65
|
+
handler: AccountsController['getAccounts'];
|
|
66
|
+
};
|
|
62
67
|
export type AccountsControllerUpdateAccountMetadataAction = {
|
|
63
68
|
type: `${typeof controllerName}:updateAccountMetadata`;
|
|
64
69
|
handler: AccountsController['updateAccountMetadata'];
|
|
65
70
|
};
|
|
66
71
|
export type AllowedActions = KeyringControllerGetKeyringsByTypeAction | KeyringControllerGetStateAction;
|
|
67
|
-
export type AccountsControllerActions = AccountsControllerGetStateAction | AccountsControllerSetSelectedAccountAction | AccountsControllerListAccountsAction | AccountsControllerListMultichainAccountsAction | AccountsControllerSetAccountNameAction | AccountsControllerSetAccountNameAndSelectAccountAction | AccountsControllerUpdateAccountsAction | AccountsControllerGetAccountByAddressAction | AccountsControllerGetSelectedAccountAction | AccountsControllerGetNextAvailableAccountNameAction | AccountsControllerGetAccountAction | AccountsControllerGetSelectedMultichainAccountAction | AccountsControllerUpdateAccountMetadataAction;
|
|
72
|
+
export type AccountsControllerActions = AccountsControllerGetStateAction | AccountsControllerSetSelectedAccountAction | AccountsControllerListAccountsAction | AccountsControllerListMultichainAccountsAction | AccountsControllerSetAccountNameAction | AccountsControllerSetAccountNameAndSelectAccountAction | AccountsControllerUpdateAccountsAction | AccountsControllerGetAccountByAddressAction | AccountsControllerGetSelectedAccountAction | AccountsControllerGetNextAvailableAccountNameAction | AccountsControllerGetAccountAction | AccountsControllerGetAccountsAction | AccountsControllerGetSelectedMultichainAccountAction | AccountsControllerUpdateAccountMetadataAction;
|
|
68
73
|
export type AccountsControllerChangeEvent = ControllerStateChangeEvent<typeof controllerName, AccountsControllerState>;
|
|
69
74
|
export type AccountsControllerSelectedAccountChangeEvent = {
|
|
70
75
|
type: `${typeof controllerName}:selectedAccountChange`;
|
|
@@ -100,7 +105,7 @@ export type AccountsControllerAccountAssetListUpdatedEvent = {
|
|
|
100
105
|
};
|
|
101
106
|
export type AllowedEvents = SnapStateChange | KeyringControllerStateChangeEvent | SnapKeyringAccountAssetListUpdatedEvent | SnapKeyringAccountBalancesUpdatedEvent | SnapKeyringAccountTransactionsUpdatedEvent | MultichainNetworkControllerNetworkDidChangeEvent;
|
|
102
107
|
export type AccountsControllerEvents = AccountsControllerChangeEvent | AccountsControllerSelectedAccountChangeEvent | AccountsControllerSelectedEvmAccountChangeEvent | AccountsControllerAccountAddedEvent | AccountsControllerAccountRemovedEvent | AccountsControllerAccountRenamedEvent | AccountsControllerAccountBalancesUpdatesEvent | AccountsControllerAccountTransactionsUpdatedEvent | AccountsControllerAccountAssetListUpdatedEvent;
|
|
103
|
-
export type AccountsControllerMessenger =
|
|
108
|
+
export type AccountsControllerMessenger = Messenger<typeof controllerName, AccountsControllerActions | AllowedActions, AccountsControllerEvents | AllowedEvents>;
|
|
104
109
|
export declare const EMPTY_ACCOUNT: {
|
|
105
110
|
id: string;
|
|
106
111
|
address: string;
|
|
@@ -144,6 +149,13 @@ export declare class AccountsController extends BaseController<typeof controller
|
|
|
144
149
|
* @returns The internal account object, or undefined if the account does not exist.
|
|
145
150
|
*/
|
|
146
151
|
getAccount(accountId: string): InternalAccount | undefined;
|
|
152
|
+
/**
|
|
153
|
+
* Returns the internal account objects for the given account IDs, if they exist.
|
|
154
|
+
*
|
|
155
|
+
* @param accountIds - The IDs of the accounts to retrieve.
|
|
156
|
+
* @returns The internal account objects, or undefined if the account(s) do not exist.
|
|
157
|
+
*/
|
|
158
|
+
getAccounts(accountIds: string[]): (InternalAccount | undefined)[];
|
|
147
159
|
/**
|
|
148
160
|
* Returns an array of all evm internal accounts.
|
|
149
161
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AccountsController.d.cts","sourceRoot":"","sources":["../src/AccountsController.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,wBAAwB,EAC7B,KAAK,0BAA0B,
|
|
1
|
+
{"version":3,"file":"AccountsController.d.cts","sourceRoot":"","sources":["../src/AccountsController.ts"],"names":[],"mappings":"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"}
|