Skip to content

Commit 63f7be5

Browse files
author
Travis CI
committed
1.10.1246
[ci skip]
1 parent ad6d414 commit 63f7be5

17 files changed

Lines changed: 33 additions & 17 deletions

build/ccxt.browser.js

Lines changed: 8 additions & 4 deletions
Large diffs are not rendered by default.

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.10.1245'
40+
const version = '1.10.1246'
4141

4242
Exchange.ccxtVersion = version
4343

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.10.1245",
3+
"version": "1.10.1246",
44
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 90+ exchanges",
55
"main": "./ccxt.js",
66
"unpkg": "build/ccxt.browser.js",

php/Exchange.php

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

3131
namespace ccxt;
3232

33-
$version = '1.10.1245';
33+
$version = '1.10.1246';
3434

3535
abstract class Exchange {
3636

php/coinmarketcap.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,13 @@ public function currency_code ($base, $name) {
9292
'Bitgem' => 'Bitgem',
9393
'BlockCAT' => 'BlockCAT',
9494
'Catcoin' => 'Catcoin',
95+
'Hi Mutual Society' => 'Hi Mutual Society',
9596
'iCoin' => 'iCoin',
9697
'NetCoin' => 'NetCoin',
9798
// a special case, most exchanges list it as IOTA, therefore
9899
// we change just the Coinmarketcap instead of changing them all
99100
'MIOTA' => 'IOTA',
101+
'Maggie' => 'Maggie',
100102
);
101103
if (is_array ($currencies) && array_key_exists ($name, $currencies))
102104
return $currencies[$name];

php/flowbtc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function describe () {
1919
),
2020
'urls' => array (
2121
'logo' => 'https://user-images.githubusercontent.com/1294454/28162465-cd815d4c-67cf-11e7-8e57-438bea0523a2.jpg',
22-
'api' => 'https://api.flowbtc.com:8400/ajax',
22+
'api' => 'https://www.flowbtc.com.br:8405/api',
2323
'www' => 'https://trader.flowbtc.com',
2424
'doc' => 'http://www.flowbtc.com.br/api/',
2525
),

php/okex.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,10 @@ public function describe () {
3434
public function common_currency_code ($currency) {
3535
$currencies = array (
3636
'FAIR' => 'FairGame',
37-
'YOYO' => 'YOYOW',
37+
'HMC' => 'Hi Mutual Society',
38+
'MAG' => 'Maggie',
3839
'NANO' => 'XRB',
40+
'YOYO' => 'YOYOW',
3941
);
4042
if (is_array ($currencies) && array_key_exists ($currency, $currencies))
4143
return $currencies[$currency];

python/ccxt/__init__.py

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

2929
# ----------------------------------------------------------------------------
3030

31-
__version__ = '1.10.1245'
31+
__version__ = '1.10.1246'
3232

3333
# ----------------------------------------------------------------------------
3434

python/ccxt/async/__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.10.1245'
7+
__version__ = '1.10.1246'
88

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

python/ccxt/async/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.10.1245'
5+
__version__ = '1.10.1246'
66

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

0 commit comments

Comments
 (0)