forked from ccxt/ccxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoolcoin.js
66 lines (62 loc) · 2.27 KB
/
coolcoin.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
'use strict';
// ---------------------------------------------------------------------------
const coinegg = require ('./coinegg.js');
// ---------------------------------------------------------------------------
module.exports = class coolcoin extends coinegg {
describe () {
return this.deepExtend (super.describe (), {
'id': 'coolcoin',
'name': 'CoolCoin',
'countries': 'HK',
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/36770529-be7b1a04-1c5b-11e8-9600-d11f1996b539.jpg',
'api': {
'web': 'https://www.coolcoin.com/coin',
'rest': 'https://www.coolcoin.com/api/v1',
},
'www': 'https://www.coolcoin.com',
'doc': 'https://www.coolcoin.com/help.api.html',
'fees': 'https://www.coolcoin.com/spend.price.html',
},
'fees': {
'trading': {
'maker': 0.1 / 100,
'taker': 0.1 / 100,
},
'funding': {
'withdraw': {
'BTC': 0.001,
'BCH': 0.002,
'ETH': 0.01,
'ETC': 0.01,
'LTC': 0.001,
'TBC': '1%',
'HSR': '1%',
'NEO': '1%',
'SDC': '1%',
'EOS': '1%',
'BTM': '1%',
'XAS': '1%',
'ACT': '1%',
'SAK': '1%',
'GCS': '1%',
'HCC': '1%',
'QTUM': '1%',
'GEC': '1%',
'TRX': '1%',
'IFC': '1%',
'PAY': '1%',
'PGC': '1%',
'KTC': '1%',
'INT': '1%',
'LSK': '0.5%',
'SKT': '1%',
'SSS': '1%',
'BT1': '1%',
'BT2': '1%',
},
},
},
});
}
};