Skip to content

Commit c7f9f73

Browse files
Release/433.0.0 (#5954)
## Explanation This PR is to release the transaction controller to 57.3 where it include`SEI` into transaction controller <!-- Thanks for your contribution! Take a moment to answer these questions so that reviewers have the information they need to properly understand your changes: * What is the current state of things and why does it need to change? * What is the solution your changes offer and how does it work? * Are there any changes whose purpose might not obvious to those unfamiliar with the domain? * If your primary goal was to update one package but you found you had to update another one along the way, why did you do so? * If you had to upgrade a dependency, why did you do so? --> ## References <!-- Are there any issues that this pull request is tied to? Are there other links that reviewers should consult to understand these changes better? Are there client or consumer pull requests to adopt any breaking changes? For example: * Fixes #12345 * Related to #67890 --> ## Changelog <!-- THIS SECTION IS NO LONGER NEEDED. The process for updating changelogs has changed. Please consult the "Updating changelogs" section of the Contributing doc for more. --> ## Checklist - [ ] I've updated the test suite for new or updated code as appropriate - [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [ ] I've communicated my changes to consumers by [updating changelogs for packages I've changed](https://github.com/MetaMask/core/tree/main/docs/contributing.md#updating-changelogs), highlighting breaking changes as necessary - [ ] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes
1 parent 68a0d00 commit c7f9f73

File tree

14 files changed

+25
-14
lines changed

14 files changed

+25
-14
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": "432.0.0",
3+
"version": "433.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/assets-controllers/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- Bump `@metamask/controller-utils` to `^11.10.0` ([#5935](https://github.com/MetaMask/core/pull/5935))
1313
- Add `getErc20Balances` function within `TokenBalancesController` to support fetching ERC-20 token balances for a given address and token list ([#5925](https://github.com/MetaMask/core/pull/5925))
1414
- This modular service simplifies balance retrieval logic and can be reused across different parts of the controller
15+
- Bump `@metamask/transaction-controller` to `^57.3.0` ([#5954](https://github.com/MetaMask/core/pull/5954))
1516

1617
### Fixed
1718

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"@metamask/providers": "^22.1.0",
9292
"@metamask/snaps-controllers": "^12.3.1",
9393
"@metamask/snaps-sdk": "^7.1.0",
94-
"@metamask/transaction-controller": "^57.2.0",
94+
"@metamask/transaction-controller": "^57.3.0",
9595
"@types/jest": "^27.4.1",
9696
"@types/lodash": "^4.14.191",
9797
"@types/node": "^16.18.54",

packages/bridge-controller/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed
1111

1212
- Bump `@metamask/controller-utils` to `^11.10.0` ([#5935](https://github.com/MetaMask/core/pull/5935))
13+
- Bump `@metamask/transaction-controller` to `^57.3.0` ([#5954](https://github.com/MetaMask/core/pull/5954))
1314

1415
## [32.1.1]
1516

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"@metamask/remote-feature-flag-controller": "^1.6.0",
7474
"@metamask/snaps-controllers": "^12.3.1",
7575
"@metamask/superstruct": "^3.1.0",
76-
"@metamask/transaction-controller": "^57.2.0",
76+
"@metamask/transaction-controller": "^57.3.0",
7777
"@types/jest": "^27.4.1",
7878
"deepmerge": "^4.2.2",
7979
"jest": "^27.5.1",

packages/bridge-status-controller/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed
1111

1212
- Bump `@metamask/controller-utils` to `^11.10.0` ([#5935](https://github.com/MetaMask/core/pull/5935))
13+
- Bump `@metamask/transaction-controller` to `^57.3.0` ([#5954](https://github.com/MetaMask/core/pull/5954))
1314

1415
## [29.1.0]
1516

packages/bridge-status-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"@metamask/multichain-transactions-controller": "^2.0.0",
6666
"@metamask/network-controller": "^23.6.0",
6767
"@metamask/snaps-controllers": "^12.3.1",
68-
"@metamask/transaction-controller": "^57.2.0",
68+
"@metamask/transaction-controller": "^57.3.0",
6969
"@types/jest": "^27.4.1",
7070
"deepmerge": "^4.2.2",
7171
"jest": "^27.5.1",

packages/earn-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/transaction-controller` to `^57.3.0` ([#5954](https://github.com/MetaMask/core/pull/5954))
13+
1014
## [1.1.0]
1115

1216
### Changed

packages/earn-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"@metamask/accounts-controller": "^30.0.0",
5959
"@metamask/auto-changelog": "^3.4.4",
6060
"@metamask/network-controller": "^23.6.0",
61-
"@metamask/transaction-controller": "^57.2.0",
61+
"@metamask/transaction-controller": "^57.3.0",
6262
"@types/jest": "^27.4.1",
6363
"deepmerge": "^4.2.2",
6464
"jest": "^27.5.1",

packages/transaction-controller/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+
## [57.3.0]
11+
1012
### Added
1113

1214
- Add `SEI` network support ([#5694](https://github.com/MetaMask/core/pull/5694))
@@ -1666,7 +1668,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16661668
16671669
All changes listed after this point were applied to this package following the monorepo conversion.
16681670
1669-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@57.2.0...HEAD
1671+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@57.3.0...HEAD
1672+
[57.3.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@57.2.0...@metamask/transaction-controller@57.3.0
16701673
[57.2.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@57.1.0...@metamask/transaction-controller@57.2.0
16711674
[57.1.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@57.0.0...@metamask/transaction-controller@57.1.0
16721675
[57.0.0]: https://github.com/MetaMask/core/compare/@metamask/transaction-controller@56.3.0...@metamask/transaction-controller@57.0.0

0 commit comments

Comments
 (0)