@metamask-previews/network-controller 22.2.1-preview-cc687932 → 22.2.1-preview-a1eb992b
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 +7 -1
- package/dist/NetworkController.cjs +5 -1
- package/dist/NetworkController.cjs.map +1 -1
- package/dist/NetworkController.d.cts +4 -0
- package/dist/NetworkController.d.cts.map +1 -1
- package/dist/NetworkController.d.mts +4 -0
- package/dist/NetworkController.d.mts.map +1 -1
- package/dist/NetworkController.mjs +5 -1
- package/dist/NetworkController.mjs.map +1 -1
- package/dist/create-network-client.cjs +12 -12
- package/dist/create-network-client.cjs.map +1 -1
- package/dist/create-network-client.d.cts.map +1 -1
- package/dist/create-network-client.d.mts.map +1 -1
- package/dist/create-network-client.mjs +12 -12
- package/dist/create-network-client.mjs.map +1 -1
- package/dist/types.cjs.map +1 -1
- package/dist/types.d.cts +11 -6
- package/dist/types.d.cts.map +1 -1
- package/dist/types.d.mts +11 -6
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -17,11 +17,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
17
17
|
- The request returns a non-200 response
|
|
18
18
|
- Use exponential backoff / jitter when retrying requests to Infura and custom RPC endpoints ([#5290](https://github.com/MetaMask/core/pull/5290))
|
|
19
19
|
- As requests are retried, the delay between retries will increase exponentially (using random variance to prevent bursts)
|
|
20
|
+
- Add support for automatic failover when Infura is down ([#5630](https://github.com/MetaMask/core/pull/5630))
|
|
21
|
+
- An Infura RPC endpoint can now be configured with a list of failover URLs via `failoverEndpointUrls`.
|
|
22
|
+
- If, after many attempts, an Infura network is perceived to be down, the list of failover URLs will be tried in turn.
|
|
20
23
|
|
|
21
24
|
### Changed
|
|
22
25
|
|
|
23
26
|
- **BREAKING:** `NetworkController` constructor now takes two required options, `fetch` and `btoa` ([#5290](https://github.com/MetaMask/core/pull/5290))
|
|
24
|
-
- These are passed along to functions that create the JSON-RPC middleware
|
|
27
|
+
- These are passed along to functions that create the JSON-RPC middleware.
|
|
28
|
+
- **BREAKING:** Add required property `failoverEndpointUrls` to `InfuraRpcEndpoint` ([#5630](https://github.com/MetaMask/core/pull/5630))
|
|
29
|
+
- Migrating existing state to set `failoverEndpointUrls` for each Infura RPC endpoint is recommended.
|
|
30
|
+
- **BREAKING:** Add required property `failoverEndpointUrls` to `InfuraNetworkClientConfiguration` ([#5630](https://github.com/MetaMask/core/pull/5630))
|
|
25
31
|
- Synchronize retry logic and error handling behavior between Infura and custom RPC endpoints ([#5290](https://github.com/MetaMask/core/pull/5290))
|
|
26
32
|
- A request to a custom endpoint that returns a 418 response will no longer return a JSON-RPC response with the error "Request is being rate limited"
|
|
27
33
|
- A request to a custom endpoint that returns a 429 response now returns a JSON-RPC response with the error "Request is being rate limited"
|
|
@@ -123,6 +123,7 @@ function getDefaultNetworkConfigurationsByChainId() {
|
|
|
123
123
|
nativeCurrency: controller_utils_1.NetworksTicker[infuraNetworkType],
|
|
124
124
|
rpcEndpoints: [
|
|
125
125
|
{
|
|
126
|
+
failoverUrls: [],
|
|
126
127
|
networkClientId: infuraNetworkType,
|
|
127
128
|
type: RpcEndpointType.Infura,
|
|
128
129
|
url: rpcEndpointUrl,
|
|
@@ -464,7 +465,8 @@ class NetworkController extends base_controller_1.BaseController {
|
|
|
464
465
|
let updatedNetworkStatus;
|
|
465
466
|
let updatedIsEIP1559Compatible;
|
|
466
467
|
try {
|
|
467
|
-
updatedIsEIP1559Compatible =
|
|
468
|
+
updatedIsEIP1559Compatible =
|
|
469
|
+
await __classPrivateFieldGet(this, _NetworkController_instances, "m", _NetworkController_determineEIP1559Compatibility).call(this, networkClientId);
|
|
468
470
|
updatedNetworkStatus = constants_1.NetworkStatus.Available;
|
|
469
471
|
}
|
|
470
472
|
catch (error) {
|
|
@@ -1321,6 +1323,7 @@ async function _NetworkController_determineEIP1559Compatibility(networkClientId)
|
|
|
1321
1323
|
type: types_1.NetworkClientType.Infura,
|
|
1322
1324
|
chainId: networkFields.chainId,
|
|
1323
1325
|
network: addedRpcEndpoint.networkClientId,
|
|
1326
|
+
failoverEndpointUrls: addedRpcEndpoint.failoverUrls,
|
|
1324
1327
|
infuraProjectId: __classPrivateFieldGet(this, _NetworkController_infuraProjectId, "f"),
|
|
1325
1328
|
ticker: networkFields.nativeCurrency,
|
|
1326
1329
|
},
|
|
@@ -1388,6 +1391,7 @@ async function _NetworkController_determineEIP1559Compatibility(networkClientId)
|
|
|
1388
1391
|
networkClientConfiguration: {
|
|
1389
1392
|
type: types_1.NetworkClientType.Infura,
|
|
1390
1393
|
network: infuraNetworkName,
|
|
1394
|
+
failoverEndpointUrls: rpcEndpoint.failoverUrls,
|
|
1391
1395
|
infuraProjectId: __classPrivateFieldGet(this, _NetworkController_infuraProjectId, "f"),
|
|
1392
1396
|
chainId: networkConfiguration.chainId,
|
|
1393
1397
|
ticker: networkConfiguration.nativeCurrency,
|