ccxt 4.3.82 → 4.3.83
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 -4
- package/dist/ccxt.browser.min.js +2 -2
- package/dist/cjs/ccxt.js +1 -1
- package/dist/cjs/src/binance.js +25 -4
- package/dist/cjs/src/gate.js +2 -2
- package/dist/cjs/src/phemex.js +7 -3
- package/dist/cjs/src/pro/okx.js +2 -0
- package/dist/cjs/src/pro/phemex.js +1 -0
- package/js/ccxt.d.ts +1 -1
- package/js/ccxt.js +1 -1
- package/js/src/binance.js +25 -4
- package/js/src/gate.js +2 -2
- package/js/src/phemex.js +7 -3
- package/js/src/pro/okx.js +2 -0
- package/js/src/pro/phemex.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,7 +20,6 @@ Current feature list:
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
## Sponsored Promotion
|
|
23
|
-
[](https://bingx.com/en/act/contestNew/7947320527/)
|
|
24
23
|
|
|
25
24
|
## See Also
|
|
26
25
|
|
|
@@ -220,13 +219,13 @@ console.log(version, Object.keys(exchanges));
|
|
|
220
219
|
|
|
221
220
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
|
222
221
|
|
|
223
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
|
224
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
|
222
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.83/dist/ccxt.browser.min.js
|
|
223
|
+
* unpkg: https://unpkg.com/ccxt@4.3.83/dist/ccxt.browser.min.js
|
|
225
224
|
|
|
226
225
|
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.
|
|
227
226
|
|
|
228
227
|
```HTML
|
|
229
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
|
228
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.83/dist/ccxt.browser.min.js"></script>
|
|
230
229
|
```
|
|
231
230
|
|
|
232
231
|
Creates a global `ccxt` object:
|