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 May 30, 2018
2 parents d27f8c8 + bce87e7 commit 0ea86a3
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 13 deletions.
7 changes: 4 additions & 3 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.93'
const version = '1.14.94'

Exchange.ccxtVersion = version

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "ccxt",
"version": "1.14.93",
"version": "1.14.94",
"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.93';
$version = '1.14.94';

// rounding mode
const TRUNCATE = 0;
Expand Down
1 change: 1 addition & 0 deletions php/bittrex.php
Expand Up @@ -150,6 +150,7 @@ public function describe () {
'UUID_INVALID' => '\\ccxt\\OrderNotFound',
'RATE_NOT_PROVIDED' => '\\ccxt\\InvalidOrder', // createLimitBuyOrder ('ETH/BTC', 1, 0)
'WHITELIST_VIOLATION_IP' => '\\ccxt\\PermissionDenied',
'INVALID_ORDER' => '\\ccxt\\InvalidOrder',
),
'options' => array (
'parseOrderStatus' => false,
Expand Down
2 changes: 1 addition & 1 deletion php/cointiger.php
Expand Up @@ -486,7 +486,7 @@ public function create_order ($symbol, $type, $side, $amount, $price = null, $pa
$timestamp = $this->milliseconds ();
return array (
'info' => $response,
'id' => (string) $response['order_id'],
'id' => (string) $response['data']['order_id'],
'timestamp' => $timestamp,
'datetime' => $this->iso8601 ($timestamp),
'lastTradeTimestamp' => null,
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/__init__.py
Expand Up @@ -22,7 +22,7 @@

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

__version__ = '1.14.93'
__version__ = '1.14.94'

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

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

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

__version__ = '1.14.93'
__version__ = '1.14.94'

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

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

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

__version__ = '1.14.93'
__version__ = '1.14.94'

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

Expand Down
1 change: 1 addition & 0 deletions python/ccxt/async/bittrex.py
Expand Up @@ -167,6 +167,7 @@ def describe(self):
'UUID_INVALID': OrderNotFound,
'RATE_NOT_PROVIDED': InvalidOrder, # createLimitBuyOrder('ETH/BTC', 1, 0)
'WHITELIST_VIOLATION_IP': PermissionDenied,
'INVALID_ORDER': InvalidOrder,
},
'options': {
'parseOrderStatus': False,
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async/cointiger.py
Expand Up @@ -470,7 +470,7 @@ async def create_order(self, symbol, type, side, amount, price=None, params={}):
timestamp = self.milliseconds()
return {
'info': response,
'id': str(response['order_id']),
'id': str(response['data']['order_id']),
'timestamp': timestamp,
'datetime': self.iso8601(timestamp),
'lastTradeTimestamp': None,
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/base/exchange.py
Expand Up @@ -4,7 +4,7 @@

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

__version__ = '1.14.93'
__version__ = '1.14.94'

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

Expand Down
1 change: 1 addition & 0 deletions python/ccxt/bittrex.py
Expand Up @@ -167,6 +167,7 @@ def describe(self):
'UUID_INVALID': OrderNotFound,
'RATE_NOT_PROVIDED': InvalidOrder, # createLimitBuyOrder('ETH/BTC', 1, 0)
'WHITELIST_VIOLATION_IP': PermissionDenied,
'INVALID_ORDER': InvalidOrder,
},
'options': {
'parseOrderStatus': False,
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/cointiger.py
Expand Up @@ -470,7 +470,7 @@ def create_order(self, symbol, type, side, amount, price=None, params={}):
timestamp = self.milliseconds()
return {
'info': response,
'id': str(response['order_id']),
'id': str(response['data']['order_id']),
'timestamp': timestamp,
'datetime': self.iso8601(timestamp),
'lastTradeTimestamp': None,
Expand Down

0 comments on commit 0ea86a3

Please sign in to comment.