Skip to content

Commit cb5c5fc

Browse files
authored
Release/727.0.0 (#7517)
Minor release of the `multichain-account-service` to add a `enabled` flag for account discovery on account provider configs. Initial release was here: - #7515 <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Releases multichain-account-service 4.1.0 (adds discovery enable flag and default provider configs) and updates dependent packages; bumps monorepo version to 727.0.0. > > - **Services**: > - **`@metamask/[email protected]`**: Add `config.discovery.enabled` and `{EVM,SOL,BTC,TRX}_ACCOUNT_PROVIDER_DEFAULT_CONFIG`. > - **Dependents**: > - Update `@metamask/multichain-account-service` to `^4.1.0` in `@metamask/account-tree-controller` and `@metamask/assets-controllers`. > - **Repo**: > - Bump root `version` to `727.0.0`. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit ca8cb3f. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 6232bc9 commit cb5c5fc

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/core-monorepo",
3-
"version": "726.0.0",
3+
"version": "727.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/account-tree-controller/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- In clients, it is now possible for multiple versions of these packages to exist in the dependency tree.
2020
- For example, this scenario would be valid: a client relies on `@metamask/controller-a` 1.0.0 and `@metamask/controller-b` 1.0.0, and `@metamask/controller-b` depends on `@metamask/controller-a` 1.1.0.
2121
- Note, however, that the versions specified in the client's `package.json` always "win", and you are expected to keep them up to date so as not to break controller and service intercommunication.
22-
- Bump `@metamask/multichain-account-service` from `^4.0.0` to `^4.0.1` ([#7437](https://github.com/MetaMask/core/pull/7437)
22+
- Bump `@metamask/multichain-account-service` from `^4.0.0` to `^4.1.0` ([#7437](https://github.com/MetaMask/core/pull/7437), ([#7515](https://github.com/MetaMask/core/pull/7515)
2323

2424
## [4.0.0]
2525

packages/account-tree-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"@metamask/base-controller": "^9.0.0",
5353
"@metamask/keyring-controller": "^25.0.0",
5454
"@metamask/messenger": "^0.3.0",
55-
"@metamask/multichain-account-service": "^4.0.1",
55+
"@metamask/multichain-account-service": "^4.1.0",
5656
"@metamask/profile-sync-controller": "^27.0.0",
5757
"@metamask/snaps-controllers": "^14.0.1",
5858
"@metamask/snaps-sdk": "^9.0.0",

packages/assets-controllers/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
- `KeyringController:lock` event sets controller to inactive state
2222
- `AccountTrackerController` now only refreshes balances for the newly added network on `NetworkController:networkAdded` event instead of all networks ([#7492](https://github.com/MetaMask/core/pull/7492))
2323
- Bump `@metamask/transaction-controller` from `^62.5.0` to `^62.7.0` ([#7494](https://github.com/MetaMask/core/pull/7494))
24+
- Bump `@metamask/multichain-account-service` from `^4.0.1` to `^4.1.0` ([#7515](https://github.com/MetaMask/core/pull/7515)
2425

2526
## [94.1.0]
2627

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"@metamask/keyring-controller": "^25.0.0",
6868
"@metamask/messenger": "^0.3.0",
6969
"@metamask/metamask-eth-abis": "^3.1.1",
70-
"@metamask/multichain-account-service": "^4.0.1",
70+
"@metamask/multichain-account-service": "^4.1.0",
7171
"@metamask/network-controller": "^27.0.0",
7272
"@metamask/permission-controller": "^12.1.1",
7373
"@metamask/phishing-controller": "^16.1.0",

packages/multichain-account-service/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [4.1.0]
11+
1012
### Added
1113

1214
- Add `config.discovery.enabled` option for all account provider config objects ([#7447](https://github.com/MetaMask/core/pull/7447))
@@ -306,7 +308,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
306308
- Add `MultichainAccountService` ([#6141](https://github.com/MetaMask/core/pull/6141)), ([#6165](https://github.com/MetaMask/core/pull/6165))
307309
- This service manages multichain accounts/wallets.
308310

309-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
311+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
312+
[4.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
310313
[4.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
311314
[4.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
312315
[3.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/multichain-account-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/multichain-account-service",
3-
"version": "4.0.1",
3+
"version": "4.1.0",
44
"description": "Service to manage multichain accounts",
55
"keywords": [
66
"MetaMask",

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2427,7 +2427,7 @@ __metadata:
24272427
"@metamask/keyring-api": "npm:^21.0.0"
24282428
"@metamask/keyring-controller": "npm:^25.0.0"
24292429
"@metamask/messenger": "npm:^0.3.0"
2430-
"@metamask/multichain-account-service": "npm:^4.0.1"
2430+
"@metamask/multichain-account-service": "npm:^4.1.0"
24312431
"@metamask/profile-sync-controller": "npm:^27.0.0"
24322432
"@metamask/providers": "npm:^22.1.0"
24332433
"@metamask/snaps-controllers": "npm:^14.0.1"
@@ -2650,7 +2650,7 @@ __metadata:
26502650
"@metamask/keyring-snap-client": "npm:^8.0.0"
26512651
"@metamask/messenger": "npm:^0.3.0"
26522652
"@metamask/metamask-eth-abis": "npm:^3.1.1"
2653-
"@metamask/multichain-account-service": "npm:^4.0.1"
2653+
"@metamask/multichain-account-service": "npm:^4.1.0"
26542654
"@metamask/network-controller": "npm:^27.0.0"
26552655
"@metamask/permission-controller": "npm:^12.1.1"
26562656
"@metamask/phishing-controller": "npm:^16.1.0"
@@ -4023,7 +4023,7 @@ __metadata:
40234023
languageName: node
40244024
linkType: hard
40254025

4026-
"@metamask/multichain-account-service@npm:^4.0.1, @metamask/multichain-account-service@workspace:packages/multichain-account-service":
4026+
"@metamask/multichain-account-service@npm:^4.1.0, @metamask/multichain-account-service@workspace:packages/multichain-account-service":
40274027
version: 0.0.0-use.local
40284028
resolution: "@metamask/multichain-account-service@workspace:packages/multichain-account-service"
40294029
dependencies:

0 commit comments

Comments
 (0)