@metamask-previews/multichain-account-service 0.8.0-preview-9873b6ef → 0.9.0-preview-463efec

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -4
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -7,19 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.9.0]
11
+
10
12
  ### Added
11
13
 
12
- - Add `createMultichainAccountWallet` method to create a new multichain account wallet from a mnemonic ([#6478](https://github.com/MetaMask/core/pull/6478))
13
- - An action handler was also registered for this method so that it can be called from the clients.
14
14
  - **BREAKING** Add additional allowed actions to the `MultichainAccountService` messenger
15
15
  - `KeyringController:getKeyringsByType` and `KeyringController:addNewKeyring` actions were added.
16
+ - Add `createMultichainAccountWallet` method to create a new multichain account wallet from a mnemonic ([#6478](https://github.com/MetaMask/core/pull/6478))
17
+ - An action handler was also registered for this method so that it can be called from the clients.
16
18
 
17
19
  ### Changed
18
20
 
19
21
  - **BREAKING:** Rename `MultichainAccountWallet.alignGroup` to `alignAccountsOf` ([#6595](https://github.com/MetaMask/core/pull/6595))
20
22
  - **BREAKING:** Rename `MultichainAccountGroup.align` to `alignAccounts` ([#6595](https://github.com/MetaMask/core/pull/6595))
23
+ - Add timeout and retry mechanism to EVM discovery ([#6609](https://github.com/MetaMask/core/pull/6609)), ([#6621](https://github.com/MetaMask/core/pull/6621))
21
24
  - Bump `@metamask/utils` from `^11.4.2` to `^11.8.0` ([#6588](https://github.com/MetaMask/core/pull/6588))
22
- - Add timeout & retry mechanism to EVM discovery ([#6609](https://github.com/MetaMask/core/pull/6609)), ([#6621](https://github.com/MetaMask/core/pull/6621))
25
+ - Bump `@metamask/base-controller` from `^8.3.0` to `^8.4.0` ([#6632](https://github.com/MetaMask/core/pull/6632))
23
26
 
24
27
  ## [0.8.0]
25
28
 
@@ -146,7 +149,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
146
149
  - Add `MultichainAccountService` ([#6141](https://github.com/MetaMask/core/pull/6141)), ([#6165](https://github.com/MetaMask/core/pull/6165))
147
150
  - This service manages multichain accounts/wallets.
148
151
 
149
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.8.0...HEAD
152
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.9.0...HEAD
153
+ [0.9.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.8.0...@metamask/multichain-account-service@0.9.0
150
154
  [0.8.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.7.0...@metamask/multichain-account-service@0.8.0
151
155
  [0.7.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.6.0...@metamask/multichain-account-service@0.7.0
152
156
  [0.6.0]: https://github.com/MetaMask/core/compare/@metamask/multichain-account-service@0.5.0...@metamask/multichain-account-service@0.6.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/multichain-account-service",
3
- "version": "0.8.0-preview-9873b6ef",
3
+ "version": "0.9.0-preview-463efec",
4
4
  "description": "Service to manage multichain accounts",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -47,7 +47,7 @@
47
47
  "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
48
48
  },
49
49
  "dependencies": {
50
- "@metamask/base-controller": "^8.3.0",
50
+ "@metamask/base-controller": "^8.4.0",
51
51
  "@metamask/eth-snap-keyring": "^17.0.0",
52
52
  "@metamask/key-tree": "^10.1.1",
53
53
  "@metamask/keyring-api": "^21.0.0",