-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvbtc.js
28 lines (23 loc) · 907 Bytes
/
vbtc.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 foxbit = require ('./foxbit.js')
// ---------------------------------------------------------------------------
module.exports = class vbtc extends foxbit {
describe () {
return this.deepExtend (super.describe (), {
'id': 'vbtc',
'name': 'VBTC',
'countries': 'VN',
'hasCORS': false,
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/27991481-1f53d1d8-6481-11e7-884e-21d17e7939db.jpg',
'api': {
'public': 'https://api.blinktrade.com/api',
'private': 'https://api.blinktrade.com/tapi',
},
'www': 'https://vbtc.exchange',
'doc': 'https://blinktrade.com/docs',
},
});
}
}