ccxt 4.1.41 → 4.1.43
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 +6 -5
- package/dist/ccxt.browser.js +2891 -370
- package/dist/ccxt.browser.min.js +3 -3
- package/dist/cjs/ccxt.js +4 -1
- package/dist/cjs/src/abstract/coinlist.js +9 -0
- package/dist/cjs/src/ascendex.js +162 -32
- package/dist/cjs/src/coinlist.js +2327 -0
- package/dist/cjs/src/probit.js +35 -1
- package/js/ccxt.d.ts +5 -2
- package/js/ccxt.js +4 -2
- package/js/src/abstract/coinlist.d.ts +49 -0
- package/js/src/abstract/coinlist.js +11 -0
- package/js/src/ascendex.d.ts +3 -1
- package/js/src/ascendex.js +163 -33
- package/js/src/coinlist.d.ts +142 -0
- package/js/src/coinlist.js +2328 -0
- package/js/src/probit.d.ts +2 -2
- package/js/src/probit.js +35 -1
- package/package.json +1 -1
- package/skip-tests.json +11 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# CCXT – CryptoCurrency eXchange Trading Library
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.com/ccxt/ccxt) [](https://npmjs.com/package/ccxt) [](https://pypi.python.org/pypi/ccxt) [](https://www.npmjs.com/package/ccxt) [](https://discord.gg/ccxt) [](https://travis-ci.com/ccxt/ccxt) [](https://npmjs.com/package/ccxt) [](https://pypi.python.org/pypi/ccxt) [](https://www.npmjs.com/package/ccxt) [](https://discord.gg/ccxt) [](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [](https://twitter.com/ccxt_official)
|
|
4
4
|
|
|
5
5
|
A JavaScript / Python / PHP / C# library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs.
|
|
6
6
|
|
|
@@ -57,7 +57,7 @@ Current feature list:
|
|
|
57
57
|
|
|
58
58
|
## Supported Cryptocurrency Exchange Markets
|
|
59
59
|
|
|
60
|
-
The CCXT library currently supports the following
|
|
60
|
+
The CCXT library currently supports the following 98 cryptocurrency exchange markets and trading APIs:
|
|
61
61
|
|
|
62
62
|
| logo | id | name | ver | certified | pro |
|
|
63
63
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|---------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------:|-----------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
|
|
@@ -105,6 +105,7 @@ The CCXT library currently supports the following 97 cryptocurrency exchange mar
|
|
|
105
105
|
| [](https://coincheck.com) | coincheck | [coincheck](https://coincheck.com) | [](https://coincheck.com/documents/exchange/api) | | |
|
|
106
106
|
| [](https://www.coinex.com/register?refer_code=yw5fz) | coinex | [CoinEx](https://www.coinex.com/register?refer_code=yw5fz) | [](https://github.com/coinexcom/coinex_exchange_api/wiki) | | [](https://ccxt.pro) |
|
|
107
107
|
| [](https://coinfalcon.com/?ref=CFJSVGTUPASB) | coinfalcon | [CoinFalcon](https://coinfalcon.com/?ref=CFJSVGTUPASB) | [](https://docs.coinfalcon.com) | | |
|
|
108
|
+
| [](https://coinlist.co) | coinlist | [Coinlist](https://coinlist.co) | [](https://trade-docs.coinlist.co) | | |
|
|
108
109
|
| [](https://coinmate.io?referral=YTFkM1RsOWFObVpmY1ZjMGREQmpTRnBsWjJJNVp3PT0) | coinmate | [CoinMate](https://coinmate.io?referral=YTFkM1RsOWFObVpmY1ZjMGREQmpTRnBsWjJJNVp3PT0) | [](https://coinmate.docs.apiary.io) | | |
|
|
109
110
|
| [](https://coinone.co.kr) | coinone | [CoinOne](https://coinone.co.kr) | [](https://doc.coinone.co.kr) | | |
|
|
110
111
|
| [](https://coins.ph/) | coinsph | [Coins.ph](https://coins.ph/) | [](https://coins-docs.github.io/rest-api) | | |
|
|
@@ -215,13 +216,13 @@ console.log(version, Object.keys(exchanges));
|
|
|
215
216
|
|
|
216
217
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
|
217
218
|
|
|
218
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.1.
|
|
219
|
-
* unpkg: https://unpkg.com/ccxt@4.1.
|
|
219
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.1.43/dist/ccxt.browser.js
|
|
220
|
+
* unpkg: https://unpkg.com/ccxt@4.1.43/dist/ccxt.browser.js
|
|
220
221
|
|
|
221
222
|
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.
|
|
222
223
|
|
|
223
224
|
```HTML
|
|
224
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.1.
|
|
225
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.1.43/dist/ccxt.browser.js"></script>
|
|
225
226
|
```
|
|
226
227
|
|
|
227
228
|
Creates a global `ccxt` object:
|