-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
config.default.json
131 lines (131 loc) · 2.34 KB
/
config.default.json
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"port": 36666,
"address": "0.0.0.0",
"fileLogLevel": "warn",
"logFileName": "logs/adamant.log",
"consoleLogLevel": "info",
"trustProxy": false,
"topAccounts": false,
"cacheEnabled": false,
"db": {
"host": "localhost",
"port": 5432,
"database": "adamant_main",
"user": "adamant",
"password": "password",
"poolSize": 95,
"poolIdleTimeout": 30000,
"reapIntervalMillis": 1000,
"logEvents": [
"error"
]
},
"redis": {
"url": "redis://127.0.0.1:6379/0",
"password": null
},
"api": {
"enabled": true,
"access": {
"public": false,
"whiteList": [
"127.0.0.1"
]
},
"options": {
"limits": {
"max": 0,
"delayMs": 0,
"delayAfter": 0,
"windowMs": 60000
}
}
},
"peers": {
"enabled": true,
"list": [
{
"ip": "5.161.68.61",
"port": 36666
},
{
"ip": "149.102.157.15",
"port": 36666
},
{
"ip": "78.47.205.206",
"port": 36666
},
{
"ip": "107.161.26.184",
"port": 36666
},
{
"ip": "138.201.152.191",
"port": 36666
},
{
"ip": "184.94.215.92",
"port": 45555
},
{
"ip": "207.244.243.23",
"port": 45555
}
],
"access": {
"blackList": []
},
"options": {
"limits": {
"max": 0,
"delayMs": 0,
"delayAfter": 0,
"windowMs": 60000
},
"timeout": 5000
}
},
"broadcasts": {
"broadcastInterval": 1500,
"broadcastLimit": 20,
"parallelLimit": 20,
"releaseLimit": 25,
"relayLimit": 4
},
"transactions": {
"maxTxsPerQueue": 1000
},
"forging": {
"force": false,
"secret": [],
"access": {
"whiteList": [
"127.0.0.1"
]
}
},
"loading": {
"verifyOnLoading": false,
"loadPerIteration": 5000
},
"ssl": {
"enabled": false,
"options": {
"port": 443,
"address": "0.0.0.0",
"key": "./ssl/adamant.key",
"cert": "./ssl/adamant.crt"
}
},
"dapp": {
"masterrequired": true,
"masterpassword": "",
"autoexec": []
},
"wsClient": {
"portWS": 36668,
"enabled": true
},
"nethash": "bd330166898377fb28743ceef5e43a5d9d0a3efd9b3451fb7bc53530bb0a6d64"
}