@proton/ccxt
Version:
A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges
31 lines (28 loc) • 1.17 kB
JavaScript
// ----------------------------------------------------------------------------
// PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
// https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
// EDIT THE CORRESPONDENT .ts FILE INSTEAD
// ---------------------------------------------------------------------------
import hitbtc from './hitbtc.js';
// ---------------------------------------------------------------------------
export default 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': {
'ws': 'wss://api.fmfw.io/api/2/ws',
},
},
'fees': {
'trading': {
'maker': this.parseNumber('0.0015'),
'taker': this.parseNumber('0.002'),
},
},
});
}
}