Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/kroitor/ccxt
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Sep 13, 2017
2 parents a5e9d0e + b334fe7 commit a59b194
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 11 deletions.
9 changes: 6 additions & 3 deletions build/ccxt.browser.js

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions build/ccxt.es5.js

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion build/ccxt.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class DDoSProtection extends NetworkError {}
class RequestTimeout extends NetworkError {}
class ExchangeNotAvailable extends NetworkError {}

$version = '1.6.99';
$version = '1.6.100';

$curl_errors = array (
0 => 'CURLE_OK',
Expand Down Expand Up @@ -14966,6 +14966,9 @@ public function __construct ($options = array ()) {
'markets' => array (
'BTC/CNY' => array ( 'id' => 'btc_cny', 'symbol' => 'BTC/CNY', 'base' => 'BTC', 'quote' => 'CNY' ),
'LTC/CNY' => array ( 'id' => 'ltc_cny', 'symbol' => 'LTC/CNY', 'base' => 'LTC', 'quote' => 'CNY' ),
'ETH/CNY' => array ( 'id' => 'eth_cny', 'symbol' => 'ETH/CNY', 'base' => 'ETH', 'quote' => 'CNY' ),
'ETC/CNY' => array ( 'id' => 'etc_cny', 'symbol' => 'ETC/CNY', 'base' => 'ETC', 'quote' => 'CNY' ),
'BCH/CNY' => array ( 'id' => 'bcc_cny', 'symbol' => 'BCH/CNY', 'base' => 'BCH', 'quote' => 'CNY' ),
),
), $options));
}
Expand Down
2 changes: 1 addition & 1 deletion ccxt.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const CryptoJS = require ('crypto-js')
//-----------------------------------------------------------------------------
// this is updated by vss.js when building

const version = '1.6.99'
const version = '1.6.100'

//-----------------------------------------------------------------------------
// platform detection
Expand Down
2 changes: 1 addition & 1 deletion ccxt.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class DDoSProtection extends NetworkError {}
class RequestTimeout extends NetworkError {}
class ExchangeNotAvailable extends NetworkError {}

$version = '1.6.99';
$version = '1.6.100';

$curl_errors = array (
0 => 'CURLE_OK',
Expand Down
3 changes: 3 additions & 0 deletions ccxt/async/exchanges.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions ccxt/exchanges.py
Original file line number Diff line number Diff line change
Expand Up @@ -13214,6 +13214,9 @@ def __init__(self, config={}):
'markets': {
'BTC/CNY': {'id': 'btc_cny', 'symbol': 'BTC/CNY', 'base': 'BTC', 'quote': 'CNY'},
'LTC/CNY': {'id': 'ltc_cny', 'symbol': 'LTC/CNY', 'base': 'LTC', 'quote': 'CNY'},
'ETH/CNY': {'id': 'eth_cny', 'symbol': 'ETH/CNY', 'base': 'ETH', 'quote': 'CNY'},
'ETC/CNY': {'id': 'etc_cny', 'symbol': 'ETC/CNY', 'base': 'ETC', 'quote': 'CNY'},
'BCH/CNY': {'id': 'bcc_cny', 'symbol': 'BCH/CNY', 'base': 'BCH', 'quote': 'CNY'},
},
}
params.update(config)
Expand Down
2 changes: 1 addition & 1 deletion ccxt/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@

#------------------------------------------------------------------------------

__version__ = '1.6.99'
__version__ = '1.6.100'

#==============================================================================
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ccxt",
"version": "1.6.99",
"version": "1.6.100",
"description": "A library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs",
"main": "build/ccxt.es5.js",
"unpkg": "build/ccxt.browser.js",
Expand Down

0 comments on commit a59b194

Please sign in to comment.