forked from VerusCoin/Verus-Mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.js
23 lines (18 loc) · 757 Bytes
/
global.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//TODO: Test with Jest and delete
// // Versions
// global.APP_VERSION = "0.1.9-beta";
// global.VERUS_QR_VERSION = "0.1.1";
// global.CHAIN_QR_VERSION = "0.1.0"
// global.ELECTRUM_PROTOCOL_CHANGE = 1.4;
// // HTTPS
// global.REQUEST_TIMEOUT_MS = 10000;
// // Cache globals (more in cache files because globals cant be used for
// // constants that are needed immediately on app load)
// global.BLOCK_HEADER_STORE_CAP = 20;
// global.MIN_HEADER_CACHE_CONFS = 100;
// // App functionality
// global.ENABLE_FIAT_GATEWAY = false;
// global.ENABLE_VERUS_IDENTITIES = false;
// global.DISABLED_CHANNELS = ['dlight'];
// global.ENABLE_DLIGHT = !global.DISABLED_CHANNELS.includes('dlight')
// global.ENABLE_ERC20 = !global.DISABLED_CHANNELS.includes('erc20')