Skip to content

Commit 7f02ea8

Browse files
Merge branch 'MMASSETS-773/add-base-enabled-by-default' of github.com:MetaMask/core into MMASSETS-773/add-base-enabled-by-default
2 parents 3dc4e02 + e270751 commit 7f02ea8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+2755
-180
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@
8585
/packages/permission-log-controller @MetaMask/wallet-api-platform-engineers @MetaMask/wallet-framework-engineers
8686
/packages/profile-sync-controller @MetaMask/identity
8787
/packages/remote-feature-flag-controller @MetaMask/extension-platform @MetaMask/mobile-platform
88+
/packages/foundryup @MetaMask/mobile-platform @MetaMask/extension-platform
8889

8990
## Package Release related
9091
/packages/accounts-controller/package.json @MetaMask/accounts-engineers @MetaMask/wallet-framework-engineers
@@ -151,5 +152,7 @@
151152
/packages/bridge-status-controller/CHANGELOG.md @MetaMask/swaps-engineers @MetaMask/wallet-framework-engineers
152153
/packages/app-metadata-controller/package.json @MetaMask/mobile-platform @MetaMask/wallet-framework-engineers
153154
/packages/app-metadata-controller/CHANGELOG.md @MetaMask/mobile-platform @MetaMask/wallet-framework-engineers
155+
/packages/foundryup/package.json @MetaMask/mobile-platform @MetaMask/extension-platform @MetaMask/wallet-framework-engineers
156+
/packages/foundryup/CHANGELOG.md @MetaMask/mobile-platform @MetaMask/extension-platform @MetaMask/wallet-framework-engineers
154157
/packages/seedless-onboarding-controller/package.json @MetaMask/web3auth @MetaMask/wallet-framework-engineers
155158
/packages/seedless-onboarding-controller/CHANGELOG.md @MetaMask/web3auth @MetaMask/wallet-framework-engineers

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Each package in this repository has its own README where you can find installati
3939
- [`@metamask/ens-controller`](packages/ens-controller)
4040
- [`@metamask/error-reporting-service`](packages/error-reporting-service)
4141
- [`@metamask/eth-json-rpc-provider`](packages/eth-json-rpc-provider)
42+
- [`@metamask/foundryup`](packages/foundryup)
4243
- [`@metamask/gas-fee-controller`](packages/gas-fee-controller)
4344
- [`@metamask/json-rpc-engine`](packages/json-rpc-engine)
4445
- [`@metamask/json-rpc-middleware-stream`](packages/json-rpc-middleware-stream)
@@ -96,6 +97,7 @@ linkStyle default opacity:0.5
9697
ens_controller(["@metamask/ens-controller"]);
9798
error_reporting_service(["@metamask/error-reporting-service"]);
9899
eth_json_rpc_provider(["@metamask/eth-json-rpc-provider"]);
100+
foundryup(["@metamask/foundryup"]);
99101
gas_fee_controller(["@metamask/gas-fee-controller"]);
100102
json_rpc_engine(["@metamask/json-rpc-engine"]);
101103
json_rpc_middleware_stream(["@metamask/json-rpc-middleware-stream"]);

eslint.config.mjs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,16 @@ const config = createConfig([
218218
sourceType: 'module',
219219
},
220220
},
221+
{
222+
files: ['packages/foundryup/**/*.{js,ts}'],
223+
rules: {
224+
'import-x/no-nodejs-modules': 'off',
225+
'n/no-unsupported-features/node-builtins': 'off',
226+
'n/no-missing-import': 'off',
227+
'n/no-restricted-import': 'off',
228+
'n/no-deprecated-api': 'off',
229+
},
230+
},
221231
]);
222232

223233
export default config;

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

packages/address-book-controller/CHANGELOG.md

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

88
## [Unreleased]
99

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

1214
- Add contact event system ([#5779](https://github.com/MetaMask/core/pull/5779))
1315
- Add `AddressBookControllerContactUpdatedEvent` and `AddressBookControllerContactDeletedEvent` types for contact events
1416
- Add `list` method on `AddressBookController` to get all address book entries as an array
1517
- Register message handlers for `list`, `set`, and `delete` actions
16-
- Add `lastUpdatedAt` property to `AddressBookEntry` to track when contacts were last modified
18+
- Add optional `lastUpdatedAt` property to `AddressBookEntry` to track when contacts were last modified
1719

1820
### Changed
1921

@@ -220,7 +222,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
220222

221223
All changes listed after this point were applied to this package following the monorepo conversion.
222224

223-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
225+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
226+
[6.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
224227
[6.0.3]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
225228
[6.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
226229
[6.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/address-book-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/address-book-controller",
3-
"version": "6.0.3",
3+
"version": "6.1.0",
44
"description": "Manages a list of recipient addresses associated with nicknames",
55
"keywords": [
66
"MetaMask",

packages/bridge-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [32.1.0]
11+
12+
### Added
13+
14+
- Include all invalid quote properties in sentry logs ([#5913](https://github.com/MetaMask/core/pull/5913))
15+
16+
## [32.0.1]
17+
1018
### Fixed
1119

1220
- Remove `error_message` property from QuotesRequested event payload ([#5900](https://github.com/MetaMask/core/pull/5900))
21+
- Fail gracefully when fee calculations return invalid value or throw errors
22+
- Filter out single quote if `TransactionController.getLayer1GasFee` returns `undefined` ([#5910](https://github.com/MetaMask/core/pull/5910))
23+
- Filter out single quote if an error is thrown by `getLayer1GasFee` ([#5910](https://github.com/MetaMask/core/pull/5910))
24+
- Filter out single quote if an error is thrown by Solana snap's `getFeeForTransaction` method ([#5910](https://github.com/MetaMask/core/pull/5910))
1325

1426
## [32.0.0]
1527

@@ -323,7 +335,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
323335

324336
- Initial release ([#5317](https://github.com/MetaMask/core/pull/5317))
325337

326-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
338+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
339+
[32.1.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
340+
[32.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
327341
[32.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
328342
[31.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
329343
[30.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/bridge-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/bridge-controller",
3-
"version": "32.0.0",
3+
"version": "32.1.0",
44
"description": "Manages bridge-related quote fetching functionality for MetaMask",
55
"keywords": [
66
"MetaMask",

0 commit comments

Comments
 (0)