ccxt 4.5.25 → 4.5.26
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/bitmart.js +2 -1
- package/js/ccxt.d.ts +1 -1
- package/js/ccxt.js +1 -1
- package/js/src/bitmart.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -223,13 +223,13 @@ console.log(version, Object.keys(exchanges));
|
|
|
223
223
|
|
|
224
224
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
|
225
225
|
|
|
226
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.5.
|
|
227
|
-
* unpkg: https://unpkg.com/ccxt@4.5.
|
|
226
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.5.26/dist/ccxt.browser.min.js
|
|
227
|
+
* unpkg: https://unpkg.com/ccxt@4.5.26/dist/ccxt.browser.min.js
|
|
228
228
|
|
|
229
229
|
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.
|
|
230
230
|
|
|
231
231
|
```HTML
|
|
232
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.5.
|
|
232
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.5.26/dist/ccxt.browser.min.js"></script>
|
|
233
233
|
```
|
|
234
234
|
|
|
235
235
|
Creates a global `ccxt` object:
|