ccxt 4.4.87 → 4.4.88
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 +3 -3
- package/dist/ccxt.browser.min.js +2 -2
- package/dist/cjs/ccxt.js +1 -1
- package/dist/cjs/src/base/Exchange.js +3 -1
- package/dist/cjs/src/bybit.js +19 -80
- package/dist/cjs/src/modetrade.js +7 -7
- package/js/ccxt.d.ts +1 -1
- package/js/ccxt.js +1 -1
- package/js/src/base/Exchange.js +3 -1
- package/js/src/bybit.js +19 -80
- package/js/src/modetrade.js +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -231,13 +231,13 @@ console.log(version, Object.keys(exchanges));
|
|
|
231
231
|
|
|
232
232
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
|
233
233
|
|
|
234
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
|
235
|
-
* unpkg: https://unpkg.com/ccxt@4.4.
|
|
234
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.88/dist/ccxt.browser.min.js
|
|
235
|
+
* unpkg: https://unpkg.com/ccxt@4.4.88/dist/ccxt.browser.min.js
|
|
236
236
|
|
|
237
237
|
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.
|
|
238
238
|
|
|
239
239
|
```HTML
|
|
240
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
|
240
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.88/dist/ccxt.browser.min.js"></script>
|
|
241
241
|
```
|
|
242
242
|
|
|
243
243
|
Creates a global `ccxt` object:
|