@metamask-previews/network-controller 22.2.1-preview-a1eb992b → 22.2.1-preview-dbdf1da
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 +1 -7
- package/dist/NetworkController.cjs +1 -5
- package/dist/NetworkController.cjs.map +1 -1
- package/dist/NetworkController.d.cts +0 -4
- package/dist/NetworkController.d.cts.map +1 -1
- package/dist/NetworkController.d.mts +0 -4
- package/dist/NetworkController.d.mts.map +1 -1
- package/dist/NetworkController.mjs +1 -5
- 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 +6 -11
- package/dist/types.d.cts.map +1 -1
- package/dist/types.d.mts +6 -11
- 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,17 +17,11 @@ 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.
|
|
23
20
|
|
|
24
21
|
### Changed
|
|
25
22
|
|
|
26
23
|
- **BREAKING:** `NetworkController` constructor now takes two required options, `fetch` and `btoa` ([#5290](https://github.com/MetaMask/core/pull/5290))
|
|
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))
|
|
24
|
+
- These are passed along to functions that create the JSON-RPC middleware
|
|
31
25
|
- Synchronize retry logic and error handling behavior between Infura and custom RPC endpoints ([#5290](https://github.com/MetaMask/core/pull/5290))
|
|
32
26
|
- 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"
|
|
33
27
|
- 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,7 +123,6 @@ function getDefaultNetworkConfigurationsByChainId() {
|
|
|
123
123
|
nativeCurrency: controller_utils_1.NetworksTicker[infuraNetworkType],
|
|
124
124
|
rpcEndpoints: [
|
|
125
125
|
{
|
|
126
|
-
failoverUrls: [],
|
|
127
126
|
networkClientId: infuraNetworkType,
|
|
128
127
|
type: RpcEndpointType.Infura,
|
|
129
128
|
url: rpcEndpointUrl,
|
|
@@ -465,8 +464,7 @@ class NetworkController extends base_controller_1.BaseController {
|
|
|
465
464
|
let updatedNetworkStatus;
|
|
466
465
|
let updatedIsEIP1559Compatible;
|
|
467
466
|
try {
|
|
468
|
-
updatedIsEIP1559Compatible =
|
|
469
|
-
await __classPrivateFieldGet(this, _NetworkController_instances, "m", _NetworkController_determineEIP1559Compatibility).call(this, networkClientId);
|
|
467
|
+
updatedIsEIP1559Compatible = await __classPrivateFieldGet(this, _NetworkController_instances, "m", _NetworkController_determineEIP1559Compatibility).call(this, networkClientId);
|
|
470
468
|
updatedNetworkStatus = constants_1.NetworkStatus.Available;
|
|
471
469
|
}
|
|
472
470
|
catch (error) {
|
|
@@ -1323,7 +1321,6 @@ async function _NetworkController_determineEIP1559Compatibility(networkClientId)
|
|
|
1323
1321
|
type: types_1.NetworkClientType.Infura,
|
|
1324
1322
|
chainId: networkFields.chainId,
|
|
1325
1323
|
network: addedRpcEndpoint.networkClientId,
|
|
1326
|
-
failoverEndpointUrls: addedRpcEndpoint.failoverUrls,
|
|
1327
1324
|
infuraProjectId: __classPrivateFieldGet(this, _NetworkController_infuraProjectId, "f"),
|
|
1328
1325
|
ticker: networkFields.nativeCurrency,
|
|
1329
1326
|
},
|
|
@@ -1391,7 +1388,6 @@ async function _NetworkController_determineEIP1559Compatibility(networkClientId)
|
|
|
1391
1388
|
networkClientConfiguration: {
|
|
1392
1389
|
type: types_1.NetworkClientType.Infura,
|
|
1393
1390
|
network: infuraNetworkName,
|
|
1394
|
-
failoverEndpointUrls: rpcEndpoint.failoverUrls,
|
|
1395
1391
|
infuraProjectId: __classPrivateFieldGet(this, _NetworkController_infuraProjectId, "f"),
|
|
1396
1392
|
chainId: networkConfiguration.chainId,
|
|
1397
1393
|
ticker: networkConfiguration.nativeCurrency,
|