@jmparsons/ccxt
Version:
A JavaScript / Python / PHP cryptocurrency trading library with support for 100+ exchanges
33 lines (28 loc) • 1.06 kB
JavaScript
// ---------------------------------------------------------------------------
const foxbit = require ('./foxbit.js');
// ---------------------------------------------------------------------------
module.exports = class vbtc extends foxbit {
describe () {
return this.deepExtend (super.describe (), {
'id': 'vbtc',
'name': 'VBTC',
'countries': 'VN',
'has': {
'CORS': false,
},
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/27991481-1f53d1d8-6481-11e7-884e-21d17e7939db.jpg',
'api': {
'public': 'https://api.blinktrade.com/api',
'private': 'https://api.blinktrade.com/tapi',
},
'www': 'https://vbtc.exchange',
'doc': 'https://blinktrade.com/docs',
},
'options': {
'brokerId': '3', // https://blinktrade.com/docs/#brokers
},
});
}
};
;