@metamask-previews/network-controller 26.0.0-preview-d6fe4594 → 26.0.0-preview-bc80feb8
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 +0 -16
- package/dist/NetworkController.cjs +0 -4
- package/dist/NetworkController.cjs.map +1 -1
- package/dist/NetworkController.d.cts +12 -135
- package/dist/NetworkController.d.cts.map +1 -1
- package/dist/NetworkController.d.mts +12 -135
- package/dist/NetworkController.d.mts.map +1 -1
- package/dist/NetworkController.mjs +0 -4
- package/dist/NetworkController.mjs.map +1 -1
- package/dist/create-auto-managed-network-client.cjs +1 -4
- package/dist/create-auto-managed-network-client.cjs.map +1 -1
- package/dist/create-auto-managed-network-client.d.cts +2 -5
- package/dist/create-auto-managed-network-client.d.cts.map +1 -1
- package/dist/create-auto-managed-network-client.d.mts +2 -5
- package/dist/create-auto-managed-network-client.d.mts.map +1 -1
- package/dist/create-auto-managed-network-client.mjs +1 -4
- package/dist/create-auto-managed-network-client.mjs.map +1 -1
- package/dist/create-network-client.cjs +42 -132
- package/dist/create-network-client.cjs.map +1 -1
- package/dist/create-network-client.d.cts +2 -5
- package/dist/create-network-client.d.cts.map +1 -1
- package/dist/create-network-client.d.mts +2 -5
- package/dist/create-network-client.d.mts.map +1 -1
- package/dist/create-network-client.mjs +42 -132
- package/dist/create-network-client.mjs.map +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/rpc-service/rpc-service-chain.cjs +39 -247
- package/dist/rpc-service/rpc-service-chain.cjs.map +1 -1
- package/dist/rpc-service/rpc-service-chain.d.cts +25 -106
- package/dist/rpc-service/rpc-service-chain.d.cts.map +1 -1
- package/dist/rpc-service/rpc-service-chain.d.mts +25 -106
- package/dist/rpc-service/rpc-service-chain.d.mts.map +1 -1
- package/dist/rpc-service/rpc-service-chain.mjs +39 -247
- package/dist/rpc-service/rpc-service-chain.mjs.map +1 -1
- package/dist/rpc-service/rpc-service-requestable.cjs.map +1 -1
- package/dist/rpc-service/rpc-service-requestable.d.cts +5 -15
- package/dist/rpc-service/rpc-service-requestable.d.cts.map +1 -1
- package/dist/rpc-service/rpc-service-requestable.d.mts +5 -15
- package/dist/rpc-service/rpc-service-requestable.d.mts.map +1 -1
- package/dist/rpc-service/rpc-service-requestable.mjs.map +1 -1
- package/dist/rpc-service/rpc-service.cjs +33 -65
- package/dist/rpc-service/rpc-service.cjs.map +1 -1
- package/dist/rpc-service/rpc-service.d.cts +24 -33
- package/dist/rpc-service/rpc-service.d.cts.map +1 -1
- package/dist/rpc-service/rpc-service.d.mts +24 -33
- package/dist/rpc-service/rpc-service.d.mts.map +1 -1
- package/dist/rpc-service/rpc-service.mjs +34 -66
- package/dist/rpc-service/rpc-service.mjs.map +1 -1
- package/dist/rpc-service/shared.cjs.map +1 -1
- package/dist/rpc-service/shared.d.cts +3 -25
- package/dist/rpc-service/shared.d.cts.map +1 -1
- package/dist/rpc-service/shared.d.mts +3 -25
- package/dist/rpc-service/shared.d.mts.map +1 -1
- package/dist/rpc-service/shared.mjs.map +1 -1
- package/package.json +1 -2
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import type { Json, JsonRpcParams, JsonRpcRequest, JsonRpcResponse } from "@metamask/utils";
|
|
2
2
|
import { RpcService } from "./rpc-service.mjs";
|
|
3
3
|
import type { RpcServiceOptions } from "./rpc-service.mjs";
|
|
4
|
-
import type {
|
|
4
|
+
import type { RpcServiceRequestable } from "./rpc-service-requestable.mjs";
|
|
5
|
+
import type { FetchOptions } from "./shared.mjs";
|
|
5
6
|
/**
|
|
6
|
-
* This class constructs
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
7
|
+
* This class constructs a chain of RpcService objects which represent a
|
|
8
|
+
* particular network. The first object in the chain is intended to be the
|
|
9
|
+
* primary way of reaching the network and the remaining objects are used as
|
|
10
|
+
* failovers.
|
|
10
11
|
*/
|
|
11
|
-
export declare class RpcServiceChain {
|
|
12
|
+
export declare class RpcServiceChain implements RpcServiceRequestable {
|
|
12
13
|
#private;
|
|
13
14
|
/**
|
|
14
15
|
* Constructs a new RpcServiceChain object.
|
|
@@ -17,120 +18,38 @@ export declare class RpcServiceChain {
|
|
|
17
18
|
* that you want to construct. Each object in this array is the same as
|
|
18
19
|
* {@link RpcServiceOptions}.
|
|
19
20
|
*/
|
|
20
|
-
constructor(rpcServiceConfigurations:
|
|
21
|
+
constructor(rpcServiceConfigurations: Omit<RpcServiceOptions, 'failoverService'>[]);
|
|
21
22
|
/**
|
|
22
|
-
*
|
|
23
|
+
* Listens for when any of the RPC services retry a request.
|
|
23
24
|
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
* @param listener - The callback to be called.
|
|
27
|
-
* @returns An object with a `dispose` method which can be used to unregister
|
|
28
|
-
* the event listener.
|
|
25
|
+
* @param listener - The callback to be called when the retry occurs.
|
|
26
|
+
* @returns What {@link RpcService.onRetry} returns.
|
|
29
27
|
*/
|
|
30
|
-
|
|
31
|
-
primaryEndpointUrl: string;
|
|
32
|
-
}>): {
|
|
28
|
+
onRetry(listener: Parameters<RpcService['onRetry']>[0]): {
|
|
33
29
|
dispose(): void;
|
|
34
30
|
};
|
|
35
31
|
/**
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
* RPC services in the chain, and all services' underlying circuits have
|
|
39
|
-
* broken.
|
|
40
|
-
*
|
|
41
|
-
* The callback will not be called if a service's circuit breaks but its
|
|
42
|
-
* failover does not. Use `onServiceBreak` if you'd like a lower level of
|
|
43
|
-
* granularity.
|
|
44
|
-
*
|
|
45
|
-
* @param listener - The callback to be called.
|
|
46
|
-
* @returns An object with a `dispose` method which can be used to unregister
|
|
47
|
-
* the callback.
|
|
48
|
-
*/
|
|
49
|
-
onBreak(listener: (data: ExcludeCockatielEventData<ExtractCockatielEventData<RpcService['onBreak']>, 'endpointUrl'>) => void): import("cockatiel").IDisposable;
|
|
50
|
-
/**
|
|
51
|
-
* Calls the provided callback each time when, for *any* of the RPC services
|
|
52
|
-
* in this chain, the maximum number of failed consecutive attempts to receive
|
|
53
|
-
* a 2xx response has been reached and the underlying circuit has broken. A
|
|
54
|
-
* more granular version of `onBreak`.
|
|
32
|
+
* Listens for when any of the RPC services retry the request too many times
|
|
33
|
+
* in a row.
|
|
55
34
|
*
|
|
56
|
-
* @param listener - The callback to be called.
|
|
57
|
-
* @returns
|
|
58
|
-
* the callback.
|
|
35
|
+
* @param listener - The callback to be called when the retry occurs.
|
|
36
|
+
* @returns What {@link RpcService.onBreak} returns.
|
|
59
37
|
*/
|
|
60
|
-
|
|
61
|
-
primaryEndpointUrl: string;
|
|
62
|
-
}>): {
|
|
38
|
+
onBreak(listener: Parameters<RpcService['onBreak']>[0]): {
|
|
63
39
|
dispose(): void;
|
|
64
40
|
};
|
|
65
41
|
/**
|
|
66
|
-
*
|
|
67
|
-
* all requests to RPC services in this chain have responded successfully in a
|
|
68
|
-
* timely fashion, and then one of the two conditions apply:
|
|
42
|
+
* Listens for when any of the RPC services send a slow request.
|
|
69
43
|
*
|
|
70
|
-
*
|
|
71
|
-
*
|
|
72
|
-
* 2. When a RPC service responds successfully, but the request takes longer
|
|
73
|
-
* than a set number of seconds to complete.
|
|
74
|
-
*
|
|
75
|
-
* Note that the callback will be called even if there are local connectivity
|
|
76
|
-
* issues which prevent requests from being initiated. This is intentional.
|
|
77
|
-
*
|
|
78
|
-
* Also note this callback will only be called if the RPC service chain as a
|
|
79
|
-
* whole is in a "degraded" state, and will then only be called once (e.g., it
|
|
80
|
-
* will not be called if a failover service falls into a degraded state, then
|
|
81
|
-
* the primary comes back online, but it is slow). Use `onServiceDegraded` if
|
|
82
|
-
* you'd like a lower level of granularity.
|
|
83
|
-
*
|
|
84
|
-
* @param listener - The callback to be called.
|
|
85
|
-
* @returns An object with a `dispose` method which can be used to unregister
|
|
86
|
-
* the callback.
|
|
44
|
+
* @param listener - The callback to be called when the retry occurs.
|
|
45
|
+
* @returns What {@link RpcService.onRetry} returns.
|
|
87
46
|
*/
|
|
88
|
-
onDegraded(listener:
|
|
89
|
-
/**
|
|
90
|
-
* Calls the provided callback each time one of the two conditions apply:
|
|
91
|
-
*
|
|
92
|
-
* 1. When a retriable error is encountered making a request to an RPC
|
|
93
|
-
* service, and the request is retried until a set maximum is reached.
|
|
94
|
-
* 2. When a RPC service responds successfully, but the request takes longer
|
|
95
|
-
* than a set number of seconds to complete.
|
|
96
|
-
*
|
|
97
|
-
* Note that the callback will be called even if there are local connectivity
|
|
98
|
-
* issues which prevent requests from being initiated. This is intentional.
|
|
99
|
-
*
|
|
100
|
-
* This is a more granular version of `onDegraded`. The callback will be
|
|
101
|
-
* called for each slow request to an RPC service. It may also be called again
|
|
102
|
-
* if a failover service falls into a degraded state, then the primary comes
|
|
103
|
-
* back online, but it is slow.
|
|
104
|
-
*
|
|
105
|
-
* @param listener - The callback to be called.
|
|
106
|
-
* @returns An object with a `dispose` method which can be used to unregister
|
|
107
|
-
* the callback.
|
|
108
|
-
*/
|
|
109
|
-
onServiceDegraded(listener: CockatielEventToEventListenerWithData<RpcService['onDegraded'], {
|
|
110
|
-
primaryEndpointUrl: string;
|
|
111
|
-
}>): {
|
|
47
|
+
onDegraded(listener: Parameters<RpcService['onDegraded']>[0]): {
|
|
112
48
|
dispose(): void;
|
|
113
49
|
};
|
|
114
50
|
/**
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
* 1. The first time that a 2xx request is made to any of the RPC services in
|
|
118
|
-
* this chain.
|
|
119
|
-
* 2. When requests to any the failover RPC services in this chain were
|
|
120
|
-
* failing such that they were degraded or their underyling circuits broke,
|
|
121
|
-
* but the first request to the primary succeeds again.
|
|
122
|
-
*
|
|
123
|
-
* Note this callback will only be called if the RPC service chain as a whole
|
|
124
|
-
* is in an "available" state.
|
|
125
|
-
*
|
|
126
|
-
* @param listener - The callback to be called.
|
|
127
|
-
* @returns An object with a `dispose` method which can be used to unregister
|
|
128
|
-
* the callback.
|
|
129
|
-
*/
|
|
130
|
-
onAvailable(listener: (data: ExcludeCockatielEventData<ExtractCockatielEventData<RpcService['onAvailable']>, 'endpointUrl'>) => void): import("cockatiel").IDisposable;
|
|
131
|
-
/**
|
|
132
|
-
* Uses the RPC services in the chain to make a request, using each service
|
|
133
|
-
* after the first as a fallback to the previous one as necessary.
|
|
51
|
+
* Makes a request to the first RPC service in the chain. If this service is
|
|
52
|
+
* down, then the request is forwarded to the next service in the chain, etc.
|
|
134
53
|
*
|
|
135
54
|
* This overload is specifically designed for `eth_getBlockByNumber`, which
|
|
136
55
|
* can return a `result` of `null` despite an expected `Result` being
|
|
@@ -150,8 +69,8 @@ export declare class RpcServiceChain {
|
|
|
150
69
|
method: 'eth_getBlockByNumber';
|
|
151
70
|
}, fetchOptions?: FetchOptions): Promise<JsonRpcResponse<Result> | JsonRpcResponse<null>>;
|
|
152
71
|
/**
|
|
153
|
-
*
|
|
154
|
-
*
|
|
72
|
+
* Makes a request to the first RPC service in the chain. If this service is
|
|
73
|
+
* down, then the request is forwarded to the next service in the chain, etc.
|
|
155
74
|
*
|
|
156
75
|
* This overload is designed for all RPC methods except for
|
|
157
76
|
* `eth_getBlockByNumber`, which are expected to return a `result` of the
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rpc-service-chain.d.mts","sourceRoot":"","sources":["../../src/rpc-service/rpc-service-chain.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"rpc-service-chain.d.mts","sourceRoot":"","sources":["../../src/rpc-service/rpc-service-chain.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,IAAI,EACJ,aAAa,EACb,cAAc,EACd,eAAe,EAChB,wBAAwB;AAEzB,OAAO,EAAE,UAAU,EAAE,0BAAsB;AAC3C,OAAO,KAAK,EAAE,iBAAiB,EAAE,0BAAsB;AACvD,OAAO,KAAK,EAAE,qBAAqB,EAAE,sCAAkC;AACvE,OAAO,KAAK,EAAE,YAAY,EAAE,qBAAiB;AAE7C;;;;;GAKG;AACH,qBAAa,eAAgB,YAAW,qBAAqB;;IAG3D;;;;;;OAMG;gBAED,wBAAwB,EAAE,IAAI,CAAC,iBAAiB,EAAE,iBAAiB,CAAC,EAAE;IAKxE;;;;;OAKG;IACH,OAAO,CAAC,QAAQ,EAAE,UAAU,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;;;IAYtD;;;;;;OAMG;IACH,OAAO,CAAC,QAAQ,EAAE,UAAU,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;;;IAYtD;;;;;OAKG;IACH,UAAU,CAAC,QAAQ,EAAE,UAAU,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC;;;IAY5D;;;;;;;;;;;;;;;;;OAiBG;IACG,OAAO,CAAC,MAAM,SAAS,aAAa,EAAE,MAAM,SAAS,IAAI,EAC7D,cAAc,EAAE,QAAQ,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,GAAG;QACjD,MAAM,EAAE,sBAAsB,CAAC;KAChC,EACD,YAAY,CAAC,EAAE,YAAY,GAC1B,OAAO,CAAC,eAAe,CAAC,MAAM,CAAC,GAAG,eAAe,CAAC,IAAI,CAAC,CAAC;IAE3D;;;;;;;;;;;;;;;;;OAiBG;IACG,OAAO,CAAC,MAAM,SAAS,aAAa,EAAE,MAAM,SAAS,IAAI,EAC7D,cAAc,EAAE,QAAQ,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,EAChD,YAAY,CAAC,EAAE,YAAY,GAC1B,OAAO,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;CAiCpC"}
|
|
@@ -1,33 +1,21 @@
|
|
|
1
|
+
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
|
|
2
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
3
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
4
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
5
|
+
};
|
|
1
6
|
var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
|
|
2
7
|
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
3
8
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
4
9
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
5
10
|
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
6
11
|
};
|
|
7
|
-
var
|
|
8
|
-
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
9
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
10
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
11
|
-
};
|
|
12
|
-
var _RpcServiceChain_onAvailableEventEmitter, _RpcServiceChain_onBreakEventEmitter, _RpcServiceChain_onDegradedEventEmitter, _RpcServiceChain_primaryService, _RpcServiceChain_services, _RpcServiceChain_status;
|
|
13
|
-
import { CircuitState, CockatielEventEmitter } from "@metamask/controller-utils";
|
|
12
|
+
var _RpcServiceChain_instances, _RpcServiceChain_services, _RpcServiceChain_buildRpcServiceChain;
|
|
14
13
|
import { RpcService } from "./rpc-service.mjs";
|
|
15
|
-
import { projectLogger, createModuleLogger } from "../logger.mjs";
|
|
16
|
-
const log = createModuleLogger(projectLogger, 'RpcServiceChain');
|
|
17
14
|
/**
|
|
18
|
-
*
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
Degraded: 'degraded',
|
|
23
|
-
Unknown: 'unknown',
|
|
24
|
-
Unavailable: 'unavailable',
|
|
25
|
-
};
|
|
26
|
-
/**
|
|
27
|
-
* This class constructs and manages requests to a chain of RpcService objects
|
|
28
|
-
* which represent RPC endpoints with which to access a particular network. The
|
|
29
|
-
* first service in the chain is intended to be the primary way of hitting the
|
|
30
|
-
* network and the remaining services are used as failovers.
|
|
15
|
+
* This class constructs a chain of RpcService objects which represent a
|
|
16
|
+
* particular network. The first object in the chain is intended to be the
|
|
17
|
+
* primary way of reaching the network and the remaining objects are used as
|
|
18
|
+
* failovers.
|
|
31
19
|
*/
|
|
32
20
|
export class RpcServiceChain {
|
|
33
21
|
/**
|
|
@@ -38,73 +26,18 @@ export class RpcServiceChain {
|
|
|
38
26
|
* {@link RpcServiceOptions}.
|
|
39
27
|
*/
|
|
40
28
|
constructor(rpcServiceConfigurations) {
|
|
41
|
-
|
|
42
|
-
* The event emitter for the `onAvailable` event.
|
|
43
|
-
*/
|
|
44
|
-
_RpcServiceChain_onAvailableEventEmitter.set(this, void 0);
|
|
45
|
-
/**
|
|
46
|
-
* The event emitter for the `onBreak` event.
|
|
47
|
-
*/
|
|
48
|
-
_RpcServiceChain_onBreakEventEmitter.set(this, void 0);
|
|
49
|
-
/**
|
|
50
|
-
* The event emitter for the `onDegraded` event.
|
|
51
|
-
*/
|
|
52
|
-
_RpcServiceChain_onDegradedEventEmitter.set(this, void 0);
|
|
53
|
-
/**
|
|
54
|
-
* The first RPC service that requests will be sent to.
|
|
55
|
-
*/
|
|
56
|
-
_RpcServiceChain_primaryService.set(this, void 0);
|
|
57
|
-
/**
|
|
58
|
-
* The RPC services in the chain.
|
|
59
|
-
*/
|
|
29
|
+
_RpcServiceChain_instances.add(this);
|
|
60
30
|
_RpcServiceChain_services.set(this, void 0);
|
|
61
|
-
|
|
62
|
-
* The status of the RPC service chain.
|
|
63
|
-
*/
|
|
64
|
-
_RpcServiceChain_status.set(this, void 0);
|
|
65
|
-
__classPrivateFieldSet(this, _RpcServiceChain_services, rpcServiceConfigurations.map((rpcServiceConfiguration) => new RpcService(rpcServiceConfiguration)), "f");
|
|
66
|
-
__classPrivateFieldSet(this, _RpcServiceChain_primaryService, __classPrivateFieldGet(this, _RpcServiceChain_services, "f")[0], "f");
|
|
67
|
-
__classPrivateFieldSet(this, _RpcServiceChain_status, STATUSES.Unknown, "f");
|
|
68
|
-
__classPrivateFieldSet(this, _RpcServiceChain_onBreakEventEmitter, new CockatielEventEmitter(), "f");
|
|
69
|
-
__classPrivateFieldSet(this, _RpcServiceChain_onDegradedEventEmitter, new CockatielEventEmitter(), "f");
|
|
70
|
-
for (const service of __classPrivateFieldGet(this, _RpcServiceChain_services, "f")) {
|
|
71
|
-
service.onDegraded((data) => {
|
|
72
|
-
if (__classPrivateFieldGet(this, _RpcServiceChain_status, "f") !== STATUSES.Degraded) {
|
|
73
|
-
log('Updating status to "degraded"', data);
|
|
74
|
-
__classPrivateFieldSet(this, _RpcServiceChain_status, STATUSES.Degraded, "f");
|
|
75
|
-
const { endpointUrl, ...rest } = data;
|
|
76
|
-
__classPrivateFieldGet(this, _RpcServiceChain_onDegradedEventEmitter, "f").emit(rest);
|
|
77
|
-
}
|
|
78
|
-
});
|
|
79
|
-
}
|
|
80
|
-
__classPrivateFieldSet(this, _RpcServiceChain_onAvailableEventEmitter, new CockatielEventEmitter(), "f");
|
|
81
|
-
for (const service of __classPrivateFieldGet(this, _RpcServiceChain_services, "f")) {
|
|
82
|
-
service.onAvailable((data) => {
|
|
83
|
-
if (__classPrivateFieldGet(this, _RpcServiceChain_status, "f") !== STATUSES.Available) {
|
|
84
|
-
log('Updating status to "available"', data);
|
|
85
|
-
__classPrivateFieldSet(this, _RpcServiceChain_status, STATUSES.Available, "f");
|
|
86
|
-
const { endpointUrl, ...rest } = data;
|
|
87
|
-
__classPrivateFieldGet(this, _RpcServiceChain_onAvailableEventEmitter, "f").emit(rest);
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
|
-
}
|
|
31
|
+
__classPrivateFieldSet(this, _RpcServiceChain_services, __classPrivateFieldGet(this, _RpcServiceChain_instances, "m", _RpcServiceChain_buildRpcServiceChain).call(this, rpcServiceConfigurations), "f");
|
|
91
32
|
}
|
|
92
33
|
/**
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
* This is mainly useful for tests.
|
|
34
|
+
* Listens for when any of the RPC services retry a request.
|
|
96
35
|
*
|
|
97
|
-
* @param listener - The callback to be called.
|
|
98
|
-
* @returns
|
|
99
|
-
* the event listener.
|
|
36
|
+
* @param listener - The callback to be called when the retry occurs.
|
|
37
|
+
* @returns What {@link RpcService.onRetry} returns.
|
|
100
38
|
*/
|
|
101
|
-
|
|
102
|
-
const disposables = __classPrivateFieldGet(this, _RpcServiceChain_services, "f").map((service) => service.onRetry(
|
|
103
|
-
listener({
|
|
104
|
-
...data,
|
|
105
|
-
primaryEndpointUrl: __classPrivateFieldGet(this, _RpcServiceChain_primaryService, "f").endpointUrl.toString(),
|
|
106
|
-
});
|
|
107
|
-
}));
|
|
39
|
+
onRetry(listener) {
|
|
40
|
+
const disposables = __classPrivateFieldGet(this, _RpcServiceChain_services, "f").map((service) => service.onRetry(listener));
|
|
108
41
|
return {
|
|
109
42
|
dispose() {
|
|
110
43
|
disposables.forEach((disposable) => disposable.dispose());
|
|
@@ -112,39 +45,14 @@ export class RpcServiceChain {
|
|
|
112
45
|
};
|
|
113
46
|
}
|
|
114
47
|
/**
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
* RPC services in the chain, and all services' underlying circuits have
|
|
118
|
-
* broken.
|
|
48
|
+
* Listens for when any of the RPC services retry the request too many times
|
|
49
|
+
* in a row.
|
|
119
50
|
*
|
|
120
|
-
* The callback
|
|
121
|
-
*
|
|
122
|
-
* granularity.
|
|
123
|
-
*
|
|
124
|
-
* @param listener - The callback to be called.
|
|
125
|
-
* @returns An object with a `dispose` method which can be used to unregister
|
|
126
|
-
* the callback.
|
|
51
|
+
* @param listener - The callback to be called when the retry occurs.
|
|
52
|
+
* @returns What {@link RpcService.onBreak} returns.
|
|
127
53
|
*/
|
|
128
54
|
onBreak(listener) {
|
|
129
|
-
|
|
130
|
-
}
|
|
131
|
-
/**
|
|
132
|
-
* Calls the provided callback each time when, for *any* of the RPC services
|
|
133
|
-
* in this chain, the maximum number of failed consecutive attempts to receive
|
|
134
|
-
* a 2xx response has been reached and the underlying circuit has broken. A
|
|
135
|
-
* more granular version of `onBreak`.
|
|
136
|
-
*
|
|
137
|
-
* @param listener - The callback to be called.
|
|
138
|
-
* @returns An object with a `dispose` method which can be used to unregister
|
|
139
|
-
* the callback.
|
|
140
|
-
*/
|
|
141
|
-
onServiceBreak(listener) {
|
|
142
|
-
const disposables = __classPrivateFieldGet(this, _RpcServiceChain_services, "f").map((service) => service.onBreak((data) => {
|
|
143
|
-
listener({
|
|
144
|
-
...data,
|
|
145
|
-
primaryEndpointUrl: __classPrivateFieldGet(this, _RpcServiceChain_primaryService, "f").endpointUrl.toString(),
|
|
146
|
-
});
|
|
147
|
-
}));
|
|
55
|
+
const disposables = __classPrivateFieldGet(this, _RpcServiceChain_services, "f").map((service) => service.onBreak(listener));
|
|
148
56
|
return {
|
|
149
57
|
dispose() {
|
|
150
58
|
disposables.forEach((disposable) => disposable.dispose());
|
|
@@ -152,149 +60,33 @@ export class RpcServiceChain {
|
|
|
152
60
|
};
|
|
153
61
|
}
|
|
154
62
|
/**
|
|
155
|
-
*
|
|
156
|
-
* all requests to RPC services in this chain have responded successfully in a
|
|
157
|
-
* timely fashion, and then one of the two conditions apply:
|
|
158
|
-
*
|
|
159
|
-
* 1. When a retriable error is encountered making a request to an RPC
|
|
160
|
-
* service, and the request is retried until a set maximum is reached.
|
|
161
|
-
* 2. When a RPC service responds successfully, but the request takes longer
|
|
162
|
-
* than a set number of seconds to complete.
|
|
163
|
-
*
|
|
164
|
-
* Note that the callback will be called even if there are local connectivity
|
|
165
|
-
* issues which prevent requests from being initiated. This is intentional.
|
|
63
|
+
* Listens for when any of the RPC services send a slow request.
|
|
166
64
|
*
|
|
167
|
-
*
|
|
168
|
-
*
|
|
169
|
-
* will not be called if a failover service falls into a degraded state, then
|
|
170
|
-
* the primary comes back online, but it is slow). Use `onServiceDegraded` if
|
|
171
|
-
* you'd like a lower level of granularity.
|
|
172
|
-
*
|
|
173
|
-
* @param listener - The callback to be called.
|
|
174
|
-
* @returns An object with a `dispose` method which can be used to unregister
|
|
175
|
-
* the callback.
|
|
65
|
+
* @param listener - The callback to be called when the retry occurs.
|
|
66
|
+
* @returns What {@link RpcService.onRetry} returns.
|
|
176
67
|
*/
|
|
177
68
|
onDegraded(listener) {
|
|
178
|
-
|
|
179
|
-
}
|
|
180
|
-
/**
|
|
181
|
-
* Calls the provided callback each time one of the two conditions apply:
|
|
182
|
-
*
|
|
183
|
-
* 1. When a retriable error is encountered making a request to an RPC
|
|
184
|
-
* service, and the request is retried until a set maximum is reached.
|
|
185
|
-
* 2. When a RPC service responds successfully, but the request takes longer
|
|
186
|
-
* than a set number of seconds to complete.
|
|
187
|
-
*
|
|
188
|
-
* Note that the callback will be called even if there are local connectivity
|
|
189
|
-
* issues which prevent requests from being initiated. This is intentional.
|
|
190
|
-
*
|
|
191
|
-
* This is a more granular version of `onDegraded`. The callback will be
|
|
192
|
-
* called for each slow request to an RPC service. It may also be called again
|
|
193
|
-
* if a failover service falls into a degraded state, then the primary comes
|
|
194
|
-
* back online, but it is slow.
|
|
195
|
-
*
|
|
196
|
-
* @param listener - The callback to be called.
|
|
197
|
-
* @returns An object with a `dispose` method which can be used to unregister
|
|
198
|
-
* the callback.
|
|
199
|
-
*/
|
|
200
|
-
onServiceDegraded(listener) {
|
|
201
|
-
const disposables = __classPrivateFieldGet(this, _RpcServiceChain_services, "f").map((service) => service.onDegraded((data) => {
|
|
202
|
-
listener({
|
|
203
|
-
...data,
|
|
204
|
-
primaryEndpointUrl: __classPrivateFieldGet(this, _RpcServiceChain_primaryService, "f").endpointUrl.toString(),
|
|
205
|
-
});
|
|
206
|
-
}));
|
|
69
|
+
const disposables = __classPrivateFieldGet(this, _RpcServiceChain_services, "f").map((service) => service.onDegraded(listener));
|
|
207
70
|
return {
|
|
208
71
|
dispose() {
|
|
209
72
|
disposables.forEach((disposable) => disposable.dispose());
|
|
210
73
|
},
|
|
211
74
|
};
|
|
212
75
|
}
|
|
213
|
-
/**
|
|
214
|
-
* Calls the provided callback in one of the following two conditions:
|
|
215
|
-
*
|
|
216
|
-
* 1. The first time that a 2xx request is made to any of the RPC services in
|
|
217
|
-
* this chain.
|
|
218
|
-
* 2. When requests to any the failover RPC services in this chain were
|
|
219
|
-
* failing such that they were degraded or their underyling circuits broke,
|
|
220
|
-
* but the first request to the primary succeeds again.
|
|
221
|
-
*
|
|
222
|
-
* Note this callback will only be called if the RPC service chain as a whole
|
|
223
|
-
* is in an "available" state.
|
|
224
|
-
*
|
|
225
|
-
* @param listener - The callback to be called.
|
|
226
|
-
* @returns An object with a `dispose` method which can be used to unregister
|
|
227
|
-
* the callback.
|
|
228
|
-
*/
|
|
229
|
-
onAvailable(listener) {
|
|
230
|
-
return __classPrivateFieldGet(this, _RpcServiceChain_onAvailableEventEmitter, "f").addListener(listener);
|
|
231
|
-
}
|
|
232
76
|
async request(jsonRpcRequest, fetchOptions = {}) {
|
|
233
|
-
|
|
234
|
-
// need arises. This is a bit confusing, so keep reading for more on how
|
|
235
|
-
// this works.
|
|
236
|
-
let availableServiceIndex;
|
|
237
|
-
let response;
|
|
238
|
-
for (const [i, service] of __classPrivateFieldGet(this, _RpcServiceChain_services, "f").entries()) {
|
|
239
|
-
log(`Trying service #${i + 1}...`);
|
|
240
|
-
const previousCircuitState = service.getCircuitState();
|
|
241
|
-
try {
|
|
242
|
-
// Try making the request through the service.
|
|
243
|
-
response = await service.request(jsonRpcRequest, fetchOptions);
|
|
244
|
-
log('Service successfully received request.');
|
|
245
|
-
availableServiceIndex = i;
|
|
246
|
-
break;
|
|
247
|
-
}
|
|
248
|
-
catch (error) {
|
|
249
|
-
// Oops, that didn't work.
|
|
250
|
-
// Capture this error so that we can handle it later.
|
|
251
|
-
const { lastError } = service;
|
|
252
|
-
const isCircuitOpen = service.getCircuitState() === CircuitState.Open;
|
|
253
|
-
log('Service failed! error =', error, 'lastError = ', lastError);
|
|
254
|
-
if (isCircuitOpen) {
|
|
255
|
-
if (i < __classPrivateFieldGet(this, _RpcServiceChain_services, "f").length - 1) {
|
|
256
|
-
log("This service's circuit is open. Proceeding to next service...");
|
|
257
|
-
continue;
|
|
258
|
-
}
|
|
259
|
-
if (previousCircuitState !== CircuitState.Open &&
|
|
260
|
-
__classPrivateFieldGet(this, _RpcServiceChain_status, "f") !== STATUSES.Unavailable &&
|
|
261
|
-
lastError !== undefined) {
|
|
262
|
-
// If the service's circuit just broke and it's the last one in the
|
|
263
|
-
// chain, then trigger the onBreak event. (But if for some reason we
|
|
264
|
-
// have already done this, then don't do it.)
|
|
265
|
-
log('This service\'s circuit just opened and it is the last service. Updating status to "unavailable" and triggering onBreak.');
|
|
266
|
-
__classPrivateFieldSet(this, _RpcServiceChain_status, STATUSES.Unavailable, "f");
|
|
267
|
-
__classPrivateFieldGet(this, _RpcServiceChain_onBreakEventEmitter, "f").emit({
|
|
268
|
-
error: lastError,
|
|
269
|
-
});
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
// The service failed, and we throw whatever the error is. The calling
|
|
273
|
-
// code can try again if it so desires.
|
|
274
|
-
log(`${isCircuitOpen ? '' : "This service's circuit is closed. "}Re-throwing error.`);
|
|
275
|
-
throw error;
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
if (response) {
|
|
279
|
-
// If one of the services is available, reset all of the circuits of the
|
|
280
|
-
// following services. If we didn't do this and the service became
|
|
281
|
-
// unavailable in the future, and any of the failovers' circuits were
|
|
282
|
-
// open (due to previous failures), we would receive a "circuit broken"
|
|
283
|
-
// error when we attempted to divert traffic to the failovers again.
|
|
284
|
-
//
|
|
285
|
-
if (availableServiceIndex !== undefined) {
|
|
286
|
-
for (const [i, service] of [...__classPrivateFieldGet(this, _RpcServiceChain_services, "f").entries()].slice(availableServiceIndex + 1)) {
|
|
287
|
-
log(`Resetting policy for service #${i + 1}.`);
|
|
288
|
-
service.resetPolicy();
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
return response;
|
|
292
|
-
}
|
|
293
|
-
// The only way we can end up here is if there are no services to loop over.
|
|
294
|
-
// That is not possible due to the types on the constructor, but TypeScript
|
|
295
|
-
// doesn't know this, so we have to appease it.
|
|
296
|
-
throw new Error('Nothing to return');
|
|
77
|
+
return __classPrivateFieldGet(this, _RpcServiceChain_services, "f")[0].request(jsonRpcRequest, fetchOptions);
|
|
297
78
|
}
|
|
298
79
|
}
|
|
299
|
-
|
|
80
|
+
_RpcServiceChain_services = new WeakMap(), _RpcServiceChain_instances = new WeakSet(), _RpcServiceChain_buildRpcServiceChain = function _RpcServiceChain_buildRpcServiceChain(rpcServiceConfigurations) {
|
|
81
|
+
return [...rpcServiceConfigurations]
|
|
82
|
+
.reverse()
|
|
83
|
+
.reduce((workingServices, serviceConfiguration, index) => {
|
|
84
|
+
const failoverService = index > 0 ? workingServices[0] : undefined;
|
|
85
|
+
const service = new RpcService({
|
|
86
|
+
...serviceConfiguration,
|
|
87
|
+
failoverService,
|
|
88
|
+
});
|
|
89
|
+
return [service, ...workingServices];
|
|
90
|
+
}, []);
|
|
91
|
+
};
|
|
300
92
|
//# sourceMappingURL=rpc-service-chain.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rpc-service-chain.mjs","sourceRoot":"","sources":["../../src/rpc-service/rpc-service-chain.ts"],"names":[],"mappings":"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","sourcesContent":["import {\n CircuitState,\n CockatielEventEmitter,\n} from '@metamask/controller-utils';\nimport type {\n Json,\n JsonRpcParams,\n JsonRpcRequest,\n JsonRpcResponse,\n} from '@metamask/utils';\n\nimport { RpcService } from './rpc-service';\nimport type { RpcServiceOptions } from './rpc-service';\nimport type {\n CockatielEventToEventListenerWithData,\n ExcludeCockatielEventData,\n ExtractCockatielEventData,\n FetchOptions,\n} from './shared';\nimport { projectLogger, createModuleLogger } from '../logger';\n\nconst log = createModuleLogger(projectLogger, 'RpcServiceChain');\n\n/**\n * Statuses that the RPC service chain can be in.\n */\nconst STATUSES = {\n Available: 'available',\n Degraded: 'degraded',\n Unknown: 'unknown',\n Unavailable: 'unavailable',\n} as const;\n\n/**\n * Statuses that the RPC service chain can be in.\n */\ntype Status = (typeof STATUSES)[keyof typeof STATUSES];\n\n/**\n * This class constructs and manages requests to a chain of RpcService objects\n * which represent RPC endpoints with which to access a particular network. The\n * first service in the chain is intended to be the primary way of hitting the\n * network and the remaining services are used as failovers.\n */\nexport class RpcServiceChain {\n /**\n * The event emitter for the `onAvailable` event.\n */\n readonly #onAvailableEventEmitter: CockatielEventEmitter<\n ExcludeCockatielEventData<\n ExtractCockatielEventData<RpcService['onAvailable']>,\n 'endpointUrl'\n >\n >;\n\n /**\n * The event emitter for the `onBreak` event.\n */\n readonly #onBreakEventEmitter: CockatielEventEmitter<\n ExcludeCockatielEventData<\n ExtractCockatielEventData<RpcService['onBreak']>,\n 'endpointUrl'\n >\n >;\n\n /**\n * The event emitter for the `onDegraded` event.\n */\n readonly #onDegradedEventEmitter: CockatielEventEmitter<\n ExcludeCockatielEventData<\n ExtractCockatielEventData<RpcService['onDegraded']>,\n 'endpointUrl'\n >\n >;\n\n /**\n * The first RPC service that requests will be sent to.\n */\n readonly #primaryService: RpcService;\n\n /**\n * The RPC services in the chain.\n */\n readonly #services: RpcService[];\n\n /**\n * The status of the RPC service chain.\n */\n #status: Status;\n\n /**\n * Constructs a new RpcServiceChain object.\n *\n * @param rpcServiceConfigurations - The options for the RPC services\n * that you want to construct. Each object in this array is the same as\n * {@link RpcServiceOptions}.\n */\n constructor(\n rpcServiceConfigurations: [RpcServiceOptions, ...RpcServiceOptions[]],\n ) {\n this.#services = rpcServiceConfigurations.map(\n (rpcServiceConfiguration) => new RpcService(rpcServiceConfiguration),\n );\n this.#primaryService = this.#services[0];\n\n this.#status = STATUSES.Unknown;\n this.#onBreakEventEmitter = new CockatielEventEmitter<\n ExcludeCockatielEventData<\n ExtractCockatielEventData<RpcService['onBreak']>,\n 'endpointUrl'\n >\n >();\n\n this.#onDegradedEventEmitter = new CockatielEventEmitter<\n ExcludeCockatielEventData<\n ExtractCockatielEventData<RpcService['onDegraded']>,\n 'endpointUrl'\n >\n >();\n for (const service of this.#services) {\n service.onDegraded((data) => {\n if (this.#status !== STATUSES.Degraded) {\n log('Updating status to \"degraded\"', data);\n this.#status = STATUSES.Degraded;\n const { endpointUrl, ...rest } = data;\n this.#onDegradedEventEmitter.emit(rest);\n }\n });\n }\n\n this.#onAvailableEventEmitter = new CockatielEventEmitter<\n ExcludeCockatielEventData<\n ExtractCockatielEventData<RpcService['onAvailable']>,\n 'endpointUrl'\n >\n >();\n for (const service of this.#services) {\n service.onAvailable((data) => {\n if (this.#status !== STATUSES.Available) {\n log('Updating status to \"available\"', data);\n this.#status = STATUSES.Available;\n const { endpointUrl, ...rest } = data;\n this.#onAvailableEventEmitter.emit(rest);\n }\n });\n }\n }\n\n /**\n * Calls the provided callback when any of the RPC services is retried.\n *\n * This is mainly useful for tests.\n *\n * @param listener - The callback to be called.\n * @returns An object with a `dispose` method which can be used to unregister\n * the event listener.\n */\n onServiceRetry(\n listener: CockatielEventToEventListenerWithData<\n RpcService['onRetry'],\n { primaryEndpointUrl: string }\n >,\n ) {\n const disposables = this.#services.map((service) =>\n service.onRetry((data) => {\n listener({\n ...data,\n primaryEndpointUrl: this.#primaryService.endpointUrl.toString(),\n });\n }),\n );\n\n return {\n dispose() {\n disposables.forEach((disposable) => disposable.dispose());\n },\n };\n }\n\n /**\n * Calls the provided callback only when the maximum number of failed\n * consecutive attempts to receive a 2xx response has been reached for all\n * RPC services in the chain, and all services' underlying circuits have\n * broken.\n *\n * The callback will not be called if a service's circuit breaks but its\n * failover does not. Use `onServiceBreak` if you'd like a lower level of\n * granularity.\n *\n * @param listener - The callback to be called.\n * @returns An object with a `dispose` method which can be used to unregister\n * the callback.\n */\n onBreak(\n listener: (\n data: ExcludeCockatielEventData<\n ExtractCockatielEventData<RpcService['onBreak']>,\n 'endpointUrl'\n >,\n ) => void,\n ) {\n return this.#onBreakEventEmitter.addListener(listener);\n }\n\n /**\n * Calls the provided callback each time when, for *any* of the RPC services\n * in this chain, the maximum number of failed consecutive attempts to receive\n * a 2xx response has been reached and the underlying circuit has broken. A\n * more granular version of `onBreak`.\n *\n * @param listener - The callback to be called.\n * @returns An object with a `dispose` method which can be used to unregister\n * the callback.\n */\n onServiceBreak(\n listener: CockatielEventToEventListenerWithData<\n RpcService['onBreak'],\n { primaryEndpointUrl: string }\n >,\n ) {\n const disposables = this.#services.map((service) =>\n service.onBreak((data) => {\n listener({\n ...data,\n primaryEndpointUrl: this.#primaryService.endpointUrl.toString(),\n });\n }),\n );\n\n return {\n dispose() {\n disposables.forEach((disposable) => disposable.dispose());\n },\n };\n }\n\n /**\n * Calls the provided callback if no requests have been initiated yet or\n * all requests to RPC services in this chain have responded successfully in a\n * timely fashion, and then one of the two conditions apply:\n *\n * 1. When a retriable error is encountered making a request to an RPC\n * service, and the request is retried until a set maximum is reached.\n * 2. When a RPC service responds successfully, but the request takes longer\n * than a set number of seconds to complete.\n *\n * Note that the callback will be called even if there are local connectivity\n * issues which prevent requests from being initiated. This is intentional.\n *\n * Also note this callback will only be called if the RPC service chain as a\n * whole is in a \"degraded\" state, and will then only be called once (e.g., it\n * will not be called if a failover service falls into a degraded state, then\n * the primary comes back online, but it is slow). Use `onServiceDegraded` if\n * you'd like a lower level of granularity.\n *\n * @param listener - The callback to be called.\n * @returns An object with a `dispose` method which can be used to unregister\n * the callback.\n */\n onDegraded(\n listener: (\n data: ExcludeCockatielEventData<\n ExtractCockatielEventData<RpcService['onDegraded']>,\n 'endpointUrl'\n >,\n ) => void,\n ) {\n return this.#onDegradedEventEmitter.addListener(listener);\n }\n\n /**\n * Calls the provided callback each time one of the two conditions apply:\n *\n * 1. When a retriable error is encountered making a request to an RPC\n * service, and the request is retried until a set maximum is reached.\n * 2. When a RPC service responds successfully, but the request takes longer\n * than a set number of seconds to complete.\n *\n * Note that the callback will be called even if there are local connectivity\n * issues which prevent requests from being initiated. This is intentional.\n *\n * This is a more granular version of `onDegraded`. The callback will be\n * called for each slow request to an RPC service. It may also be called again\n * if a failover service falls into a degraded state, then the primary comes\n * back online, but it is slow.\n *\n * @param listener - The callback to be called.\n * @returns An object with a `dispose` method which can be used to unregister\n * the callback.\n */\n onServiceDegraded(\n listener: CockatielEventToEventListenerWithData<\n RpcService['onDegraded'],\n { primaryEndpointUrl: string }\n >,\n ) {\n const disposables = this.#services.map((service) =>\n service.onDegraded((data) => {\n listener({\n ...data,\n primaryEndpointUrl: this.#primaryService.endpointUrl.toString(),\n });\n }),\n );\n\n return {\n dispose() {\n disposables.forEach((disposable) => disposable.dispose());\n },\n };\n }\n\n /**\n * Calls the provided callback in one of the following two conditions:\n *\n * 1. The first time that a 2xx request is made to any of the RPC services in\n * this chain.\n * 2. When requests to any the failover RPC services in this chain were\n * failing such that they were degraded or their underyling circuits broke,\n * but the first request to the primary succeeds again.\n *\n * Note this callback will only be called if the RPC service chain as a whole\n * is in an \"available\" state.\n *\n * @param listener - The callback to be called.\n * @returns An object with a `dispose` method which can be used to unregister\n * the callback.\n */\n onAvailable(\n listener: (\n data: ExcludeCockatielEventData<\n ExtractCockatielEventData<RpcService['onAvailable']>,\n 'endpointUrl'\n >,\n ) => void,\n ) {\n return this.#onAvailableEventEmitter.addListener(listener);\n }\n\n /**\n * Uses the RPC services in the chain to make a request, using each service\n * after the first as a fallback to the previous one as necessary.\n *\n * This overload is specifically designed for `eth_getBlockByNumber`, which\n * can return a `result` of `null` despite an expected `Result` being\n * provided.\n *\n * @param jsonRpcRequest - The JSON-RPC request to send to the endpoint.\n * @param fetchOptions - An options bag for {@link fetch} which further\n * specifies the request.\n * @returns The decoded JSON-RPC response from the endpoint.\n * @throws A 401 error if the response status is 401.\n * @throws A \"rate limiting\" error if the response HTTP status is 429.\n * @throws A \"resource unavailable\" error if the response status is 402, 404, or any 5xx.\n * @throws A generic HTTP client error (-32100) for any other 4xx status codes.\n * @throws A \"parse\" error if the response is not valid JSON.\n */\n async request<Params extends JsonRpcParams, Result extends Json>(\n jsonRpcRequest: Readonly<JsonRpcRequest<Params>> & {\n method: 'eth_getBlockByNumber';\n },\n fetchOptions?: FetchOptions,\n ): Promise<JsonRpcResponse<Result> | JsonRpcResponse<null>>;\n\n /**\n * Uses the RPC services in the chain to make a request, using each service\n * after the first as a fallback to the previous one as necessary.\n *\n * This overload is designed for all RPC methods except for\n * `eth_getBlockByNumber`, which are expected to return a `result` of the\n * expected `Result`.\n *\n * @param jsonRpcRequest - The JSON-RPC request to send to the endpoint.\n * @param fetchOptions - An options bag for {@link fetch} which further\n * specifies the request.\n * @returns The decoded JSON-RPC response from the endpoint.\n * @throws A 401 error if the response status is 401.\n * @throws A \"rate limiting\" error if the response HTTP status is 429.\n * @throws A \"resource unavailable\" error if the response status is 402, 404, or any 5xx.\n * @throws A generic HTTP client error (-32100) for any other 4xx status codes.\n * @throws A \"parse\" error if the response is not valid JSON.\n */\n async request<Params extends JsonRpcParams, Result extends Json>(\n jsonRpcRequest: Readonly<JsonRpcRequest<Params>>,\n fetchOptions?: FetchOptions,\n ): Promise<JsonRpcResponse<Result>>;\n\n async request<Params extends JsonRpcParams, Result extends Json>(\n jsonRpcRequest: Readonly<JsonRpcRequest<Params>>,\n fetchOptions: FetchOptions = {},\n ): Promise<JsonRpcResponse<Result | null>> {\n // Start with the primary (first) service and switch to failovers as the\n // need arises. This is a bit confusing, so keep reading for more on how\n // this works.\n\n let availableServiceIndex: number | undefined;\n let response: JsonRpcResponse<Result> | undefined;\n\n for (const [i, service] of this.#services.entries()) {\n log(`Trying service #${i + 1}...`);\n const previousCircuitState = service.getCircuitState();\n\n try {\n // Try making the request through the service.\n response = await service.request<Params, Result>(\n jsonRpcRequest,\n fetchOptions,\n );\n log('Service successfully received request.');\n availableServiceIndex = i;\n break;\n } catch (error) {\n // Oops, that didn't work.\n // Capture this error so that we can handle it later.\n\n const { lastError } = service;\n const isCircuitOpen = service.getCircuitState() === CircuitState.Open;\n\n log('Service failed! error =', error, 'lastError = ', lastError);\n\n if (isCircuitOpen) {\n if (i < this.#services.length - 1) {\n log(\n \"This service's circuit is open. Proceeding to next service...\",\n );\n continue;\n }\n\n if (\n previousCircuitState !== CircuitState.Open &&\n this.#status !== STATUSES.Unavailable &&\n lastError !== undefined\n ) {\n // If the service's circuit just broke and it's the last one in the\n // chain, then trigger the onBreak event. (But if for some reason we\n // have already done this, then don't do it.)\n log(\n 'This service\\'s circuit just opened and it is the last service. Updating status to \"unavailable\" and triggering onBreak.',\n );\n this.#status = STATUSES.Unavailable;\n this.#onBreakEventEmitter.emit({\n error: lastError,\n });\n }\n }\n\n // The service failed, and we throw whatever the error is. The calling\n // code can try again if it so desires.\n log(\n `${isCircuitOpen ? '' : \"This service's circuit is closed. \"}Re-throwing error.`,\n );\n throw error;\n }\n }\n\n if (response) {\n // If one of the services is available, reset all of the circuits of the\n // following services. If we didn't do this and the service became\n // unavailable in the future, and any of the failovers' circuits were\n // open (due to previous failures), we would receive a \"circuit broken\"\n // error when we attempted to divert traffic to the failovers again.\n //\n if (availableServiceIndex !== undefined) {\n for (const [i, service] of [...this.#services.entries()].slice(\n availableServiceIndex + 1,\n )) {\n log(`Resetting policy for service #${i + 1}.`);\n service.resetPolicy();\n }\n }\n\n return response;\n }\n\n // The only way we can end up here is if there are no services to loop over.\n // That is not possible due to the types on the constructor, but TypeScript\n // doesn't know this, so we have to appease it.\n throw new Error('Nothing to return');\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"rpc-service-chain.mjs","sourceRoot":"","sources":["../../src/rpc-service/rpc-service-chain.ts"],"names":[],"mappings":";;;;;;;;;;;;AAOA,OAAO,EAAE,UAAU,EAAE,0BAAsB;AAK3C;;;;;GAKG;AACH,MAAM,OAAO,eAAe;IAG1B;;;;;;OAMG;IACH,YACE,wBAAsE;;QAV/D,4CAAwB;QAY/B,uBAAA,IAAI,6BAAa,uBAAA,IAAI,yEAAsB,MAA1B,IAAI,EAAuB,wBAAwB,CAAC,MAAA,CAAC;IACxE,CAAC;IAED;;;;;OAKG;IACH,OAAO,CAAC,QAA8C;QACpD,MAAM,WAAW,GAAG,uBAAA,IAAI,iCAAU,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CACjD,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,CAC1B,CAAC;QAEF,OAAO;YACL,OAAO;gBACL,WAAW,CAAC,OAAO,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC;YAC5D,CAAC;SACF,CAAC;IACJ,CAAC;IAED;;;;;;OAMG;IACH,OAAO,CAAC,QAA8C;QACpD,MAAM,WAAW,GAAG,uBAAA,IAAI,iCAAU,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CACjD,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,CAC1B,CAAC;QAEF,OAAO;YACL,OAAO;gBACL,WAAW,CAAC,OAAO,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC;YAC5D,CAAC;SACF,CAAC;IACJ,CAAC;IAED;;;;;OAKG;IACH,UAAU,CAAC,QAAiD;QAC1D,MAAM,WAAW,GAAG,uBAAA,IAAI,iCAAU,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CACjD,OAAO,CAAC,UAAU,CAAC,QAAQ,CAAC,CAC7B,CAAC;QAEF,OAAO;YACL,OAAO;gBACL,WAAW,CAAC,OAAO,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC;YAC5D,CAAC;SACF,CAAC;IACJ,CAAC;IAkDD,KAAK,CAAC,OAAO,CACX,cAAgD,EAChD,eAA6B,EAAE;QAE/B,OAAO,uBAAA,IAAI,iCAAU,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,cAAc,EAAE,YAAY,CAAC,CAAC;IACjE,CAAC;CA0BF;8KAbG,wBAAsE;IAEtE,OAAO,CAAC,GAAG,wBAAwB,CAAC;SACjC,OAAO,EAAE;SACT,MAAM,CAAC,CAAC,eAA6B,EAAE,oBAAoB,EAAE,KAAK,EAAE,EAAE;QACrE,MAAM,eAAe,GAAG,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;QACnE,MAAM,OAAO,GAAG,IAAI,UAAU,CAAC;YAC7B,GAAG,oBAAoB;YACvB,eAAe;SAChB,CAAC,CAAC;QACH,OAAO,CAAC,OAAO,EAAE,GAAG,eAAe,CAAC,CAAC;IACvC,CAAC,EAAE,EAAE,CAAC,CAAC;AACX,CAAC","sourcesContent":["import type {\n Json,\n JsonRpcParams,\n JsonRpcRequest,\n JsonRpcResponse,\n} from '@metamask/utils';\n\nimport { RpcService } from './rpc-service';\nimport type { RpcServiceOptions } from './rpc-service';\nimport type { RpcServiceRequestable } from './rpc-service-requestable';\nimport type { FetchOptions } from './shared';\n\n/**\n * This class constructs a chain of RpcService objects which represent a\n * particular network. The first object in the chain is intended to be the\n * primary way of reaching the network and the remaining objects are used as\n * failovers.\n */\nexport class RpcServiceChain implements RpcServiceRequestable {\n readonly #services: RpcService[];\n\n /**\n * Constructs a new RpcServiceChain object.\n *\n * @param rpcServiceConfigurations - The options for the RPC services\n * that you want to construct. Each object in this array is the same as\n * {@link RpcServiceOptions}.\n */\n constructor(\n rpcServiceConfigurations: Omit<RpcServiceOptions, 'failoverService'>[],\n ) {\n this.#services = this.#buildRpcServiceChain(rpcServiceConfigurations);\n }\n\n /**\n * Listens for when any of the RPC services retry a request.\n *\n * @param listener - The callback to be called when the retry occurs.\n * @returns What {@link RpcService.onRetry} returns.\n */\n onRetry(listener: Parameters<RpcService['onRetry']>[0]) {\n const disposables = this.#services.map((service) =>\n service.onRetry(listener),\n );\n\n return {\n dispose() {\n disposables.forEach((disposable) => disposable.dispose());\n },\n };\n }\n\n /**\n * Listens for when any of the RPC services retry the request too many times\n * in a row.\n *\n * @param listener - The callback to be called when the retry occurs.\n * @returns What {@link RpcService.onBreak} returns.\n */\n onBreak(listener: Parameters<RpcService['onBreak']>[0]) {\n const disposables = this.#services.map((service) =>\n service.onBreak(listener),\n );\n\n return {\n dispose() {\n disposables.forEach((disposable) => disposable.dispose());\n },\n };\n }\n\n /**\n * Listens for when any of the RPC services send a slow request.\n *\n * @param listener - The callback to be called when the retry occurs.\n * @returns What {@link RpcService.onRetry} returns.\n */\n onDegraded(listener: Parameters<RpcService['onDegraded']>[0]) {\n const disposables = this.#services.map((service) =>\n service.onDegraded(listener),\n );\n\n return {\n dispose() {\n disposables.forEach((disposable) => disposable.dispose());\n },\n };\n }\n\n /**\n * Makes a request to the first RPC service in the chain. If this service is\n * down, then the request is forwarded to the next service in the chain, etc.\n *\n * This overload is specifically designed for `eth_getBlockByNumber`, which\n * can return a `result` of `null` despite an expected `Result` being\n * provided.\n *\n * @param jsonRpcRequest - The JSON-RPC request to send to the endpoint.\n * @param fetchOptions - An options bag for {@link fetch} which further\n * specifies the request.\n * @returns The decoded JSON-RPC response from the endpoint.\n * @throws A 401 error if the response status is 401.\n * @throws A \"rate limiting\" error if the response HTTP status is 429.\n * @throws A \"resource unavailable\" error if the response status is 402, 404, or any 5xx.\n * @throws A generic HTTP client error (-32100) for any other 4xx status codes.\n * @throws A \"parse\" error if the response is not valid JSON.\n */\n async request<Params extends JsonRpcParams, Result extends Json>(\n jsonRpcRequest: Readonly<JsonRpcRequest<Params>> & {\n method: 'eth_getBlockByNumber';\n },\n fetchOptions?: FetchOptions,\n ): Promise<JsonRpcResponse<Result> | JsonRpcResponse<null>>;\n\n /**\n * Makes a request to the first RPC service in the chain. If this service is\n * down, then the request is forwarded to the next service in the chain, etc.\n *\n * This overload is designed for all RPC methods except for\n * `eth_getBlockByNumber`, which are expected to return a `result` of the\n * expected `Result`.\n *\n * @param jsonRpcRequest - The JSON-RPC request to send to the endpoint.\n * @param fetchOptions - An options bag for {@link fetch} which further\n * specifies the request.\n * @returns The decoded JSON-RPC response from the endpoint.\n * @throws A 401 error if the response status is 401.\n * @throws A \"rate limiting\" error if the response HTTP status is 429.\n * @throws A \"resource unavailable\" error if the response status is 402, 404, or any 5xx.\n * @throws A generic HTTP client error (-32100) for any other 4xx status codes.\n * @throws A \"parse\" error if the response is not valid JSON.\n */\n async request<Params extends JsonRpcParams, Result extends Json>(\n jsonRpcRequest: Readonly<JsonRpcRequest<Params>>,\n fetchOptions?: FetchOptions,\n ): Promise<JsonRpcResponse<Result>>;\n\n async request<Params extends JsonRpcParams, Result extends Json>(\n jsonRpcRequest: Readonly<JsonRpcRequest<Params>>,\n fetchOptions: FetchOptions = {},\n ): Promise<JsonRpcResponse<Result | null>> {\n return this.#services[0].request(jsonRpcRequest, fetchOptions);\n }\n\n /**\n * Constructs the chain of RPC services. The second RPC service is\n * configured as the failover for the first, the third service is\n * configured as the failover for the second, etc.\n *\n * @param rpcServiceConfigurations - The options for the RPC services that\n * you want to construct. Each object in this array is the same as\n * {@link RpcServiceOptions}.\n * @returns The constructed chain of RPC services.\n */\n #buildRpcServiceChain(\n rpcServiceConfigurations: Omit<RpcServiceOptions, 'failoverService'>[],\n ): RpcService[] {\n return [...rpcServiceConfigurations]\n .reverse()\n .reduce((workingServices: RpcService[], serviceConfiguration, index) => {\n const failoverService = index > 0 ? workingServices[0] : undefined;\n const service = new RpcService({\n ...serviceConfiguration,\n failoverService,\n });\n return [service, ...workingServices];\n }, []);\n }\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rpc-service-requestable.cjs","sourceRoot":"","sources":["../../src/rpc-service/rpc-service-requestable.ts"],"names":[],"mappings":"","sourcesContent":["import type { ServicePolicy } from '@metamask/controller-utils';\nimport type {\n Json,\n JsonRpcParams,\n JsonRpcRequest,\n JsonRpcResponse,\n} from '@metamask/utils';\n\nimport type {
|
|
1
|
+
{"version":3,"file":"rpc-service-requestable.cjs","sourceRoot":"","sources":["../../src/rpc-service/rpc-service-requestable.ts"],"names":[],"mappings":"","sourcesContent":["import type { ServicePolicy } from '@metamask/controller-utils';\nimport type {\n Json,\n JsonRpcParams,\n JsonRpcRequest,\n JsonRpcResponse,\n} from '@metamask/utils';\n\nimport type { AddToCockatielEventData, FetchOptions } from './shared';\n\n/**\n * The interface for a service class responsible for making a request to a\n * target, whether that is a single RPC endpoint or an RPC endpoint in an RPC\n * service chain.\n */\nexport type RpcServiceRequestable = {\n /**\n * Listens for when the RPC service retries the request.\n *\n * @param listener - The callback to be called when the retry occurs.\n * @returns What {@link ServicePolicy.onRetry} returns.\n * @see {@link createServicePolicy}\n */\n onRetry(\n listener: AddToCockatielEventData<\n Parameters<ServicePolicy['onRetry']>[0],\n { endpointUrl: string }\n >,\n ): ReturnType<ServicePolicy['onRetry']>;\n\n /**\n * Listens for when the RPC service retries the request too many times in a\n * row.\n *\n * @param listener - The callback to be called when the circuit is broken.\n * @returns What {@link ServicePolicy.onBreak} returns.\n * @see {@link createServicePolicy}\n */\n onBreak(\n listener: AddToCockatielEventData<\n Parameters<ServicePolicy['onBreak']>[0],\n { endpointUrl: string }\n >,\n ): ReturnType<ServicePolicy['onBreak']>;\n\n /**\n * Listens for when the policy underlying this RPC service detects a slow\n * request.\n *\n * @param listener - The callback to be called when the request is slow.\n * @returns What {@link ServicePolicy.onDegraded} returns.\n * @see {@link createServicePolicy}\n */\n onDegraded(\n listener: AddToCockatielEventData<\n Parameters<ServicePolicy['onDegraded']>[0],\n { endpointUrl: string }\n >,\n ): ReturnType<ServicePolicy['onDegraded']>;\n\n /**\n * Makes a request to the target.\n */\n request<Params extends JsonRpcParams, Result extends Json>(\n jsonRpcRequest: Readonly<JsonRpcRequest<Params>>,\n fetchOptions?: FetchOptions,\n ): Promise<JsonRpcResponse<Result | null>>;\n};\n"]}
|