-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathws-public.ts
83 lines (64 loc) · 2.08 KB
/
ws-public.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import { DefaultLogger, WS_KEY_MAP, WebsocketClientV2 } from '../src';
// or
// import { DefaultLogger, WS_KEY_MAP, WebsocketClientV2 } from 'bitget-api';
(async () => {
const logger = {
...DefaultLogger,
silly: (...params) => console.log('silly', ...params),
};
const wsClient = new WebsocketClientV2(
{
// restOptions: {
// optionally provide rest options, e.g. to pass through a proxy
// },
},
logger,
);
wsClient.on('update', (data) => {
console.log('WS raw message received ', data);
// console.log('WS raw message received ', JSON.stringify(data, null, 2));
});
wsClient.on('open', (data) => {
console.log('WS connection opened:', data.wsKey);
});
wsClient.on('response', (data) => {
console.log('WS response: ', JSON.stringify(data, null, 2));
});
wsClient.on('reconnect', ({ wsKey }) => {
console.log('WS automatically reconnecting.... ', wsKey);
});
wsClient.on('reconnected', (data) => {
console.log('WS reconnected ', data?.wsKey);
});
wsClient.on('exception', (data) => {
console.log('WS error', data);
});
/**
* Public events
*/
const symbol = 'BTCUSDT';
// Spot public
// tickers
wsClient.subscribeTopic('SPOT', 'ticker', symbol);
// candles
// wsClient.subscribeTopic('SPOT', 'candle1m', symbol);
// orderbook updates
// wsClient.subscribeTopic('SPOT', 'books', symbol);
// trades
// wsClient.subscribeTopic('SPOT', 'trade', symbol);
// Futures public
// tickers
// wsClient.subscribeTopic('USDT-FUTURES', 'ticker', symbol);
// candles
// wsClient.subscribeTopic('USDT-FUTURES', 'candle1m', symbol);
// orderbook updates
// wsClient.subscribeTopic('USDT-FUTURES', 'books', symbol);
// trades
// wsClient.subscribeTopic('USDT-FUTURES', 'trade', symbol);
// Topics are tracked per websocket type
// Get a list of subscribed topics (e.g. all public topics) (after a 5 second delay)
setTimeout(() => {
const publicTopics = wsClient.getWsStore().getTopics(WS_KEY_MAP.v2Public);
console.log('public topics: ', publicTopics);
}, 5 * 1000);
})();