refactor!: addNewKeyring returns metadata instead of keyring#5372
Merged
mikesposito merged 11 commits intomainfrom Feb 25, 2025
Merged
refactor!: addNewKeyring returns metadata instead of keyring#5372mikesposito merged 11 commits intomainfrom
addNewKeyring returns metadata instead of keyring#5372mikesposito merged 11 commits intomainfrom
Conversation
mathieuartu
previously approved these changes
Feb 21, 2025
Contributor
mathieuartu
left a comment
There was a problem hiding this comment.
Owned files LGTM, thanks!
mikesposito
commented
Feb 21, 2025
| * @param keyring - The keyring instance to get the metadata for. | ||
| * @returns The keyring metadata. | ||
| */ | ||
| #getKeyringMetadata(keyring: unknown): KeyringMetadata { |
Member
Author
There was a problem hiding this comment.
I'm keeping this method as internal because consumers are not supposed to carry keyring instances around
mikesposito
commented
Feb 21, 2025
Comment on lines
+1517
to
+1518
| keyring: SelectedKeyring; | ||
| metadata: KeyringMetadata; |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
montelaidev
approved these changes
Feb 21, 2025
mathieuartu
approved these changes
Feb 25, 2025
github-merge-queue bot
pushed a commit
to MetaMask/metamask-extension
that referenced
this pull request
Mar 7, 2025
<!-- Please submit this PR as a draft initially. Do not mark it as "Ready for review" until the template has been completely filled out, and PR status checks have passed at least once. --> ## **Description** <!-- Write a short description of the changes included in this pull request, also include relevant motivation and context. Have in mind the following questions: 1. What is the reason for the change? 2. What is the improvement/solution? --> These packages are being bumped to their latest version: ### `@metamask/keyring-controller` - **BREAKING:** `addNewKeyring` method now returns `Promise<KeyringMetadata>` instead of `Promise<unknown>` ([#5372](MetaMask/core#5372)) - Consumers can use the returned `KeyringMetadata.id` to access the created keyring instance via `withKeyring`. - **BREAKING:** `withKeyring` method now requires a callback argument of type `({ keyring: SelectedKeyring; metadata: KeyringMetadata }) => Promise<CallbackResult>` ([#5372](MetaMask/core#5372)) - Bump `@metamask/keyring-internal-api` from `^4.0.3` to `^5.0.0` ([#5405](MetaMask/core#5405)) - Bump `@metamask/eth-hd-keyring` from `^10.0.0` to `^11.0.0` ([#5405](MetaMask/core#5405)) - Bump `@metamask/eth-simple-keyring` from `^8.1.0` to `^9.0.0` ([#5405](MetaMask/core#5405)) ### `@metamask/profile-sync-controller` - Bump `@metamask/keyring-internal-api` from `^4.0.3` to `^5.0.0` ([#5405](MetaMask/core#5405)) ### `@metamask/eth-ledger-bridge-keyring` - **BREAKING:** `LedgerKeyring` now implements the `Keyring` type ([#194](MetaMask/accounts#194)) - The class does not extend `EventEmitter` anymore. - The `LedgerKeyring.accounts` class variable is now a `readonly Hex[]` array. - The `addAccounts` method signature has been changed: - An `amount` number parameter is now required to specify the number of accounts to add. - The method now returns a promise resolving to an array of `Hex` addresses. - The `unlock` method now returns `Promise<Hex>`. - The `getAccounts` method now returns `Promise<Hex[]>`. - The `deserialize` method now requires a `LedgerKeyringSerializedState` typed parameter. - The `signTransaction` method now accepts an `Hex` typed value as the `address` parameter. - The `signMessage` method now accepts an `Hex` typed value as the `withAccount` parameter. - The `signPersonalMessage` method now accepts an `Hex` typed value as the `withAccount` parameter. - The `signTypedData` method now accepts an `Hex` typed value as the `withAccount` parameter. - The `unlockAccountByAddress` method now accepts an `Hex` typed value as the `address` parameter. [](https://codespaces.new/MetaMask/metamask-extension/pull/30637?quickstart=1) ## **Related issues** Fixes: ## **Manual testing steps** 1. Go to this page... 2. 3. ## **Screenshots/Recordings** <!-- If applicable, add screenshots and/or recordings to visualize the before and after of your change. --> ### **Before** <!-- [screenshots/recordings] --> ### **After** <!-- [screenshots/recordings] --> ## **Pre-merge author checklist** - [ ] I've followed [MetaMask Contributor Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask Extension Coding Standards](https://github.com/MetaMask/metamask-extension/blob/main/.github/guidelines/CODING_GUIDELINES.md). - [ ] I've completed the PR template to the best of my ability - [ ] I’ve included tests if applicable - [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format if applicable - [ ] I’ve applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-extension/blob/main/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors. ## **Pre-merge reviewer checklist** - [ ] I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed). - [ ] I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots. --------- Co-authored-by: MetaMask Bot <metamaskbot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Explanation
This PR changes the return type of
addNewKeyringto return a promise resolving inKeyringMetadatainstead of the keyring instance. The reason is that accessing keyring instances outside of KeyringController safeguards is considered unsafe.The
withKeyringmethod signature has also been changed: the operation callback now will be called with{keyring: SelectedKeyring; metadata: KeyringMetadata }instead ofSelectedKeyringReferences
addNewKeyringshould not return the keyring instance #5371Changelog
@metamask/keyring-controlleraddNewKeyringmethod now returnsPromise<KeyringMetadata>instead ofPromise<unknown>(#5372)KeyringMetadata.idto access the created keyring instance viawithKeyring.withKeyringmethod now requires a callback argument of type({ keyring: SelectedKeyring; metadata: KeyringMetadata }) => Promise<CallbackResult>(#5372)@metamask/profile-sync-controllerChecklist