From 8decf0dfef16abdc5ffaf29ea2f7169255697bc9 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Mon, 14 Mar 2022 07:07:31 +0000 Subject: [PATCH] 1.76.10 [ci skip] --- README.md | 6 +++--- ccxt.js | 2 +- dist/ccxt.browser.js | 10 +++++----- doc/readme.rst | 6 +++--- package-lock.json | 4 ++-- package.json | 16 ++++++++-------- php/Exchange.php | 4 ++-- php/async/Exchange.php | 4 ++-- php/async/bkex.php | 8 ++++---- php/bkex.php | 8 ++++---- python/README.md | 6 +++--- python/ccxt/__init__.py | 2 +- python/ccxt/async_support/__init__.py | 2 +- python/ccxt/async_support/base/exchange.py | 2 +- python/ccxt/async_support/bkex.py | 8 ++++---- python/ccxt/base/exchange.py | 2 +- python/ccxt/bkex.py | 8 ++++---- python/package.json | 16 ++++++++-------- wiki/Install.md | 6 +++--- 19 files changed, 60 insertions(+), 60 deletions(-) diff --git a/README.md b/README.md index 06be99389783f..5d5cd53dd0f79 100644 --- a/README.md +++ b/README.md @@ -226,13 +226,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.76.9/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.76.9/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.76.10/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.76.10/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 d7e5bfa08c8e2..bef1321c6e022 100644 --- a/ccxt.js +++ b/ccxt.js @@ -36,7 +36,7 @@ const Exchange = require ('./js/base/Exchange') //----------------------------------------------------------------------------- // this is updated by vss.js when building -const version = '1.76.9' +const version = '1.76.10' Exchange.ccxtVersion = version diff --git a/dist/ccxt.browser.js b/dist/ccxt.browser.js index b52a6c35e734f..8de4c129228d0 100644 --- a/dist/ccxt.browser.js +++ b/dist/ccxt.browser.js @@ -44,7 +44,7 @@ const Exchange = require ('./js/base/Exchange') //----------------------------------------------------------------------------- // this is updated by vss.js when building -const version = '1.76.9' +const version = '1.76.10' Exchange.ccxtVersion = version @@ -42056,8 +42056,8 @@ module.exports = class bkex extends Exchange { 'fetchTickers': true, 'fetchTime': true, 'fetchTrades': true, - 'fetchTradingFee': undefined, - 'fetchTradingFees': undefined, + 'fetchTradingFee': false, + 'fetchTradingFees': false, 'fetchTradingLimits': undefined, 'fetchTransactions': undefined, 'fetchTransfers': undefined, @@ -42162,8 +42162,8 @@ module.exports = class bkex extends Exchange { 'trading': { 'tierBased': false, 'percentage': true, - 'maker': 0.15 / 100, - 'taker': 0.2 / 100, + 'maker': this.parseNumber ('0.0015'), + 'taker': this.parseNumber ('0.002'), }, }, 'options': { diff --git a/doc/readme.rst b/doc/readme.rst index 910c6d889a923..c6a8cbae3741c 100644 --- a/doc/readme.rst +++ b/doc/readme.rst @@ -2011,14 +2011,14 @@ JavaScript (for use with the `` + Creates a global ``ccxt`` object: diff --git a/package-lock.json b/package-lock.json index 44899a8367fa2..197a7c2d7c086 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ccxt", - "version": "1.76.9", + "version": "1.76.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ccxt", - "version": "1.76.9", + "version": "1.76.10", "hasInstallScript": true, "license": "MIT", "devDependencies": { diff --git a/package.json b/package.json index b9a9d1a2f928a..b12902b206512 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.76.9", + "version": "1.76.10", "description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges", "main": "./ccxt.js", "unpkg": "dist/ccxt.browser.js", @@ -215,7 +215,7 @@ "ccex", "C-CEX", "cex", - "CEX.IO", + "cex.io", "CHBTC", "ChileBit", "chilebit.net", @@ -385,7 +385,7 @@ "fybse.se", "fybsg.com", "gatecoin.com", - "gate.io", + "Gate.io", "gdax.com", "gemini.com", "getbtc.org", @@ -502,8 +502,8 @@ "dsxglobal.com", "bitvavo.com", "Bitvavo", - "currency.com", - "waves.exchange", + "Currency.com", + "Waves.Exchange", "phemex.com", "Phemex", "huobi.co.jp", @@ -552,7 +552,7 @@ "Binance USDⓈ-M", "eqonex.com", "EQONEX", - "fmfw.io", + "FMFW.io", "mexc.com", "MEXC Global", "bitrue.com", @@ -566,8 +566,8 @@ "Zonda", "futures.kucoin.com", "KuCoin Futures", - "blockchain.com", - "crypto.com", + "Blockchain.com", + "Crypto.com", "wazirx.com", "WazirX", "woo.org", diff --git a/php/Exchange.php b/php/Exchange.php index 20737c4f7256a..b74758ca6cacd 100644 --- a/php/Exchange.php +++ b/php/Exchange.php @@ -36,7 +36,7 @@ use BN\BN; use Exception; -$version = '1.76.9'; +$version = '1.76.10'; // rounding mode const TRUNCATE = 0; @@ -55,7 +55,7 @@ class Exchange { - const VERSION = '1.76.9'; + const VERSION = '1.76.10'; private static $base58_alphabet = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'; private static $base58_encoder = null; diff --git a/php/async/Exchange.php b/php/async/Exchange.php index 322d852291a4c..7836bafba78e2 100644 --- a/php/async/Exchange.php +++ b/php/async/Exchange.php @@ -28,11 +28,11 @@ include 'Throttle.php'; -$version = '1.76.9'; +$version = '1.76.10'; class Exchange extends \ccxt\Exchange { - const VERSION = '1.76.9'; + const VERSION = '1.76.10'; public static $loop; public static $kernel; diff --git a/php/async/bkex.php b/php/async/bkex.php index 3cae4fe33f83f..16f4bb370f9b8 100644 --- a/php/async/bkex.php +++ b/php/async/bkex.php @@ -85,8 +85,8 @@ public function describe() { 'fetchTickers' => true, 'fetchTime' => true, 'fetchTrades' => true, - 'fetchTradingFee' => null, - 'fetchTradingFees' => null, + 'fetchTradingFee' => false, + 'fetchTradingFees' => false, 'fetchTradingLimits' => null, 'fetchTransactions' => null, 'fetchTransfers' => null, @@ -191,8 +191,8 @@ public function describe() { 'trading' => array( 'tierBased' => false, 'percentage' => true, - 'maker' => 0.15 / 100, - 'taker' => 0.2 / 100, + 'maker' => $this->parse_number('0.0015'), + 'taker' => $this->parse_number('0.002'), ), ), 'options' => array( diff --git a/php/bkex.php b/php/bkex.php index 105c41cb41d97..c4fe4ac9a3cc2 100644 --- a/php/bkex.php +++ b/php/bkex.php @@ -85,8 +85,8 @@ public function describe() { 'fetchTickers' => true, 'fetchTime' => true, 'fetchTrades' => true, - 'fetchTradingFee' => null, - 'fetchTradingFees' => null, + 'fetchTradingFee' => false, + 'fetchTradingFees' => false, 'fetchTradingLimits' => null, 'fetchTransactions' => null, 'fetchTransfers' => null, @@ -191,8 +191,8 @@ public function describe() { 'trading' => array( 'tierBased' => false, 'percentage' => true, - 'maker' => 0.15 / 100, - 'taker' => 0.2 / 100, + 'maker' => $this->parse_number('0.0015'), + 'taker' => $this->parse_number('0.002'), ), ), 'options' => array( diff --git a/python/README.md b/python/README.md index 06be99389783f..5d5cd53dd0f79 100644 --- a/python/README.md +++ b/python/README.md @@ -226,13 +226,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.76.9/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.76.9/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.76.10/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.76.10/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/python/ccxt/__init__.py b/python/ccxt/__init__.py index b27269dd1a875..7ee9ffb6b9762 100644 --- a/python/ccxt/__init__.py +++ b/python/ccxt/__init__.py @@ -22,7 +22,7 @@ # ---------------------------------------------------------------------------- -__version__ = '1.76.9' +__version__ = '1.76.10' # ---------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/__init__.py b/python/ccxt/async_support/__init__.py index 0e91af0da9cf5..fc0d1094862d3 100644 --- a/python/ccxt/async_support/__init__.py +++ b/python/ccxt/async_support/__init__.py @@ -4,7 +4,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.76.9' +__version__ = '1.76.10' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/base/exchange.py b/python/ccxt/async_support/base/exchange.py index 5820f290ff9f2..699626930fabe 100644 --- a/python/ccxt/async_support/base/exchange.py +++ b/python/ccxt/async_support/base/exchange.py @@ -2,7 +2,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.76.9' +__version__ = '1.76.10' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/bkex.py b/python/ccxt/async_support/bkex.py index cc7974deacf4f..0661b2653e44f 100644 --- a/python/ccxt/async_support/bkex.py +++ b/python/ccxt/async_support/bkex.py @@ -87,8 +87,8 @@ def describe(self): 'fetchTickers': True, 'fetchTime': True, 'fetchTrades': True, - 'fetchTradingFee': None, - 'fetchTradingFees': None, + 'fetchTradingFee': False, + 'fetchTradingFees': False, 'fetchTradingLimits': None, 'fetchTransactions': None, 'fetchTransfers': None, @@ -193,8 +193,8 @@ def describe(self): 'trading': { 'tierBased': False, 'percentage': True, - 'maker': 0.15 / 100, - 'taker': 0.2 / 100, + 'maker': self.parse_number('0.0015'), + 'taker': self.parse_number('0.002'), }, }, 'options': { diff --git a/python/ccxt/base/exchange.py b/python/ccxt/base/exchange.py index e7df68928b105..06f3270028a6c 100644 --- a/python/ccxt/base/exchange.py +++ b/python/ccxt/base/exchange.py @@ -4,7 +4,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.76.9' +__version__ = '1.76.10' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/bkex.py b/python/ccxt/bkex.py index 23c887a5a5ba2..1f38f07dfc014 100644 --- a/python/ccxt/bkex.py +++ b/python/ccxt/bkex.py @@ -87,8 +87,8 @@ def describe(self): 'fetchTickers': True, 'fetchTime': True, 'fetchTrades': True, - 'fetchTradingFee': None, - 'fetchTradingFees': None, + 'fetchTradingFee': False, + 'fetchTradingFees': False, 'fetchTradingLimits': None, 'fetchTransactions': None, 'fetchTransfers': None, @@ -193,8 +193,8 @@ def describe(self): 'trading': { 'tierBased': False, 'percentage': True, - 'maker': 0.15 / 100, - 'taker': 0.2 / 100, + 'maker': self.parse_number('0.0015'), + 'taker': self.parse_number('0.002'), }, }, 'options': { diff --git a/python/package.json b/python/package.json index b9a9d1a2f928a..b12902b206512 100644 --- a/python/package.json +++ b/python/package.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.76.9", + "version": "1.76.10", "description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges", "main": "./ccxt.js", "unpkg": "dist/ccxt.browser.js", @@ -215,7 +215,7 @@ "ccex", "C-CEX", "cex", - "CEX.IO", + "cex.io", "CHBTC", "ChileBit", "chilebit.net", @@ -385,7 +385,7 @@ "fybse.se", "fybsg.com", "gatecoin.com", - "gate.io", + "Gate.io", "gdax.com", "gemini.com", "getbtc.org", @@ -502,8 +502,8 @@ "dsxglobal.com", "bitvavo.com", "Bitvavo", - "currency.com", - "waves.exchange", + "Currency.com", + "Waves.Exchange", "phemex.com", "Phemex", "huobi.co.jp", @@ -552,7 +552,7 @@ "Binance USDⓈ-M", "eqonex.com", "EQONEX", - "fmfw.io", + "FMFW.io", "mexc.com", "MEXC Global", "bitrue.com", @@ -566,8 +566,8 @@ "Zonda", "futures.kucoin.com", "KuCoin Futures", - "blockchain.com", - "crypto.com", + "Blockchain.com", + "Crypto.com", "wazirx.com", "WazirX", "woo.org", diff --git a/wiki/Install.md b/wiki/Install.md index ea0f4c83505e2..41b8d5295985d 100644 --- a/wiki/Install.md +++ b/wiki/Install.md @@ -40,13 +40,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.76.9/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.76.9/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.76.10/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.76.10/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: