diff --git a/README.md b/README.md index 1d5e86ad2c4a..8b9804f9351f 100644 --- a/README.md +++ b/README.md @@ -224,13 +224,13 @@ console.log (ccxt.exchanges) // print all available exchanges All-in-one browser bundle (dependencies included), served from a CDN of your choice: -* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.21.63/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.21.63/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.21.64/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.21.64/dist/ccxt.browser.js 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. ```HTML - + ``` Creates a global `ccxt` object: diff --git a/ccxt.js b/ccxt.js index dacb39151205..685d8d3935ae 100644 --- a/ccxt.js +++ b/ccxt.js @@ -35,7 +35,7 @@ const Exchange = require ('./js/base/Exchange') //----------------------------------------------------------------------------- // this is updated by vss.js when building -const version = '1.21.63' +const version = '1.21.64' Exchange.ccxtVersion = version diff --git a/dist/ccxt.browser.js b/dist/ccxt.browser.js index f71e7e0d1e11..7ab0e043c048 100644 --- a/dist/ccxt.browser.js +++ b/dist/ccxt.browser.js @@ -43,7 +43,7 @@ const Exchange = require ('./js/base/Exchange') //----------------------------------------------------------------------------- // this is updated by vss.js when building -const version = '1.21.63' +const version = '1.21.64' Exchange.ccxtVersion = version @@ -8184,6 +8184,7 @@ module.exports = class bigone extends Exchange { 'fetchDeposits': true, 'fetchMyTrades': true, 'fetchOHLCV': true, + 'fetchOrder': true, 'fetchOrders': true, 'fetchOpenOrders': true, 'fetchClosedOrders': true, diff --git a/doc/README.rst b/doc/README.rst index 48d40ee088ae..4ea028b14001 100644 --- a/doc/README.rst +++ b/doc/README.rst @@ -365,14 +365,14 @@ JavaScript (for use with the `` + Creates a global ``ccxt`` object: diff --git a/doc/install.rst b/doc/install.rst index 34a6f1f5ae2b..c00543255ebc 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -62,14 +62,14 @@ JavaScript (for use with the `` + Creates a global ``ccxt`` object: diff --git a/package-lock.json b/package-lock.json index 2bdccd6aa7da..1b554a0af261 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.21.63", + "version": "1.21.64", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 91ef2ee414ff..afa6b3d23d43 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.21.63", + "version": "1.21.64", "description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges", "main": "./ccxt.js", "unpkg": "dist/ccxt.browser.js", diff --git a/php/base/Exchange.php b/php/base/Exchange.php index 85ff30862b78..7dd8f97c6b73 100644 --- a/php/base/Exchange.php +++ b/php/base/Exchange.php @@ -35,7 +35,7 @@ use Elliptic\EC; use BN\BN; -$version = '1.21.63'; +$version = '1.21.64'; // rounding mode const TRUNCATE = 0; @@ -54,7 +54,7 @@ class Exchange { - const VERSION = '1.21.63'; + const VERSION = '1.21.64'; public static $eth_units = array ( 'wei' => '1', diff --git a/php/bigone.php b/php/bigone.php index 09016dbf994c..cebd23c71340 100644 --- a/php/bigone.php +++ b/php/bigone.php @@ -25,6 +25,7 @@ public function describe () { 'fetchDeposits' => true, 'fetchMyTrades' => true, 'fetchOHLCV' => true, + 'fetchOrder' => true, 'fetchOrders' => true, 'fetchOpenOrders' => true, 'fetchClosedOrders' => true, diff --git a/python/README.rst b/python/README.rst index 4635f571a30b..8f428286bf81 100644 --- a/python/README.rst +++ b/python/README.rst @@ -365,14 +365,14 @@ JavaScript (for use with the `` + Creates a global ``ccxt`` object: diff --git a/python/ccxt/__init__.py b/python/ccxt/__init__.py index 3954d3544538..5f727d1c152f 100644 --- a/python/ccxt/__init__.py +++ b/python/ccxt/__init__.py @@ -22,7 +22,7 @@ # ---------------------------------------------------------------------------- -__version__ = '1.21.63' +__version__ = '1.21.64' # ---------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/__init__.py b/python/ccxt/async_support/__init__.py index 0ea548833767..df0ccc9f0dfd 100644 --- a/python/ccxt/async_support/__init__.py +++ b/python/ccxt/async_support/__init__.py @@ -4,7 +4,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.21.63' +__version__ = '1.21.64' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/base/exchange.py b/python/ccxt/async_support/base/exchange.py index 0c990f7f1d35..a1705b4051d6 100644 --- a/python/ccxt/async_support/base/exchange.py +++ b/python/ccxt/async_support/base/exchange.py @@ -2,7 +2,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.21.63' +__version__ = '1.21.64' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/bigone.py b/python/ccxt/async_support/bigone.py index 4d579957b053..52d300859818 100644 --- a/python/ccxt/async_support/bigone.py +++ b/python/ccxt/async_support/bigone.py @@ -32,6 +32,7 @@ def describe(self): 'fetchDeposits': True, 'fetchMyTrades': True, 'fetchOHLCV': True, + 'fetchOrder': True, 'fetchOrders': True, 'fetchOpenOrders': True, 'fetchClosedOrders': True, diff --git a/python/ccxt/base/exchange.py b/python/ccxt/base/exchange.py index 895e059684af..96ced3b47c94 100644 --- a/python/ccxt/base/exchange.py +++ b/python/ccxt/base/exchange.py @@ -4,7 +4,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.21.63' +__version__ = '1.21.64' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/bigone.py b/python/ccxt/bigone.py index 3444c0eda05e..b8968a20fa2e 100644 --- a/python/ccxt/bigone.py +++ b/python/ccxt/bigone.py @@ -32,6 +32,7 @@ def describe(self): 'fetchDeposits': True, 'fetchMyTrades': True, 'fetchOHLCV': True, + 'fetchOrder': True, 'fetchOrders': True, 'fetchOpenOrders': True, 'fetchClosedOrders': True, diff --git a/wiki/Install.md b/wiki/Install.md index b0c80a5180ad..b7fd04bbee90 100644 --- a/wiki/Install.md +++ b/wiki/Install.md @@ -58,13 +58,13 @@ If that does not help, please, follow here: https://github.com/nodejs/node-gyp#o All-in-one browser bundle (dependencies included), served from a CDN of your choice: -* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.21.63/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.21.63/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.21.64/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.21.64/dist/ccxt.browser.js You can obtain a live-updated version of the bundle by removing the version number from the URL (the `@a.b.c` thing) — however, we do not recommend to do that, as it may break your app eventually. Also, please keep in mind that we are not responsible for the correct operation of those CDN servers. ```HTML - + ``` Creates a global `ccxt` object: