@@ -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.17.85 '
48+ const version = '1.17.86 '
4949
5050Exchange.ccxtVersion = version
5151
@@ -18158,16 +18158,20 @@ module.exports = class bxinth extends Exchange {
1815818158 for (let p = 0; p < keys.length; p++) {
1815918159 let market = markets[keys[p]];
1816018160 let id = market['pairing_id'].toString ();
18161- let base = market['secondary_currency'];
18162- let quote = market['primary_currency'];
18163- base = this.commonCurrencyCode (base);
18164- quote = this.commonCurrencyCode (quote);
18161+ let baseId = market['secondary_currency'];
18162+ let quoteId = market['primary_currency'];
18163+ let active = market['active'];
18164+ let base = this.commonCurrencyCode (baseId);
18165+ let quote = this.commonCurrencyCode (quoteId);
1816518166 let symbol = base + '/' + quote;
1816618167 result.push ({
1816718168 'id': id,
1816818169 'symbol': symbol,
1816918170 'base': base,
1817018171 'quote': quote,
18172+ 'baseId': baseId,
18173+ 'quoteId': quoteId,
18174+ 'active': active,
1817118175 'info': market,
1817218176 });
1817318177 }
@@ -20790,6 +20794,9 @@ module.exports = class coinegg extends Exchange {
2079020794 'options': {
2079120795 'quoteIds': [ 'btc', 'eth', 'usc', 'usdt' ],
2079220796 },
20797+ 'commonCurrencies': {
20798+ 'JBC': 'JubaoCoin',
20799+ },
2079320800 });
2079420801 }
2079520802
0 commit comments