Skip to content

Commit a9f7269

Browse files
authored
feat: add monad to network enablement controller (#6978)
## Explanation Adds monad to network enablement controller constants <!-- 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 --> ## 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 <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Adds Monad (chainId 0x8f / 143) to POPULAR_NETWORKS and updates the changelog. > > - **Network Enablement Controller**: > - Add `0x8f` (Monad, 143) to `POPULAR_NETWORKS` in `packages/network-enablement-controller/src/constants.ts`. > - **Changelog**: > - Document the addition under `Unreleased` in `packages/network-enablement-controller/CHANGELOG.md`. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit d098ad8. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 39b0487 commit a9f7269

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

packages/network-enablement-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+
### Added
11+
12+
- Add Monad network into constant POPULAR_NETWORKS ([#6978](https://github.com/MetaMask/core/pull/6978))
13+
1014
## [3.0.0]
1115

1216
### Changed

packages/network-enablement-controller/src/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ export const POPULAR_NETWORKS = [
1111
'0x144', // zkSync Era (324)
1212
'0x2a15c308d', // Palm (11297108109)
1313
'0x3e7', // HyperEVM (999)
14+
'0x8f', // Monad (143)
1415
];

0 commit comments

Comments
 (0)