-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitkk.js
26 lines (22 loc) · 838 Bytes
/
bitkk.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
'use strict';
// ---------------------------------------------------------------------------
const zb = require ('./zb.js');
// ---------------------------------------------------------------------------
module.exports = class bitkk extends zb {
describe () {
return this.deepExtend (super.describe (), {
'id': 'bitkk',
'name': 'bitkk',
'comment': 'a Chinese ZB clone',
'urls': {
'api': {
'public': 'http://api.bitkk.com/data', // no https for public API
'private': 'https://trade.bitkk.com/api',
},
'www': 'https://www.bitkk.com',
'doc': 'https://www.bitkk.com/i/developer',
'fees': 'https://www.bitkk.com/i/rate',
},
});
}
};