-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconf.js
33 lines (23 loc) · 988 Bytes
/
conf.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
33
/*jslint node: true */
"use strict";
exports.port = null;
//exports.myUrl = 'wss://mydomain.com/bb';
exports.bServeAsHub = false;
exports.bLight = false;
exports.storage = 'sqlite';
exports.hub = process.env.testnet ? 'obyte.org/bb-test' : 'obyte.org/bb';
exports.deviceName = 'sports oracle';
exports.permanent_pairing_secret = '0000';
exports.control_addresses = ['DEVICE ALLOWED TO CHAT'];
exports.payout_address = 'WHERE THE MONEY CAN BE SENT TO';
exports.bIgnoreUnpairRequests = true;
exports.bSingleAddress = true;
exports.THRESHOLD_DISTANCE = 20;
exports.MIN_AVAILABLE_WITNESSINGS = 100;
exports.bRunWitness = false; // also post empty transactions when there are few datafeed transactions
// football-data.org credentials
exports.footballDataApiKey = '';
exports.KEYS_FILENAME = 'keys.json';
exports.expectedPaymentFromAa = 10000;
exports.issuer_base_aa = "K6KIVWTU5C4JPSIQF5F42XYIQIIBHOIP";// asset issuer for sports betting
console.log('finished sports oracle conf');