-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.steak.json
97 lines (97 loc) · 1.72 KB
/
config.steak.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
{
"port": 4100,
"address": "0.0.0.0",
"version": "0.0.1",
"fileLogLevel": "info",
"logFileName": "logs/ark.log",
"consoleLogLevel": "debug",
"trustProxy": false,
"db": {
"host": "localhost",
"port": 5432,
"database": "ark_steak",
"user": null,
"password": "iliketostake",
"poolSize": 20,
"poolIdleTimeout": 30000,
"reapIntervalMillis": 1000,
"logEvents": [
"error"
]
},
"api": {
"mount": true,
"access": {
"whiteList": []
},
"options": {
"limits": {
"max": 0,
"delayMs": 0,
"delayAfter": 0,
"windowMs": 60000
}
}
},
"peers": {
"minimumNetworkReach": 1,
"list": [
{
"ip": "127.0.0.1",
"port": 4100
},
{
"ip": "127.0.0.2",
"port": 4100
},
{
"ip": "127.0.0.3",
"port": 4100
},
{
"ip": "127.0.0.4",
"port": 4100
},
{
"ip": "127.0.0.5",
"port": 4100
}
],
"blackList": [],
"options": {
"limits": {
"max": 0,
"delayMs": 0,
"delayAfter": 0,
"windowMs": 60000
},
"maxUpdatePeers": 20,
"timeout": 5000
}
},
"forging": {
"coldstart": 6,
"force": true,
"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/ark.key",
"cert": "./ssl/ark.crt"
}
},
"network": "steak",
"nethash": "482a090e26c3ced0cb389c63d1e42d4d55993d20623c7ebee8e630b0eaa243fd"
}