From f43fcafbe2339c8f637d9c4197dada536942a732 Mon Sep 17 00:00:00 2001 From: tiagosiebler Date: Tue, 9 Apr 2024 18:11:24 +0100 Subject: [PATCH] chore(): add comment --- examples/demo-trading.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/examples/demo-trading.ts b/examples/demo-trading.ts index 59dbdf9..6a7add0 100644 --- a/examples/demo-trading.ts +++ b/examples/demo-trading.ts @@ -6,6 +6,16 @@ import { RestClientV5, WebsocketClient } from '../src/index'; const key = process.env.API_KEY_COM; const secret = process.env.API_SECRET_COM; +/** + * + * + * This example demonstrates how to use Bybit's demo trading functionality, both for REST and WS. + * + * Refer to the API docs for more information: https://bybit-exchange.github.io/docs/v5/demo + * + * + */ + const restClient = new RestClientV5({ key: key, secret: secret,