We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd856fc commit a0aa7d1Copy full SHA for a0aa7d1
.github/workflows/main.yml
@@ -252,7 +252,7 @@ jobs:
252
- name: Publish to npm
253
run: |
254
if [[ "$PACKAGE_VERSION" == *beta* ]]; then
255
- npm publish --access=public --tag beta
+ npm publish --access=public --tag latest
256
elif [[ "$PACKAGE_VERSION" == *alpha* ]]; then
257
npm publish --access=public --tag alpha
258
else
sdk/src/pyth/pythLazerSubscriber.ts
@@ -270,7 +270,7 @@ export class PythLazerSubscriber {
270
}
271
272
/**
273
- * Unsubscribes from all Pyth Lazer price feeds and shuts down WebSocket connections.
+ * Unsubscribes from all Pyth Lazer price feeds and closes WebSocket connections.
274
*/
275
async unsubscribe() {
276
this.isUnsubscribing = true;
0 commit comments