@blackglory/geyser-js 0.9.0 → 0.10.0
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/README.md +9 -6
- package/lib/geyser-client.d.ts +6 -6
- package/lib/geyser-client.js +23 -24
- package/lib/geyser-client.js.map +1 -1
- package/package.json +34 -37
- package/src/contract.ts +34 -0
- package/src/geyser-client.ts +91 -0
- package/src/index.ts +1 -0
- package/src/utils/rpc-client.browser.ts +27 -0
- package/src/utils/rpc-client.ts +28 -0
package/README.md
CHANGED
|
@@ -25,29 +25,32 @@ class GeyserClient {
|
|
|
25
25
|
|
|
26
26
|
close(): Promise<void>
|
|
27
27
|
|
|
28
|
-
getAllRateLimiterIds(
|
|
28
|
+
getAllRateLimiterIds(signal?: AbortSignal): Promise<string[]>
|
|
29
29
|
|
|
30
|
-
getRateLimiter(
|
|
30
|
+
getRateLimiter(
|
|
31
|
+
rateLimiterId: string
|
|
32
|
+
, signal?: AbortSignal
|
|
33
|
+
): Promise<IRateLimiterConfig | null>
|
|
31
34
|
|
|
32
35
|
setRateLimiter(
|
|
33
36
|
rateLimiterId: string
|
|
34
37
|
, config: IRateLimiterConfig
|
|
35
|
-
,
|
|
38
|
+
, signal?: AbortSignal
|
|
36
39
|
): Promise<void>
|
|
37
40
|
|
|
38
|
-
removeRateLimiter(rateLimiterId: string,
|
|
41
|
+
removeRateLimiter(rateLimiterId: string, signal?: AbortSignal): Promise<void>
|
|
39
42
|
|
|
40
43
|
/**
|
|
41
44
|
* 重置速率限制器的状态.
|
|
42
45
|
*
|
|
43
46
|
* @throws {RateLimiterNotFound}
|
|
44
47
|
*/
|
|
45
|
-
resetRateLimiter(rateLimiterId: string,
|
|
48
|
+
resetRateLimiter(rateLimiterId: string, signal?: AbortSignal): Promise<void>
|
|
46
49
|
|
|
47
50
|
/**
|
|
48
51
|
* @throws {RateLimiterNotFound}
|
|
49
52
|
*/
|
|
50
|
-
acquireToken(rateLimiterId: string,
|
|
53
|
+
acquireToken(rateLimiterId: string, signal?: AbortSignal): Promise<void>
|
|
51
54
|
}
|
|
52
55
|
|
|
53
56
|
/**
|
package/lib/geyser-client.d.ts
CHANGED
|
@@ -12,11 +12,11 @@ export declare class GeyserClient {
|
|
|
12
12
|
static create(options: IGeyserClientOptions): Promise<GeyserClient>;
|
|
13
13
|
private constructor();
|
|
14
14
|
close(): Promise<void>;
|
|
15
|
-
getAllRateLimiterIds(
|
|
16
|
-
getRateLimiter(rateLimiterId: string,
|
|
17
|
-
setRateLimiter(rateLimiterId: string, config: IRateLimiterConfig,
|
|
18
|
-
removeRateLimiter(rateLimiterId: string,
|
|
19
|
-
resetRateLimiter(rateLimiterId: string,
|
|
20
|
-
acquireToken(rateLimiterId: string,
|
|
15
|
+
getAllRateLimiterIds(signal?: AbortSignal): Promise<string[]>;
|
|
16
|
+
getRateLimiter(rateLimiterId: string, signal?: AbortSignal): Promise<IRateLimiterConfig | null>;
|
|
17
|
+
setRateLimiter(rateLimiterId: string, config: IRateLimiterConfig, signal?: AbortSignal): Promise<void>;
|
|
18
|
+
removeRateLimiter(rateLimiterId: string, signal?: AbortSignal): Promise<void>;
|
|
19
|
+
resetRateLimiter(rateLimiterId: string, signal?: AbortSignal): Promise<void>;
|
|
20
|
+
acquireToken(rateLimiterId: string, signal?: AbortSignal): Promise<void>;
|
|
21
21
|
private withTimeout;
|
|
22
22
|
}
|
package/lib/geyser-client.js
CHANGED
|
@@ -1,44 +1,43 @@
|
|
|
1
1
|
import { createRPCClient } from "./utils/rpc-client.js";
|
|
2
|
-
import {
|
|
2
|
+
import { raceAbortSignals, timeoutSignal } from 'extra-abort';
|
|
3
|
+
import { isntUndefined } from '@blackglory/prelude';
|
|
3
4
|
export { RateLimiterNotFound } from './contract.js';
|
|
4
5
|
export class GeyserClient {
|
|
6
|
+
static async create(options) {
|
|
7
|
+
const { client, close } = await createRPCClient(options.server, options.retryIntervalForReconnection);
|
|
8
|
+
return new GeyserClient(client, close, options.timeout);
|
|
9
|
+
}
|
|
5
10
|
constructor(client, closeClients, timeout) {
|
|
6
11
|
this.client = client;
|
|
7
12
|
this.closeClients = closeClients;
|
|
8
13
|
this.timeout = timeout;
|
|
9
14
|
}
|
|
10
|
-
static async create(options) {
|
|
11
|
-
const { client, close } = await createRPCClient(options.server, options.retryIntervalForReconnection);
|
|
12
|
-
return new GeyserClient(client, close, options.timeout);
|
|
13
|
-
}
|
|
14
15
|
async close() {
|
|
15
16
|
await this.closeClients();
|
|
16
17
|
}
|
|
17
|
-
async getAllRateLimiterIds(
|
|
18
|
-
return await this.
|
|
18
|
+
async getAllRateLimiterIds(signal) {
|
|
19
|
+
return await this.client.getAllRateLimiterIds(this.withTimeout(signal));
|
|
19
20
|
}
|
|
20
|
-
async getRateLimiter(rateLimiterId,
|
|
21
|
-
return await this.
|
|
21
|
+
async getRateLimiter(rateLimiterId, signal) {
|
|
22
|
+
return await this.client.getRateLimiter(rateLimiterId, this.withTimeout(signal));
|
|
22
23
|
}
|
|
23
|
-
async setRateLimiter(rateLimiterId, config,
|
|
24
|
-
await this.
|
|
24
|
+
async setRateLimiter(rateLimiterId, config, signal) {
|
|
25
|
+
await this.client.setRateLimiter(rateLimiterId, config, this.withTimeout(signal));
|
|
25
26
|
}
|
|
26
|
-
async removeRateLimiter(rateLimiterId,
|
|
27
|
-
await this.
|
|
27
|
+
async removeRateLimiter(rateLimiterId, signal) {
|
|
28
|
+
await this.client.removeRateLimiter(rateLimiterId, this.withTimeout(signal));
|
|
28
29
|
}
|
|
29
|
-
async resetRateLimiter(rateLimiterId,
|
|
30
|
-
await this.
|
|
30
|
+
async resetRateLimiter(rateLimiterId, signal) {
|
|
31
|
+
await this.client.removeRateLimiter(rateLimiterId, this.withTimeout(signal));
|
|
31
32
|
}
|
|
32
|
-
async acquireToken(rateLimiterId,
|
|
33
|
-
await this.
|
|
33
|
+
async acquireToken(rateLimiterId, signal) {
|
|
34
|
+
await this.client.acquireToken(rateLimiterId, this.withTimeout(signal));
|
|
34
35
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
return await fn();
|
|
41
|
-
}
|
|
36
|
+
withTimeout(signal) {
|
|
37
|
+
return raceAbortSignals([
|
|
38
|
+
isntUndefined(this.timeout) && timeoutSignal(this.timeout),
|
|
39
|
+
signal
|
|
40
|
+
]);
|
|
42
41
|
}
|
|
43
42
|
}
|
|
44
43
|
//# sourceMappingURL=geyser-client.js.map
|
package/lib/geyser-client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"geyser-client.js","sourceRoot":"","sources":["../src/geyser-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,8BAA4B;AAEtD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"geyser-client.js","sourceRoot":"","sources":["../src/geyser-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,8BAA4B;AAEtD,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAE7D,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAA;AACnD,OAAO,EAAsB,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAQvE,MAAM,OAAO,YAAY;IACvB,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,OAA6B;QAC/C,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,MAAM,eAAe,CAC7C,OAAO,CAAC,MAAM,EACd,OAAO,CAAC,4BAA4B,CACrC,CAAA;QACD,OAAO,IAAI,YAAY,CAAC,MAAM,EAAE,KAAK,EAAE,OAAO,CAAC,OAAO,CAAC,CAAA;IACzD,CAAC;IAED,YACU,MAAyB,EACzB,YAAiC,EACjC,OAAgB;QAFhB,WAAM,GAAN,MAAM,CAAmB;QACzB,iBAAY,GAAZ,YAAY,CAAqB;QACjC,YAAO,GAAP,OAAO,CAAS;IACvB,CAAC;IAEJ,KAAK,CAAC,KAAK;QACT,MAAM,IAAI,CAAC,YAAY,EAAE,CAAA;IAC3B,CAAC;IAED,KAAK,CAAC,oBAAoB,CAAC,MAAoB;QAC7C,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAA;IACzE,CAAC;IAED,KAAK,CAAC,cAAc,CAClB,aAAqB,EACrB,MAAoB;QAEpB,OAAO,MAAM,IAAI,CAAC,MAAM,CAAC,cAAc,CACrC,aAAa,EACb,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CACzB,CAAA;IACH,CAAC;IAED,KAAK,CAAC,cAAc,CAClB,aAAqB,EACrB,MAA0B,EAC1B,MAAoB;QAEpB,MAAM,IAAI,CAAC,MAAM,CAAC,cAAc,CAC9B,aAAa,EACb,MAAM,EACN,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CACzB,CAAA;IACH,CAAC;IAED,KAAK,CAAC,iBAAiB,CACrB,aAAqB,EACrB,MAAoB;QAEpB,MAAM,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,aAAa,EAAE,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAA;IAC9E,CAAC;IAOD,KAAK,CAAC,gBAAgB,CACpB,aAAqB,EACrB,MAAoB;QAEpB,MAAM,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,aAAa,EAAE,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAA;IAC9E,CAAC;IAKD,KAAK,CAAC,YAAY,CAAC,aAAqB,EAAE,MAAoB;QAC5D,MAAM,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,aAAa,EAAE,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAA;IACzE,CAAC;IAEO,WAAW,CAAC,MAAoB;QACtC,OAAO,gBAAgB,CAAC;YACtB,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC;YAC1D,MAAM;SACP,CAAC,CAAA;IACJ,CAAC;CACF"}
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blackglory/geyser-js",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"files": [
|
|
7
|
-
"lib"
|
|
7
|
+
"lib",
|
|
8
|
+
"src"
|
|
8
9
|
],
|
|
9
10
|
"type": "module",
|
|
10
11
|
"main": "lib/index.js",
|
|
@@ -17,22 +18,20 @@
|
|
|
17
18
|
"license": "MIT",
|
|
18
19
|
"sideEffects": false,
|
|
19
20
|
"engines": {
|
|
20
|
-
"node": ">=
|
|
21
|
+
"node": ">=22"
|
|
21
22
|
},
|
|
22
23
|
"scripts": {
|
|
23
24
|
"prepare": "ts-patch install -s",
|
|
24
|
-
"lint": "eslint --
|
|
25
|
-
"test": "
|
|
26
|
-
"test:debug": "cross-env NODE_OPTIONS=--experimental-vm-modules node --inspect-brk node_modules/.bin/jest --runInBand jest.config.cjs",
|
|
27
|
-
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --config jest.config.cjs",
|
|
25
|
+
"lint": "eslint --quiet src __tests__",
|
|
26
|
+
"test": "vitest --run",
|
|
28
27
|
"prepublishOnly": "run-s prepare clean build",
|
|
29
28
|
"clean": "rimraf lib",
|
|
30
29
|
"build": "tsc --project tsconfig.build.json",
|
|
31
30
|
"docker:test": "run-s docker:test:clean docker:test:build docker:test:run docker:test:clean",
|
|
32
31
|
"docker:coverage": "run-s docker:test:clean docker:test:build docker:test:coverage docker:test:clean",
|
|
33
|
-
"docker:test:build": "docker
|
|
34
|
-
"docker:test:run": "docker
|
|
35
|
-
"docker:test:clean": "docker
|
|
32
|
+
"docker:test:build": "docker compose --project-name estore-js --file docker-compose.test.yml build",
|
|
33
|
+
"docker:test:run": "docker compose --project-name estore-js --file docker-compose.test.yml run --no-TTY --rm test",
|
|
34
|
+
"docker:test:clean": "docker compose --project-name estore-js --file docker-compose.test.yml down",
|
|
36
35
|
"release": "standard-version"
|
|
37
36
|
},
|
|
38
37
|
"husky": {
|
|
@@ -42,39 +41,37 @@
|
|
|
42
41
|
}
|
|
43
42
|
},
|
|
44
43
|
"devDependencies": {
|
|
45
|
-
"@
|
|
46
|
-
"@commitlint/
|
|
47
|
-
"@
|
|
48
|
-
"@types/
|
|
49
|
-
"@types/ws": "^8.5.4",
|
|
50
|
-
"@typescript-eslint/eslint-plugin": "^5.57.0",
|
|
51
|
-
"@typescript-eslint/parser": "^5.57.0",
|
|
44
|
+
"@commitlint/cli": "^19.8.1",
|
|
45
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
46
|
+
"@eslint/js": "^9.27.0",
|
|
47
|
+
"@types/ws": "^8.18.1",
|
|
52
48
|
"cross-env": "^7.0.3",
|
|
53
|
-
"eslint": "^
|
|
49
|
+
"eslint": "^9.27.0",
|
|
54
50
|
"husky": "4",
|
|
55
|
-
"
|
|
56
|
-
"jest-resolve": "^29.5.0",
|
|
57
|
-
"msw": "^1.2.1",
|
|
51
|
+
"msw": "^2.8.6",
|
|
58
52
|
"npm-run-all": "^4.1.5",
|
|
59
|
-
"return-style": "^3.0.
|
|
60
|
-
"rimraf": "^
|
|
53
|
+
"return-style": "^3.0.1",
|
|
54
|
+
"rimraf": "^6.0.1",
|
|
61
55
|
"standard-version": "^9.3.2",
|
|
62
|
-
"ts-
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"typescript": "
|
|
66
|
-
"typescript-transform-paths": "^3.
|
|
56
|
+
"ts-patch": "^3.3.0",
|
|
57
|
+
"tslib": "^2.8.1",
|
|
58
|
+
"typescript": "5.8.3",
|
|
59
|
+
"typescript-eslint": "^8.33.0",
|
|
60
|
+
"typescript-transform-paths": "^3.5.5",
|
|
61
|
+
"vite": "^6.3.5",
|
|
62
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
63
|
+
"vitest": "^3.1.4"
|
|
67
64
|
},
|
|
68
65
|
"dependencies": {
|
|
69
|
-
"@blackglory/errors": "^3.0.
|
|
70
|
-
"@blackglory/prelude": "^0.
|
|
71
|
-
"@delight-rpc/extra-native-websocket": "^0.
|
|
72
|
-
"@delight-rpc/extra-websocket": "^0.
|
|
66
|
+
"@blackglory/errors": "^3.0.3",
|
|
67
|
+
"@blackglory/prelude": "^0.4.0",
|
|
68
|
+
"@delight-rpc/extra-native-websocket": "^0.6.0",
|
|
69
|
+
"@delight-rpc/extra-websocket": "^0.7.0",
|
|
73
70
|
"delight-rpc": "^6.1.2",
|
|
74
|
-
"extra-abort": "^0.
|
|
75
|
-
"extra-native-websocket": "^0.
|
|
76
|
-
"extra-websocket": "^0.
|
|
77
|
-
"justypes": "^4.
|
|
78
|
-
"ws": "^8.
|
|
71
|
+
"extra-abort": "^0.4.0",
|
|
72
|
+
"extra-native-websocket": "^0.4.1",
|
|
73
|
+
"extra-websocket": "^0.4.2",
|
|
74
|
+
"justypes": "^4.4.1",
|
|
75
|
+
"ws": "^8.18.2"
|
|
79
76
|
}
|
|
80
77
|
}
|
package/src/contract.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { JSONObject } from 'justypes'
|
|
2
|
+
import { CustomError } from '@blackglory/errors'
|
|
3
|
+
|
|
4
|
+
export const expectedVersion = '^0.5.0'
|
|
5
|
+
|
|
6
|
+
export interface IRateLimiterConfig extends JSONObject {
|
|
7
|
+
duration: number | null
|
|
8
|
+
limit: number | null
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface IAPI {
|
|
12
|
+
getAllRateLimiterIds(): string[]
|
|
13
|
+
|
|
14
|
+
getRateLimiter(rateLimiterId: string): IRateLimiterConfig | null
|
|
15
|
+
setRateLimiter(rateLimiterId: string, config: IRateLimiterConfig): null
|
|
16
|
+
removeRateLimiter(rateLimiterId: string): null
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* 重置速率限制器的状态.
|
|
20
|
+
*
|
|
21
|
+
* @throws {RateLimiterNotFound}
|
|
22
|
+
*/
|
|
23
|
+
resetRateLimiter(rateLimiterId: string): null
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* @throws {RateLimiterNotFound}
|
|
27
|
+
*/
|
|
28
|
+
acquireToken(rateLimiterId: string): null
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* 速率限制器在未经配置的情况下, 相当于不存在.
|
|
33
|
+
*/
|
|
34
|
+
export class RateLimiterNotFound extends CustomError {}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { createRPCClient } from '@utils/rpc-client.js'
|
|
2
|
+
import { ClientProxy } from 'delight-rpc'
|
|
3
|
+
import { raceAbortSignals, timeoutSignal } from 'extra-abort'
|
|
4
|
+
import { IAPI, IRateLimiterConfig } from './contract.js'
|
|
5
|
+
import { isntUndefined } from '@blackglory/prelude'
|
|
6
|
+
export { IRateLimiterConfig, RateLimiterNotFound } from './contract.js'
|
|
7
|
+
|
|
8
|
+
export interface IGeyserClientOptions {
|
|
9
|
+
server: string
|
|
10
|
+
timeout?: number
|
|
11
|
+
retryIntervalForReconnection?: number
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export class GeyserClient {
|
|
15
|
+
static async create(options: IGeyserClientOptions): Promise<GeyserClient> {
|
|
16
|
+
const { client, close } = await createRPCClient(
|
|
17
|
+
options.server
|
|
18
|
+
, options.retryIntervalForReconnection
|
|
19
|
+
)
|
|
20
|
+
return new GeyserClient(client, close, options.timeout)
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
private constructor(
|
|
24
|
+
private client: ClientProxy<IAPI>
|
|
25
|
+
, private closeClients: () => Promise<void>
|
|
26
|
+
, private timeout?: number
|
|
27
|
+
) {}
|
|
28
|
+
|
|
29
|
+
async close(): Promise<void> {
|
|
30
|
+
await this.closeClients()
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
async getAllRateLimiterIds(signal?: AbortSignal): Promise<string[]> {
|
|
34
|
+
return await this.client.getAllRateLimiterIds(this.withTimeout(signal))
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
async getRateLimiter(
|
|
38
|
+
rateLimiterId: string
|
|
39
|
+
, signal?: AbortSignal
|
|
40
|
+
): Promise<IRateLimiterConfig | null> {
|
|
41
|
+
return await this.client.getRateLimiter(
|
|
42
|
+
rateLimiterId
|
|
43
|
+
, this.withTimeout(signal)
|
|
44
|
+
)
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
async setRateLimiter(
|
|
48
|
+
rateLimiterId: string
|
|
49
|
+
, config: IRateLimiterConfig
|
|
50
|
+
, signal?: AbortSignal
|
|
51
|
+
): Promise<void> {
|
|
52
|
+
await this.client.setRateLimiter(
|
|
53
|
+
rateLimiterId
|
|
54
|
+
, config
|
|
55
|
+
, this.withTimeout(signal)
|
|
56
|
+
)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
async removeRateLimiter(
|
|
60
|
+
rateLimiterId: string
|
|
61
|
+
, signal?: AbortSignal
|
|
62
|
+
): Promise<void> {
|
|
63
|
+
await this.client.removeRateLimiter(rateLimiterId, this.withTimeout(signal))
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* 重置速率限制器的状态.
|
|
68
|
+
*
|
|
69
|
+
* @throws {RateLimiterNotFound}
|
|
70
|
+
*/
|
|
71
|
+
async resetRateLimiter(
|
|
72
|
+
rateLimiterId: string
|
|
73
|
+
, signal?: AbortSignal
|
|
74
|
+
): Promise<void> {
|
|
75
|
+
await this.client.removeRateLimiter(rateLimiterId, this.withTimeout(signal))
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @throws {RateLimiterNotFound}
|
|
80
|
+
*/
|
|
81
|
+
async acquireToken(rateLimiterId: string, signal?: AbortSignal): Promise<void> {
|
|
82
|
+
await this.client.acquireToken(rateLimiterId, this.withTimeout(signal))
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
private withTimeout(signal?: AbortSignal): AbortSignal {
|
|
86
|
+
return raceAbortSignals([
|
|
87
|
+
isntUndefined(this.timeout) && timeoutSignal(this.timeout)
|
|
88
|
+
, signal
|
|
89
|
+
])
|
|
90
|
+
}
|
|
91
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './geyser-client.js'
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { IAPI, expectedVersion } from '@src/contract.js'
|
|
2
|
+
import { ClientProxy } from 'delight-rpc'
|
|
3
|
+
import { createClient } from '@delight-rpc/extra-native-websocket'
|
|
4
|
+
import { ExtraNativeWebSocket, autoReconnect } from 'extra-native-websocket'
|
|
5
|
+
|
|
6
|
+
export async function createRPCClient(
|
|
7
|
+
url: string
|
|
8
|
+
, retryIntervalForReconnection?: number
|
|
9
|
+
): Promise<{
|
|
10
|
+
client: ClientProxy<IAPI>
|
|
11
|
+
close: () => Promise<void>
|
|
12
|
+
}> {
|
|
13
|
+
const ws = new ExtraNativeWebSocket(() => new WebSocket(url))
|
|
14
|
+
const cancelAutoReconnect = autoReconnect(ws, retryIntervalForReconnection)
|
|
15
|
+
await ws.connect()
|
|
16
|
+
|
|
17
|
+
const [client, closeClient] = createClient<IAPI>(ws, { expectedVersion })
|
|
18
|
+
|
|
19
|
+
return {
|
|
20
|
+
client
|
|
21
|
+
, close: async () => {
|
|
22
|
+
closeClient()
|
|
23
|
+
cancelAutoReconnect()
|
|
24
|
+
await ws.close()
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { IAPI, expectedVersion } from '@src/contract.js'
|
|
2
|
+
import { ClientProxy } from 'delight-rpc'
|
|
3
|
+
import { createClient } from '@delight-rpc/extra-websocket'
|
|
4
|
+
import { WebSocket } from 'ws'
|
|
5
|
+
import { ExtraWebSocket, autoReconnect } from 'extra-websocket'
|
|
6
|
+
|
|
7
|
+
export async function createRPCClient(
|
|
8
|
+
url: string
|
|
9
|
+
, retryIntervalForReconnection?: number
|
|
10
|
+
): Promise<{
|
|
11
|
+
client: ClientProxy<IAPI>
|
|
12
|
+
close: () => Promise<void>
|
|
13
|
+
}> {
|
|
14
|
+
const ws = new ExtraWebSocket(() => new WebSocket(url))
|
|
15
|
+
const cancelAutoReconnect = autoReconnect(ws, retryIntervalForReconnection)
|
|
16
|
+
await ws.connect()
|
|
17
|
+
|
|
18
|
+
const [client, closeClient] = createClient<IAPI>(ws, { expectedVersion })
|
|
19
|
+
|
|
20
|
+
return {
|
|
21
|
+
client
|
|
22
|
+
, close: async () => {
|
|
23
|
+
closeClient()
|
|
24
|
+
cancelAutoReconnect()
|
|
25
|
+
await ws.close()
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|