-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquoine.js
28 lines (23 loc) · 906 Bytes
/
quoine.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
"use strict";
// ---------------------------------------------------------------------------
const qryptos = require ('./qryptos.js')
// ---------------------------------------------------------------------------
module.exports = class quoine extends qryptos {
describe () {
return this.deepExtend (super.describe (), {
'id': 'quoine',
'name': 'QUOINE',
'countries': [ 'JP', 'SG', 'VN' ],
'version': '2',
'rateLimit': 1000,
'hasFetchTickers': true,
'hasCORS': false,
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/27766844-9615a4e8-5ee8-11e7-8814-fcd004db8cdd.jpg',
'api': 'https://api.quoine.com',
'www': 'https://www.quoine.com',
'doc': 'https://developers.quoine.com',
},
});
}
}