Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4c2e7d2

Browse files
author
Travis CI
committed
1.18.453
[ci skip]
1 parent 11a8ef0 commit 4c2e7d2

10 files changed

Lines changed: 18 additions & 18 deletions

File tree

ccxt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const Exchange = require ('./js/base/Exchange')
3737
//-----------------------------------------------------------------------------
3838
// this is updated by vss.js when building
3939

40-
const version = '1.18.452'
40+
const version = '1.18.453'
4141

4242
Exchange.ccxtVersion = version
4343

dist/ccxt.browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Exchange = require ('./js/base/Exchange')
4545
//-----------------------------------------------------------------------------
4646
// this is updated by vss.js when building
4747

48-
const version = '1.18.452'
48+
const version = '1.18.453'
4949

5050
Exchange.ccxtVersion = version
5151

doc/manual.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -832,8 +832,8 @@ In the second example the **price** of any order placed on the market **must sat
832832
833833
*The ``precision`` and ``limits`` params are currently under heavy development, some of these fields may be missing here and there until the unification process is complete. This does not influence most of the orders but can be significant in extreme cases of very large or very small orders. The ``active`` flag is not yet supported and/or implemented by all markets.*
834834

835-
Methods For Decimal Formatting
836-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
835+
Methods For Foramtting Decimals
836+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
837837

838838
The exchange base class contains the ``decimalToPrecision`` method to help format values to the required decimal precision with support for different rounding, counting and padding modes.
839839

@@ -860,19 +860,19 @@ Supported rounding modes are:
860860
861861
Supported counting modes are:
862862
863-
``DECIMAL_PLACES`` – counts all digits, 99% of exchanges use this counting mode
864-
``SIGNIFICANT_DIGITS`` – counts non-zero digits only, some exchanges (``bitfinex`` and maybe a few other) implement this mode of counting decimals
863+
- ``DECIMAL_PLACES`` – counts all digits, 99% of exchanges use this counting mode
864+
- ``SIGNIFICANT_DIGITS`` – counts non-zero digits only, some exchanges (``bitfinex`` and maybe a few other) implement this mode of counting decimals
865865
866866
Supported padding modes are:
867867
868-
``NO_PADDING`` – default for most cases
869-
``PAD_WITH_ZERO`` – appends zero characters up to precision
868+
- ``NO_PADDING`` – default for most cases
869+
- ``PAD_WITH_ZERO`` – appends zero characters up to precision
870870
871871
For examples of how to use the ``decimalToPrecision`` to format strings and floats, please, see the following files:
872872
873873
- JavaScript: https://github.com/ccxt/ccxt/blob/master/js/test/base/functions/test.number.js
874-
Python: https://github.com/ccxt/ccxt/blob/master/python/test/test_decimal_to_precision.py
875-
PHP: https://github.com/ccxt/ccxt/blob/master/php/test/decimal_to_precision.php
874+
- Python: https://github.com/ccxt/ccxt/blob/master/python/test/test_decimal_to_precision.py
875+
- PHP: https://github.com/ccxt/ccxt/blob/master/php/test/decimal_to_precision.php
876876
877877
**Python WARNING! The ``decimal_to_precision`` method is susceptible to getcontext().prec!**
878878

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ccxt",
3-
"version": "1.18.452",
3+
"version": "1.18.453",
44
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges",
55
"main": "./ccxt.js",
66
"unpkg": "dist/ccxt.browser.js",

php/Exchange.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
use kornrunner\Secp256k1;
3535
use kornrunner\Solidity;
3636

37-
$version = '1.18.452';
37+
$version = '1.18.453';
3838

3939
// rounding mode
4040
const TRUNCATE = 0;
@@ -50,7 +50,7 @@
5050

5151
class Exchange {
5252

53-
const VERSION = '1.18.452';
53+
const VERSION = '1.18.453';
5454

5555
public static $eth_units = array (
5656
'wei' => '1',

python/ccxt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# ----------------------------------------------------------------------------
2424

25-
__version__ = '1.18.452'
25+
__version__ = '1.18.453'
2626

2727
# ----------------------------------------------------------------------------
2828

python/ccxt/async_support/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# -----------------------------------------------------------------------------
66

7-
__version__ = '1.18.452'
7+
__version__ = '1.18.453'
88

99
# -----------------------------------------------------------------------------
1010

python/ccxt/async_support/base/exchange.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# -----------------------------------------------------------------------------
44

5-
__version__ = '1.18.452'
5+
__version__ = '1.18.453'
66

77
# -----------------------------------------------------------------------------
88

python/ccxt/base/exchange.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# -----------------------------------------------------------------------------
66

7-
__version__ = '1.18.452'
7+
__version__ = '1.18.453'
88

99
# -----------------------------------------------------------------------------
1010

0 commit comments

Comments
 (0)