Skip to content
This repository was archived by the owner on Apr 3, 2023. It is now read-only.

Commit 15904fa

Browse files
authored
Fix leading 0x in websocket logic (#25)
* Handle leading 0x when sub/unsub * Bump pyth-common-js version to 0.4.0
1 parent 71ad6ed commit 15904fa

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

pyth-common-js/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyth-common-js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pythnetwork/pyth-common-js",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "Pyth Network Common Utils in JS",
55
"author": {
66
"name": "Pyth Data Association"

pyth-common-js/src/PriceServiceConnection.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import axiosRetry from "axios-retry";
44
import * as WebSocket from "isomorphic-ws";
55
import { Logger } from "ts-log";
66
import { ResilientWebSocket } from "./ResillientWebSocket";
7-
import { makeWebsocketUrl } from "./utils";
7+
import { makeWebsocketUrl, removeLeading0xIfExists } from "./utils";
88

99
export type DurationInMs = number;
1010

@@ -147,6 +147,8 @@ export class PriceServiceConnection {
147147
await this.startWebSocket();
148148
}
149149

150+
priceIds = priceIds.map((priceId) => removeLeading0xIfExists(priceId));
151+
150152
const newPriceIds: HexString[] = [];
151153

152154
for (const id of priceIds) {
@@ -185,6 +187,8 @@ export class PriceServiceConnection {
185187
await this.startWebSocket();
186188
}
187189

190+
priceIds = priceIds.map((priceId) => removeLeading0xIfExists(priceId));
191+
188192
const removedPriceIds: HexString[] = [];
189193

190194
for (const id of priceIds) {

pyth-common-js/src/utils.ts

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import { HexString } from "@pythnetwork/pyth-sdk-js";
2+
13
/**
24
* Convert http(s) endpoint to ws(s) endpoint.
35
*
@@ -12,3 +14,11 @@ export function makeWebsocketUrl(endpoint: string) {
1214

1315
return url.toString();
1416
}
17+
18+
export function removeLeading0xIfExists(id: HexString): HexString {
19+
if (id.startsWith("0x")) {
20+
return id.substring(2);
21+
} else {
22+
return id;
23+
}
24+
}

0 commit comments

Comments
 (0)