@proton/ccxt
Version:
A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges
34 lines (30 loc) • 1.09 kB
JavaScript
var hitbtc = require('./hitbtc.js');
// ---------------------------------------------------------------------------
// ---------------------------------------------------------------------------
class bequant extends hitbtc {
describe() {
return this.deepExtend(super.describe(), {
'id': 'bequant',
'name': 'Bequant',
'countries': ['MT'],
'pro': true,
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/55248342-a75dfe00-525a-11e9-8aa2-05e9dca943c6.jpg',
'api': {
'public': 'https://api.bequant.io',
'private': 'https://api.bequant.io',
},
'www': 'https://bequant.io',
'doc': [
'https://api.bequant.io/',
],
'fees': [
'https://bequant.io/fees-and-limits',
],
'referral': 'https://bequant.io',
},
});
}
}
module.exports = bequant;
;