File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,18 @@ const endpoints = {
12
12
testnet : 'wss://testnet.bitmex.com/realtime'
13
13
} ;
14
14
const noSymbolTables = BitMEXClient . noSymbolTables = [
15
+ 'account' ,
16
+ 'affiliate' ,
17
+ 'funds' ,
18
+ 'insurance' ,
15
19
'margin' ,
16
- 'chat'
20
+ 'transact' ,
21
+ 'wallet' ,
22
+ 'announcement' ,
23
+ 'connected' ,
24
+ 'chat' ,
25
+ 'publicNotifications' ,
26
+ 'privateNotifications'
17
27
] ;
18
28
19
29
module . exports = BitMEXClient ;
@@ -163,6 +173,7 @@ BitMEXClient.prototype.subscriptionCount = function(table, symbol) {
163
173
} ;
164
174
165
175
BitMEXClient . prototype . sendSubscribeRequest = function ( table , symbol ) {
176
+ console . log ( JSON . stringify ( { op : 'subscribe' , args : `${ table } :${ symbol } ` } ) )
166
177
this . socket . send ( JSON . stringify ( { op : 'subscribe' , args : `${ table } :${ symbol } ` } ) ) ;
167
178
} ;
168
179
You can’t perform that action at this time.
0 commit comments