@icgio/icg-exchanges-wrapper 1.10.34 → 1.10.36

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.
@@ -941,6 +941,11 @@ module.exports = class Orders {
941
941
  })
942
942
  }
943
943
  for (let exchange in Exchanges) {
944
+ if (Exchanges[exchange].exchange_type === 'dex') {
945
+ for (let pair of exchange_pairs[exchange]) {
946
+ _.set(this.previous_orders_canceled_exchange_pair, [exchange, pair], true)
947
+ }
948
+ }
944
949
  if (Exchanges[exchange].get_all_open_orders_ws) {
945
950
  if (Exchanges[exchange].ws_status().trading === 'n-opened') Exchanges[exchange].ws_account()
946
951
  get_all_open_orders_ws(exchange)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icgio/icg-exchanges-wrapper",
3
- "version": "1.10.34",
3
+ "version": "1.10.36",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -17,12 +17,12 @@
17
17
  },
18
18
  "homepage": "https://github.com/icgio/icg-exchanges-wrapper#readme",
19
19
  "dependencies": {
20
- "@icgio/icg-exchanges": "^1.28.24",
21
- "@icgio/icg-exchanges-data": "^1.6.80",
20
+ "@icgio/icg-exchanges": "^1.28.25",
21
+ "@icgio/icg-exchanges-data": "^1.6.81",
22
22
  "@icgio/icg-utils": "^1.7.40",
23
23
  "influx": "^5.7.0",
24
24
  "lodash": "^4.17.20",
25
25
  "uuid": "^9.0.0",
26
- "ws": "^6.2.1"
26
+ "ws": "^8.13.0"
27
27
  }
28
28
  }