-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconf.js
28 lines (21 loc) · 997 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
/*jslint node: true */
"use strict";
exports.bServeAsHub = false;
exports.bLight = true;
exports.bStaticChangeAddress = true;
exports.storage = 'sqlite';
exports.hub = process.env.testnet ? 'obyte.org/bb-test' : 'obyte.org/bb';
exports.deviceName = 'Carpooling';
exports.permanent_pairing_secret = '0000';
exports.redirect_pairing_secret = '0001';
exports.KEYS_FILENAME = 'keys.json';
//exports.control_addresses = [""];
//exports.payout_address = "";
exports.supportsHttps = true;
exports.authSecret = "secret";
exports.authTimeout = 300000; // the user has 5 minutes to confirm logon with pairing code
exports.googleMapsApiKey = "GOOGLE MAPS API KEY";
exports.googleMapsEmbedKey = "GOOGLE MAPS EMBED API KEY"; // used on front end
exports.realnameAttestor = process.env.testnet ? 'RJV3YUZ3FG3MPBWXX4RSD7PCPOIGGQZB' : 'I2ADHGP4HL6J37NQAD73J7E5SKFIXJOT';
exports.realnameAttestorSmartID = process.env.testnet ? '' : 'OHVQ2R5B6TUR5U7WJNYLP3FIOSR7VCED';
console.log('finished carpool conf');