-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgateio.js
29 lines (24 loc) · 914 Bytes
/
gateio.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
"use strict";
// ---------------------------------------------------------------------------
const bter = require ('./bter.js')
// ---------------------------------------------------------------------------
module.exports = class gateio extends bter {
describe () {
return this.deepExtend (super.describe (), {
'id': 'gateio',
'name': 'Gate.io',
'countries': 'CN',
'rateLimit': 1000,
'hasCORS': false,
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/31784029-0313c702-b509-11e7-9ccc-bc0da6a0e435.jpg',
'api': {
'public': 'https://data.gate.io/api',
'private': 'https://data.gate.io/api',
},
'www': 'https://gate.io/',
'doc': 'https://gate.io/api2',
},
});
}
}