ccxt 4.4.64 → 4.4.65
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 +5 -6
- package/dist/ccxt.browser.min.js +2 -2
- package/dist/cjs/ccxt.js +1 -6
- package/dist/cjs/src/cryptocom.js +2 -0
- package/dist/cjs/src/hyperliquid.js +120 -73
- package/dist/cjs/src/paradex.js +62 -14
- package/dist/cjs/src/pro/bybit.js +3 -2
- package/dist/cjs/src/pro/gate.js +5 -2
- package/dist/cjs/src/pro/hyperliquid.js +3 -3
- package/js/ccxt.d.ts +2 -8
- package/js/ccxt.js +2 -6
- package/js/src/cryptocom.js +2 -0
- package/js/src/hyperliquid.d.ts +12 -3
- package/js/src/hyperliquid.js +120 -73
- package/js/src/paradex.d.ts +2 -0
- package/js/src/paradex.js +62 -14
- package/js/src/pro/bybit.js +3 -2
- package/js/src/pro/gate.js +5 -2
- package/js/src/pro/hyperliquid.d.ts +0 -1
- package/js/src/pro/hyperliquid.js +3 -3
- package/package.json +1 -1
- package/js/src/abstract/currencycom.d.ts +0 -71
- package/js/src/abstract/currencycom.js +0 -11
- package/js/src/currencycom.d.ts +0 -284
- package/js/src/currencycom.js +0 -2123
- package/js/src/pro/currencycom.d.ts +0 -88
- package/js/src/pro/currencycom.js +0 -564
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
|
|
|
@@ -59,7 +59,7 @@ Current feature list:
|
|
|
59
59
|
|
|
60
60
|
## Supported Cryptocurrency Exchanges
|
|
61
61
|
|
|
62
|
-
The CCXT library currently supports the following
|
|
62
|
+
The CCXT library currently supports the following 104 cryptocurrency exchange markets and trading APIs:
|
|
63
63
|
|
|
64
64
|
| logo | id | name | ver | type | certified | pro |
|
|
65
65
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------|----------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------:|--------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
|
|
@@ -111,7 +111,6 @@ The CCXT library currently supports the following 105 cryptocurrency exchange ma
|
|
|
111
111
|
| [](https://coins.ph/) | coinsph | [Coins.ph](https://coins.ph/) | [](https://coins-docs.github.io/rest-api) |  | | |
|
|
112
112
|
| [](https://www.coinspot.com.au/register?code=PJURCU) | coinspot | [CoinSpot](https://www.coinspot.com.au/register?code=PJURCU) | [](https://www.coinspot.com.au/api) |  | | |
|
|
113
113
|
| [](https://crypto.com/exch/kdacthrnxt) | cryptocom | [Crypto.com](https://crypto.com/exch/kdacthrnxt) | [](https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html) |  | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
|
114
|
-
| [](https://currency.com/trading/signup?c=362jaimv&pid=referral) | currencycom | [Currency.com](https://currency.com/trading/signup?c=362jaimv&pid=referral) | [](https://currency.com/api) |  | | [](https://ccxt.pro) |
|
|
115
114
|
| [](https://app.defx.com/join/6I2CZ7) | defx | [Defx X](https://app.defx.com/join/6I2CZ7) | [](https://docs.defx.com/docs) |  | | |
|
|
116
115
|
| [](https://www.delta.exchange/app/signup/?code=IULYNB) | delta | [Delta Exchange](https://www.delta.exchange/app/signup/?code=IULYNB) | [](https://docs.delta.exchange) |  | | |
|
|
117
116
|
| [](https://www.deribit.com/reg-1189.4038) | deribit | [Deribit](https://www.deribit.com/reg-1189.4038) | [](https://docs.deribit.com/v2) |  | | [](https://ccxt.pro) |
|
|
@@ -228,13 +227,13 @@ console.log(version, Object.keys(exchanges));
|
|
|
228
227
|
|
|
229
228
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
|
230
229
|
|
|
231
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
|
232
|
-
* unpkg: https://unpkg.com/ccxt@4.4.
|
|
230
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.65/dist/ccxt.browser.min.js
|
|
231
|
+
* unpkg: https://unpkg.com/ccxt@4.4.65/dist/ccxt.browser.min.js
|
|
233
232
|
|
|
234
233
|
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.
|
|
235
234
|
|
|
236
235
|
```HTML
|
|
237
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
|
236
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.65/dist/ccxt.browser.min.js"></script>
|
|
238
237
|
```
|
|
239
238
|
|
|
240
239
|
Creates a global `ccxt` object:
|