@icgio/clients-config 1.0.155 → 1.0.157

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2 +1,2 @@
1
- secretread.js:04a705cff1a9482ac11c4e53f9589eaf85143758036ff92629db9a244040a5fd
1
+ secretread.js:b86540a56b1efcdd7120453dd9de080c0e823a2fba0ca8a79f0bcc430b858651
2
2
  data-source.js:7914c8a583a6dc1ed54909da44dbaf3b76c39adb98a63706ad277cc23de7b81b
package/config.json CHANGED
@@ -9,6 +9,9 @@
9
9
  "Mexc": ["AVALOXUSDT"],
10
10
  "Bitmart": ["AVALOXUSDT"]
11
11
  },
12
+ "BVT": {
13
+ "Mexc": ["BVTUSDT"]
14
+ },
12
15
  "CP": {
13
16
  "Mexc": ["CPUSDT"]
14
17
  },
@@ -67,6 +70,7 @@
67
70
  "client_not_include_exchanges": {
68
71
  "ARMY": [],
69
72
  "AVALOX": [],
73
+ "BVT": [],
70
74
  "CP": [],
71
75
  "ETHF": [],
72
76
  "IONX": [],
@@ -89,6 +93,9 @@
89
93
  "AVALOX": {
90
94
  "AVALOXUSDT": ["Mexc", "Bitmart"]
91
95
  },
96
+ "BVT": {
97
+ "BVTUSDT": ["Mexc"]
98
+ },
92
99
  "CP": {
93
100
  "CPUSDT": ["Mexc"]
94
101
  },
@@ -145,6 +152,11 @@
145
152
  "trades": 1,
146
153
  "orderbook": 1
147
154
  },
155
+ "BVT": {
156
+ "balance": 1,
157
+ "trades": 1,
158
+ "orderbook": 1
159
+ },
148
160
  "CP": {
149
161
  "balance": 1,
150
162
  "trades": 1,
@@ -220,6 +232,7 @@
220
232
  "balance": {
221
233
  "ARMY": true,
222
234
  "AVALOX": true,
235
+ "BVT": true,
223
236
  "CP": true,
224
237
  "ETHF": true,
225
238
  "JYAI": true,
@@ -245,6 +258,7 @@
245
258
  "trades": {
246
259
  "ARMY": true,
247
260
  "AVALOX": true,
261
+ "BVT": true,
248
262
  "CP": true,
249
263
  "ETHF": true,
250
264
  "IONX": true,
@@ -267,6 +281,7 @@
267
281
  "client_levels": {
268
282
  "ARMY": [1, 2, 5, 10, 20, 50, 100],
269
283
  "AVALOX": [1, 2, 5, 10, 20, 50, 100],
284
+ "BVT": [1, 2, 5, 10, 20, 50, 100],
270
285
  "CP": [1, 2, 5, 10, 20, 50, 100],
271
286
  "ETHF": [1, 2, 5, 10, 20, 50, 100],
272
287
  "IONX": [1, 2, 5, 10, 20, 50, 100],
@@ -285,6 +300,7 @@
285
300
  "client_price_index_curs": {
286
301
  "ARMY": ["BTC", "ETH"],
287
302
  "AVALOX": ["BTC", "ETH"],
303
+ "BVT": ["BTC", "ETH"],
288
304
  "CP": ["BTC", "ETH"],
289
305
  "ETHF": ["BTC", "ETH"],
290
306
  "IONX": ["BTC", "ETH"],
@@ -303,6 +319,7 @@
303
319
  "client_telegram_ids": {
304
320
  "ARMY": "-4733838023",
305
321
  "AVALOX": "-1002106426914",
322
+ "BVT": "-4802263491",
306
323
  "CP": "-4718906035",
307
324
  "ETHF": "-4698418127",
308
325
  "IONX": "-1002085059560",
@@ -319,6 +336,11 @@
319
336
  "ULTI": "-4897875978"
320
337
  },
321
338
  "balance_premium": {
339
+ "BVT": {
340
+ "mexc_1": {
341
+ "BVT": 35000
342
+ }
343
+ },
322
344
  "IONX": {
323
345
  "mexc_1": {
324
346
  "IONX": 10000000
@@ -335,6 +357,7 @@
335
357
  "client_telegram_sender": {
336
358
  "ARMY": "icg",
337
359
  "AVALOX": "icg",
360
+ "BVT": "icg",
338
361
  "CP": "icg",
339
362
  "ETHF": "icg",
340
363
  "IONX": "icg",
@@ -359,6 +382,10 @@
359
382
  "username": "avalox@icg.io",
360
383
  "password": "omXfKUcHl2whb4W"
361
384
  },
385
+ "BVT": {
386
+ "username": "bvt@icg.io",
387
+ "password": "DhnK4CXBaenTQR9"
388
+ },
362
389
  "CP": {
363
390
  "username": "cp@icg.io",
364
391
  "password": "Lonk3jbU0xQsMVO"
Binary file
package/index.js CHANGED
@@ -14,4 +14,5 @@ module.exports = {
14
14
  config: safe_require('./config.js'),
15
15
  secretread: safe_require('./secretread.js'),
16
16
  'data-source': safe_require('./data-source.js'),
17
+ benchmarks: safe_require('./config-benchmarks.js'),
17
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icgio/clients-config",
3
- "version": "1.0.155",
3
+ "version": "1.0.157",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
Binary file