-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtidex.js
32 lines (27 loc) · 1.03 KB
/
tidex.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
"use strict";
// ---------------------------------------------------------------------------
const liqui = require ('./liqui.js')
// ---------------------------------------------------------------------------
module.exports = class tidex extends liqui {
describe () {
return this.deepExtend (super.describe (), {
'id': 'tidex',
'name': 'Tidex',
'countries': 'UK',
'rateLimit': 1000,
'version': '3',
// 'hasCORS': false,
// 'hasFetchTickers': true,
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/30781780-03149dc4-a12e-11e7-82bb-313b269d24d4.jpg',
'api': {
'public': 'https://api.tidex.com/api',
'private': 'https://api.tidex.com/tapi',
},
'www': 'https://tidex.com',
'doc': 'https://tidex.com/public-api',
'fees': 'https://tidex.com/pairs-spec'
},
});
}
}