-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchilebit.js
32 lines (27 loc) · 1.12 KB
/
chilebit.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 blinktrade = require ('./blinktrade.js')
// ---------------------------------------------------------------------------
module.exports = class chilebit extends blinktrade {
describe () {
return this.deepExtend (super.describe (), {
'id': 'chilebit',
'name': 'ChileBit',
'countries': 'CL',
'hasCORS': false,
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/27991414-1298f0d8-647f-11e7-9c40-d56409266336.jpg',
'api': {
'public': 'https://api.blinktrade.com/api',
'private': 'https://api.blinktrade.com/tapi',
},
'www': 'https://chilebit.net',
'doc': 'https://blinktrade.com/docs',
},
'comment': 'Blinktrade API',
'markets': {
'BTC/CLP': { 'id': 'BTCCLP', 'symbol': 'BTC/CLP', 'base': 'BTC', 'quote': 'CLP', 'brokerId': 9, 'broker': 'ChileBit' },
},
});
}
}