ccxt 4.1.78 → 4.1.79

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.
package/README.md CHANGED
@@ -209,13 +209,13 @@ console.log(version, Object.keys(exchanges));
209
209
 
210
210
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
211
211
 
212
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.1.78/dist/ccxt.browser.js
213
- * unpkg: https://unpkg.com/ccxt@4.1.78/dist/ccxt.browser.js
212
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.1.79/dist/ccxt.browser.js
213
+ * unpkg: https://unpkg.com/ccxt@4.1.79/dist/ccxt.browser.js
214
214
 
215
215
  CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
216
216
 
217
217
  ```HTML
218
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.1.78/dist/ccxt.browser.js"></script>
218
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.1.79/dist/ccxt.browser.js"></script>
219
219
  ```
220
220
 
221
221
  Creates a global `ccxt` object:
@@ -28254,7 +28254,7 @@ class bingx extends _abstract_bingx_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
28254
28254
  // {
28255
28255
  // "symbol": "BTC-USDT",
28256
28256
  // "priceChange": "52.5",
28257
- // "priceChangePercent": "0.31",
28257
+ // "priceChangePercent": "0.31%", // they started to add the percent sign in value
28258
28258
  // "lastPrice": "16880.5",
28259
28259
  // "lastQty": "2.2238",
28260
28260
  // "highPrice": "16897.5",
@@ -28285,8 +28285,10 @@ class bingx extends _abstract_bingx_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
28285
28285
  const close = this.safeString(ticker, 'lastPrice');
28286
28286
  const quoteVolume = this.safeString(ticker, 'quoteVolume');
28287
28287
  const baseVolume = this.safeString(ticker, 'volume');
28288
- let percentage = this.safeString(ticker, 'priceChangePercent', ''); // priceChangePercent: '5.66%',
28289
- percentage = percentage.replace('%', '');
28288
+ let percentage = this.safeString(ticker, 'priceChangePercent');
28289
+ if (percentage !== undefined) {
28290
+ percentage = percentage.replace('%', '');
28291
+ }
28290
28292
  const ts = this.safeInteger(ticker, 'closeTime');
28291
28293
  const datetime = this.iso8601(ts);
28292
28294
  const bid = this.safeString(ticker, 'bidPrice');
@@ -85727,6 +85729,7 @@ class coinbase extends _abstract_coinbase_js__WEBPACK_IMPORTED_MODULE_0__/* ["de
85727
85729
  'brokerage/product_book',
85728
85730
  'brokerage/best_bid_ask',
85729
85731
  'brokerage/convert/trade/{trade_id}',
85732
+ 'brokerage/time',
85730
85733
  ],
85731
85734
  'post': [
85732
85735
  'brokerage/orders',
@@ -103810,6 +103813,9 @@ class cryptocom extends _abstract_cryptocom_js__WEBPACK_IMPORTED_MODULE_0__/* ["
103810
103813
  'private/get-currency-networks': 10 / 3,
103811
103814
  'private/get-deposit-history': 10 / 3,
103812
103815
  'private/get-deposit-address': 10 / 3,
103816
+ 'private/export/create-export-request': 10 / 3,
103817
+ 'private/export/get-export-requests': 10 / 3,
103818
+ 'private/export/download-export-output': 10 / 3,
103813
103819
  'private/get-account-summary': 10 / 3,
103814
103820
  'private/create-order': 2 / 3,
103815
103821
  'private/cancel-order': 2 / 3,
@@ -103828,6 +103834,7 @@ class cryptocom extends _abstract_cryptocom_js__WEBPACK_IMPORTED_MODULE_0__/* ["
103828
103834
  'private/otc/accept-quote': 100,
103829
103835
  'private/otc/get-quote-history': 10 / 3,
103830
103836
  'private/otc/get-trade-history': 10 / 3,
103837
+ 'private/otc/create-order': 10 / 3,
103831
103838
  },
103832
103839
  },
103833
103840
  },
@@ -288589,7 +288596,7 @@ SOFTWARE.
288589
288596
 
288590
288597
  //-----------------------------------------------------------------------------
288591
288598
  // this is updated by vss.js when building
288592
- const version = '4.1.78';
288599
+ const version = '4.1.79';
288593
288600
  _src_base_Exchange_js__WEBPACK_IMPORTED_MODULE_0__/* .Exchange */ .e.ccxtVersion = version;
288594
288601
  //-----------------------------------------------------------------------------
288595
288602