-
Notifications
You must be signed in to change notification settings - Fork 0
/
fybsg.js
29 lines (25 loc) · 979 Bytes
/
fybsg.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 fybse = require ('./fybse.js');
// ---------------------------------------------------------------------------
module.exports = class fybsg extends fybse {
describe () {
return this.deepExtend (super.describe (), {
'id': 'fybsg',
'name': 'FYB-SG',
'countries': [ 'SG' ], // Singapore
'has': {
'CORS': false,
},
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/27766513-3364d56a-5edb-11e7-9e6b-d5898bb89c81.jpg',
'api': 'https://www.fybsg.com/api/SGD',
'www': 'https://www.fybsg.com',
'doc': 'http://docs.fyb.apiary.io',
},
'markets': {
'BTC/SGD': { 'id': 'SGD', 'symbol': 'BTC/SGD', 'base': 'BTC', 'quote': 'SGD' },
},
});
}
};