@metamask-previews/keyring-controller 23.0.0-preview-0684712d → 23.1.0-preview-8029191
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 +10 -1
- package/dist/KeyringController.cjs +0 -1
- package/dist/KeyringController.cjs.map +1 -1
- package/dist/KeyringController.d.cts.map +1 -1
- package/dist/KeyringController.d.mts.map +1 -1
- package/dist/KeyringController.mjs +0 -1
- package/dist/KeyringController.mjs.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Bump `@metamask/utils` from `^11.4.2` to `^11.8.0` ([#6588](https://github.com/MetaMask/core/pull/6588))
|
|
13
|
+
|
|
14
|
+
## [23.1.0]
|
|
15
|
+
|
|
10
16
|
### Added
|
|
11
17
|
|
|
12
18
|
- Add `KeyringController:addNewKeyring` action ([#6439](https://github.com/MetaMask/core/pull/6439))
|
|
@@ -17,6 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
17
23
|
- Bump `@metamask/base-controller` from `^8.1.0` to `^8.3.0` ([#6355](https://github.com/MetaMask/core/pull/6355), [#6465](https://github.com/MetaMask/core/pull/6465))
|
|
18
24
|
- Bump `@metamask/keyring-api` from `^20.1.0` to `^21.0.0` ([#6560](https://github.com/MetaMask/core/pull/6560))
|
|
19
25
|
- Bump `@metamask/keyring-internal-api` from `^8.1.0` to `^9.0.0` ([#6560](https://github.com/MetaMask/core/pull/6560))
|
|
26
|
+
- Bump `@metamask/eth-hd-keyring` from `^12.0.0` to `13.0.0` ([#6566](https://github.com/MetaMask/core/pull/6566))
|
|
27
|
+
- Bump `@metamask/eth-simple-keyring` from `^10.0.0` to `11.0.0` ([#6566](https://github.com/MetaMask/core/pull/6566))
|
|
20
28
|
|
|
21
29
|
## [23.0.0]
|
|
22
30
|
|
|
@@ -854,7 +862,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
854
862
|
|
|
855
863
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
856
864
|
|
|
857
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@23.
|
|
865
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@23.1.0...HEAD
|
|
866
|
+
[23.1.0]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@23.0.0...@metamask/keyring-controller@23.1.0
|
|
858
867
|
[23.0.0]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@22.1.1...@metamask/keyring-controller@23.0.0
|
|
859
868
|
[22.1.1]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@22.1.0...@metamask/keyring-controller@22.1.1
|
|
860
869
|
[22.1.0]: https://github.com/MetaMask/core/compare/@metamask/keyring-controller@22.0.2...@metamask/keyring-controller@22.1.0
|
|
@@ -115,7 +115,6 @@ const defaultKeyringBuilders = [
|
|
|
115
115
|
// todo: keyring types are mismatched, this should be fixed in they keyrings themselves
|
|
116
116
|
// @ts-expect-error keyring types are mismatched
|
|
117
117
|
keyringBuilderFactory(eth_simple_keyring_1.default),
|
|
118
|
-
// @ts-expect-error keyring types are mismatched
|
|
119
118
|
keyringBuilderFactory(eth_hd_keyring_1.HdKeyring),
|
|
120
119
|
];
|
|
121
120
|
const getDefaultKeyringState = () => {
|