ccxt-ir 4.7.0 → 4.8.0
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 +7 -7
- package/dist/ccxt.browser.min.js +2 -2
- package/dist/cjs/ccxt.js +4 -1
- package/dist/cjs/src/abstract/kcex.js +11 -0
- package/dist/cjs/src/kcex.js +336 -0
- package/js/ccxt.d.ts +5 -2
- package/js/ccxt.js +4 -2
- package/js/src/abstract/kcex.d.ts +10 -0
- package/js/src/abstract/kcex.js +11 -0
- package/js/src/base/Exchange.d.ts +2 -2
- package/js/src/coinbaseexchange.d.ts +1 -1
- package/js/src/kcex.d.ts +21 -0
- package/js/src/kcex.js +335 -0
- package/js/src/protobuf/mexc/compiled.d.cts +6 -0
- package/js/src/static_dependencies/fflake/browser.d.ts +5 -5
- package/js/src/static_dependencies/jsencrypt/lib/jsbn/jsbn.d.ts +1 -1
- package/js/src/static_dependencies/qs/formats.d.cts +6 -0
- package/js/src/static_dependencies/qs/index.d.cts +6 -0
- package/js/src/static_dependencies/qs/parse.d.cts +6 -0
- package/js/src/static_dependencies/qs/stringify.d.cts +6 -0
- package/js/src/static_dependencies/qs/utils.d.cts +6 -0
- package/js/src/static_dependencies/starknet/utils/calldata/parser/index.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# CCXT – CryptoCurrency eXchange Trading Library
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/ccxt) [](https://npmjs.com/package/ccxt) [](https://pypi.python.org/pypi/ccxt) [](https://www.nuget.org/packages/ccxt) [](https://godoc.org/github.com/ccxt/ccxt/go/v4) [](https://discord.gg/ccxt) [](https://www.npmjs.com/package/ccxt) [](https://npmjs.com/package/ccxt) [](https://pypi.python.org/pypi/ccxt) [](https://www.nuget.org/packages/ccxt) [](https://godoc.org/github.com/ccxt/ccxt/go/v4) [](https://discord.gg/ccxt) [](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [](https://x.com/ccxt_official)
|
|
4
4
|
|
|
5
5
|
A `JavaScript` / `Python` / `PHP` / `C#` / `Go` library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs.
|
|
6
6
|
|
|
@@ -243,20 +243,20 @@ console.log(version, Object.keys(exchanges));
|
|
|
243
243
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
|
244
244
|
|
|
245
245
|
<<<<<<< HEAD
|
|
246
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.
|
|
247
|
-
* unpkg: https://unpkg.com/ccxt@4.
|
|
246
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.8.0/dist/ccxt.browser.min.js
|
|
247
|
+
* unpkg: https://unpkg.com/ccxt@4.8.0/dist/ccxt.browser.min.js
|
|
248
248
|
=======
|
|
249
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.
|
|
250
|
-
* unpkg: https://unpkg.com/ccxt@4.
|
|
249
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.8.0/dist/ccxt.browser.min.js
|
|
250
|
+
* unpkg: https://unpkg.com/ccxt@4.8.0/dist/ccxt.browser.min.js
|
|
251
251
|
>>>>>>> master
|
|
252
252
|
|
|
253
253
|
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.
|
|
254
254
|
|
|
255
255
|
```HTML
|
|
256
256
|
<<<<<<< HEAD
|
|
257
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.
|
|
257
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.8.0/dist/ccxt.browser.min.js"></script>
|
|
258
258
|
=======
|
|
259
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.
|
|
259
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.8.0/dist/ccxt.browser.min.js"></script>
|
|
260
260
|
>>>>>>> master
|
|
261
261
|
console.log (ccxt.exchanges) // print all available exchanges
|
|
262
262
|
```
|