Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/ccxt-dev/ccxt
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Jun 5, 2018
2 parents 92d4d80 + 7964d07 commit f1b1d17
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 17 deletions.
9 changes: 5 additions & 4 deletions build/ccxt.browser.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ccxt.js
Expand Up @@ -37,7 +37,7 @@ const Exchange = require ('./js/base/Exchange')
//-----------------------------------------------------------------------------
// this is updated by vss.js when building

const version = '1.14.125'
const version = '1.14.126'

Exchange.ccxtVersion = version

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "ccxt",
"version": "1.14.125",
"version": "1.14.126",
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 100+ exchanges",
"main": "./ccxt.js",
"unpkg": "build/ccxt.browser.js",
Expand Down
2 changes: 1 addition & 1 deletion php/Exchange.php
Expand Up @@ -30,7 +30,7 @@

namespace ccxt;

$version = '1.14.125';
$version = '1.14.126';

// rounding mode
const TRUNCATE = 0;
Expand Down
1 change: 1 addition & 0 deletions php/southxchange.php
Expand Up @@ -60,6 +60,7 @@ public function describe () {
),
'commonCurrencies' => array (
'SMT' => 'SmartNode',
'MTC' => 'Marinecoin',
),
));
}
Expand Down
4 changes: 2 additions & 2 deletions php/vaultoro.php
Expand Up @@ -64,8 +64,8 @@ public function fetch_markets () {
$result = array ();
$markets = $this->publicGetMarkets ();
$market = $markets['data'];
$baseId = $market['BaseCurrency'];
$quoteId = $market['MarketCurrency'];
$baseId = $market['MarketCurrency'];
$quoteId = $market['BaseCurrency'];
$base = $this->common_currency_code($baseId);
$quote = $this->common_currency_code($quoteId);
$symbol = $base . '/' . $quote;
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/__init__.py
Expand Up @@ -22,7 +22,7 @@

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

__version__ = '1.14.125'
__version__ = '1.14.126'

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

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async/__init__.py
Expand Up @@ -4,7 +4,7 @@

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

__version__ = '1.14.125'
__version__ = '1.14.126'

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

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async/base/exchange.py
Expand Up @@ -2,7 +2,7 @@

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

__version__ = '1.14.125'
__version__ = '1.14.126'

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

Expand Down
1 change: 1 addition & 0 deletions python/ccxt/async/southxchange.py
Expand Up @@ -61,6 +61,7 @@ def describe(self):
},
'commonCurrencies': {
'SMT': 'SmartNode',
'MTC': 'Marinecoin',
},
})

Expand Down
4 changes: 2 additions & 2 deletions python/ccxt/async/vaultoro.py
Expand Up @@ -62,8 +62,8 @@ async def fetch_markets(self):
result = []
markets = await self.publicGetMarkets()
market = markets['data']
baseId = market['BaseCurrency']
quoteId = market['MarketCurrency']
baseId = market['MarketCurrency']
quoteId = market['BaseCurrency']
base = self.common_currency_code(baseId)
quote = self.common_currency_code(quoteId)
symbol = base + '/' + quote
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/base/exchange.py
Expand Up @@ -4,7 +4,7 @@

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

__version__ = '1.14.125'
__version__ = '1.14.126'

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

Expand Down
1 change: 1 addition & 0 deletions python/ccxt/southxchange.py
Expand Up @@ -61,6 +61,7 @@ def describe(self):
},
'commonCurrencies': {
'SMT': 'SmartNode',
'MTC': 'Marinecoin',
},
})

Expand Down
4 changes: 2 additions & 2 deletions python/ccxt/vaultoro.py
Expand Up @@ -62,8 +62,8 @@ def fetch_markets(self):
result = []
markets = self.publicGetMarkets()
market = markets['data']
baseId = market['BaseCurrency']
quoteId = market['MarketCurrency']
baseId = market['MarketCurrency']
quoteId = market['BaseCurrency']
base = self.common_currency_code(baseId)
quote = self.common_currency_code(quoteId)
symbol = base + '/' + quote
Expand Down

0 comments on commit f1b1d17

Please sign in to comment.