-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathokcoin.js
35 lines (31 loc) · 1.16 KB
/
okcoin.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
'use strict';
// ---------------------------------------------------------------------------
const okex3 = require ('./okex3.js');
// ---------------------------------------------------------------------------
module.exports = class okcoin extends okex3 {
describe () {
return this.deepExtend (super.describe (), {
'id': 'okcoin',
'name': 'OKCoin',
'countries': [ 'CN', 'US' ],
'hostname': 'okcoin.com',
'pro': true,
'urls': {
'logo': 'https://user-images.githubusercontent.com/51840849/87295551-102fbf00-c50e-11ea-90a9-462eebba5829.jpg',
'www': 'https://www.okcoin.com',
'doc': 'https://www.okcoin.com/docs/en/',
'fees': 'https://www.okcoin.com/coin-fees',
'referral': 'https://www.okcoin.com/account/register?flag=activity&channelId=600001513',
},
'fees': {
'trading': {
'taker': 0.002,
'maker': 0.001,
},
},
'options': {
'fetchMarkets': [ 'spot' ],
},
});
}
};