-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfybse.js
28 lines (23 loc) · 923 Bytes
/
fybse.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 fyb = require ('./fyb.js')
// ---------------------------------------------------------------------------
module.exports = class fybse extends fyb {
describe () {
return this.deepExtend (super.describe (), {
'id': 'fybse',
'name': 'FYB-SE',
'countries': 'SE', // Sweden
'hasCORS': false,
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/27766512-31019772-5edb-11e7-8241-2e675e6797f1.jpg',
'api': 'https://www.fybse.se/api/SEK',
'www': 'https://www.fybse.se',
'doc': 'http://docs.fyb.apiary.io',
},
'markets': {
'BTC/SEK': { 'id': 'SEK', 'symbol': 'BTC/SEK', 'base': 'BTC', 'quote': 'SEK' },
}
}
}
}