-
Notifications
You must be signed in to change notification settings - Fork 13
/
constants.js
87 lines (76 loc) · 2.19 KB
/
constants.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
'use strict';
const DOMAIN = 'localhost';
exports.DEBUG_LOG = true;
exports.share = {
my_port: 40745
};
const DATABASE_PATH = '/home/opentrade/accountsServer/database/sqlite_accounts.db';
exports.dbTables = [
{
'name' : 'KeyValue',
'cols' : [
['key', 'TEXT UNIQUE PRIMARY KEY'],
['value', 'TEXT']
]
},
{
'name': 'Transactions',
'cols': [
['hash', 'TEXT UNIQUE PRIMARY KEY'],
['data', 'TEXT'],
['account', 'TEXT'],
['address', 'TEXT'],
['category', 'TEXT'],
['amount', 'TEXT'],
['label', 'TEXT'],
['vout', 'INT'],
['confirmations', 'INT'],
['blockhash', 'INT'],
['timereceived', 'INT']
]
},
{
'name': 'listtransactions',
'cols': [
['coin', 'TEXT'],
['account', 'TEXT'],
['address', 'TEXT'],
['category', 'TEXT'],
['amount', 'TEXT'],
['label', 'TEXT'],
['vout', 'INT'],
['fee', 'TEXT'],
['confirmations', 'INT'],
['trusted', 'TEXT'],
['blockhash', 'TEXT'],
['blockindex', 'INT'],
['blocktime', 'INT'],
['txid', 'TEXT'],
['time', 'INT'],
['timereceived', 'INT'],
['comment', 'TEXT'],
['otheraccount', 'TEXT'],
['bip125_replaceable', 'TEXT'],
['abandoned', 'TEXT'],
['uid', 'TEXT UNIQUE PRIMARY KEY']
]
}
]
let PRIVATE = false;
try { PRIVATE = require("./private_constants/private.js");}catch(e){}
exports.DOMAIN = DOMAIN;
exports.PORT_DB = 40545;
exports.dbName = PRIVATE ? PRIVATE.DATABASE_PATH : DATABASE_PATH;
exports.SSL_KEY = './ssl_certificates/privkey.pem';
exports.SSL_CERT = './ssl_certificates/fullchain.pem';
exports.SSL_options = {
key: require("fs").readFileSync(exports.SSL_KEY),
cert: require("fs").readFileSync(exports.SSL_CERT)
};
exports.IsAllowedAddress = function(addr)
{
if (addr.indexOf("127.0.0.1") < 0 && addr.indexOf(PRIVATE ? PRIVATE.LocalIP : "127.0.0.1") < 0)
return false;
return true;
}
exports.WEB_SOCKETS = null;