Skip to content

Commit 5fa3a7a

Browse files
committed
fixes
1 parent 0cf9ea2 commit 5fa3a7a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/sdk-and-tools/rest-api/ws-subscriptions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: MultiversX API WebSocket
55

66
## MultiversX WebSocket Subscription API
77

8-
Starting with the release [v.1.17.0](https://github.com/multiversx/mx-api-service/releases/tag/v1.17.0) we introduced WebSocket Subscription functionality.
8+
Starting with the release [v1.17.0](https://github.com/multiversx/mx-api-service/releases/tag/v1.17.0) we introduced WebSocket Subscription functionality.
99

1010
It is useful for subscribing to new events in real-time, rather than performing polling (requesting latest events with a given refresh period).
1111

@@ -390,7 +390,7 @@ Subscribes to transactions matching specific criteria (Sender, Receiver, or Func
390390
import { io } from "socket.io-client";
391391

392392
async function main() {
393-
const { url } = await fetch("[https://api.multiversx.com/websocket/config](https://api.multiversx.com/websocket/config)")
393+
const { url } = await fetch("https://api.multiversx.com/websocket/config")
394394
.then((r) => r.json());
395395

396396
const socket = io(`https://${url}`, { path: "/ws/subscription" });

0 commit comments

Comments
 (0)