consequunturatque
Version:
A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges
35 lines (30 loc) • 1.26 kB
JavaScript
// ---------------------------------------------------------------------------
const hitbtc = require ('./hitbtc.js');
// ---------------------------------------------------------------------------
module.exports = class bitcoincom extends hitbtc {
describe () {
return this.deepExtend (super.describe (), {
'id': 'bitcoincom',
'name': 'bitcoin.com',
'countries': [ 'KN' ],
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/97296144-514fa300-1861-11eb-952b-3d55d492200b.jpg',
'api': {
'public': 'https://api.exchange.bitcoin.com',
'private': 'https://api.exchange.bitcoin.com',
},
'www': 'https://exchange.bitcoin.com',
'doc': 'https://api.exchange.bitcoin.com/api/2/explore',
'fees': 'https://exchange.bitcoin.com/fees-and-limits',
'referral': 'https://exchange.bitcoin.com/referral/da948b21d6c92d69',
},
'fees': {
'trading': {
'maker': 0.15 / 100,
'taker': 0.2 / 100,
},
},
});
}
};
;