@metamask-previews/network-controller 27.0.0-preview-660aa34b → 27.0.0-preview-5dcbfa3d

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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Added
11
+
12
+ - Add MegaETH Testnet V2 support ([#7272](https://github.com/MetaMask/core/pull/7272))
13
+ - Add `megaeth-testnet-v2` in method `getDefaultCustomNetworkConfigurationsByChainId`
14
+ - Add `megaeth-testnet-v2` in type `AdditionalDefaultNetwork`
15
+
10
16
  ### Changed
11
17
 
12
18
  - Update the default set of Infura networks to include Monad Testnet ([#7067](https://github.com/MetaMask/core/pull/7067))
@@ -162,6 +162,7 @@ function getDefaultCustomNetworkConfigurationsByChainId() {
162
162
  // default networks.
163
163
  return {
164
164
  [controller_utils_1.ChainId['megaeth-testnet']]: getCustomNetworkConfiguration(controller_utils_1.CustomNetworkType['megaeth-testnet']),
165
+ [controller_utils_1.ChainId['megaeth-testnet-v2']]: getCustomNetworkConfiguration(controller_utils_1.CustomNetworkType['megaeth-testnet-v2']),
165
166
  [controller_utils_1.ChainId['monad-testnet']]: getCustomNetworkConfiguration(controller_utils_1.CustomNetworkType['monad-testnet']),
166
167
  };
167
168
  }