-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitcoincom.js
34 lines (30 loc) · 1.23 KB
/
bitcoincom.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
'use strict';
// ---------------------------------------------------------------------------
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,
},
},
});
}
};