ccxt-ir 4.9.14 → 4.9.16
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 +4 -4
- package/dist/ccxt.browser.min.js +3 -3
- package/dist/cjs/ccxt.js +4 -1
- package/dist/cjs/src/abantether.js +2 -2
- package/dist/cjs/src/abstract/bitunix.js +1 -1
- package/dist/cjs/src/abstract/tehran_exchange.js +11 -0
- package/dist/cjs/src/bitunix.js +317 -317
- package/dist/cjs/src/hamtapay.js +4 -1
- package/dist/cjs/src/kcex.js +326 -326
- package/dist/cjs/src/sarmayex.js +367 -366
- package/dist/cjs/src/tehran_exchange.js +334 -0
- package/dist/cjs/src/toobit.js +436 -382
- package/dist/cjs/src/xt.js +5171 -5171
- package/js/ccxt.d.ts +5 -2
- package/js/ccxt.js +4 -2
- package/js/src/abantether.js +2 -2
- package/js/src/abstract/bitunix.d.ts +9 -9
- package/js/src/abstract/bitunix.js +5 -5
- package/js/src/abstract/kcex.d.ts +10 -10
- package/js/src/abstract/tehran_exchange.d.ts +9 -0
- package/js/src/abstract/tehran_exchange.js +11 -0
- package/js/src/abstract/toobit.d.ts +10 -9
- package/js/src/bitunix.d.ts +21 -21
- package/js/src/bitunix.js +320 -320
- package/js/src/hamtapay.js +4 -1
- package/js/src/kcex.d.ts +21 -21
- package/js/src/kcex.js +329 -329
- package/js/src/sarmayex.js +370 -369
- package/js/src/static_dependencies/noble-curves/abstract/weierstrass.d.ts +204 -204
- package/js/src/tehran_exchange.d.ts +21 -0
- package/js/src/tehran_exchange.js +333 -0
- package/js/src/toobit.js +439 -385
- package/js/src/xt.js +5178 -5178
- 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
|
|
|
@@ -242,13 +242,13 @@ console.log(version, Object.keys(exchanges));
|
|
|
242
242
|
|
|
243
243
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
|
244
244
|
|
|
245
|
-
- jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.9.
|
|
246
|
-
- unpkg: https://unpkg.com/ccxt@4.9.
|
|
245
|
+
- jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.9.16/dist/ccxt.browser.min.js
|
|
246
|
+
- unpkg: https://unpkg.com/ccxt@4.9.16/dist/ccxt.browser.min.js
|
|
247
247
|
|
|
248
248
|
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.
|
|
249
249
|
|
|
250
250
|
```HTML
|
|
251
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.9.
|
|
251
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.9.16/dist/ccxt.browser.min.js"></script>
|
|
252
252
|
console.log (ccxt.exchanges) // print all available exchanges
|
|
253
253
|
```
|
|
254
254
|
|