forked from iotaledger/hornet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_devnet.json
151 lines (151 loc) · 3.67 KB
/
config_devnet.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"useProfile": "auto",
"httpAPI": {
"basicAuth": {
"enabled": false,
"username": "",
"passwordHash": "",
"passwordSalt": ""
},
"excludeHealthCheckFromAuth": false,
"permitRemoteAccess": [
"getNodeInfo",
"getBalances",
"checkConsistency",
"getTipInfo",
"getTransactionsToApprove",
"getInclusionStates",
"getNodeAPIConfiguration",
"wereAddressesSpentFrom",
"broadcastTransactions",
"findTransactions",
"storeTransactions",
"getTrytes"
],
"permittedRoutes": [
"healthz"
],
"whitelistedAddresses": [],
"bindAddress": "0.0.0.0:14265",
"limits": {
"bodyLengthBytes": 1000000,
"findTransactions": 1000,
"getTrytes": 1000,
"requestsList": 1000
}
},
"dashboard": {
"bindAddress": "localhost:8081",
"theme": "default",
"dev": false,
"basicAuth": {
"enabled": false,
"username": "",
"passwordHash": "",
"passwordSalt": ""
}
},
"db": {
"path": "devnetdb"
},
"snapshots": {
"loadType": "local",
"local": {
"depth": 50,
"intervalSynced": 50,
"intervalUnsynced": 1000,
"path": "snapshots/devnet/export.bin",
"downloadURLs": ["https://dbfiles.iota.org/devnet/hornet/latest-export.bin"]
},
"global": {
},
"pruning": {
"enabled": true,
"delay": 60480
}
},
"spentAddresses": {
"enabled": true
},
"coordinator": {
"address": "GYISMBVRKSCEXXTUPBWTIHRCZIKIRPDYAHAYKMNTPZSCSDNADDWAEUNHKUERZCTVAYJCNFXGTNUH9OGTW",
"securityLevel": 2,
"merkleTreeDepth": 22,
"mwm": 9,
"stateFilePath": "coordinator.state",
"merkleTreeFilePath": "coordinator.tree",
"intervalSeconds": 30,
"checkpoints": {
"maxTrackedTails": 10000
},
"tipsel": {
"minHeaviestBranchUnconfirmedTransactionsThreshold": 20,
"maxHeaviestBranchTipsPerCheckpoint": 10,
"randomTipsPerCheckpoint": 2,
"heaviestBranchSelectionDeadlineMilliseconds": 100
}
},
"network": {
"preferIPv6": false,
"gossip": {
"bindAddress": "0.0.0.0:15600",
"reconnectAttemptIntervalSeconds": 60
},
"autopeering": {
"bindAddress": "0.0.0.0:14626",
"runAsEntryNode": false,
"entryNodes": [
"iotaDvNxMP5EPQPbHNzMTZK5ipd4BGZfjZBomenmyk3@enter.devnet.thetangle.org:14637",
"7XmpP8KD2MSsHdZ4wcfjicbHJgsM5x325kaXXaq3VKsg@entrynode.devnet.einfachiota.de:14646"
],
"seed": ""
}
},
"tipsel": {
"maxDeltaTxYoungestRootSnapshotIndexToLSMI": 2,
"maxDeltaTxOldestRootSnapshotIndexToLSMI": 7,
"belowMaxDepth": 15,
"nonLazy": {
"retentionRulesTipsLimit": 100,
"maxReferencedTipAgeSeconds": 3,
"maxApprovers": 2,
"spammerTipsThreshold": 0
},
"semiLazy": {
"retentionRulesTipsLimit": 20,
"maxReferencedTipAgeSeconds": 3,
"maxApprovers": 2,
"spammerTipsThreshold": 30
}
},
"node": {
"alias": "",
"showAliasInGetNodeInfo": false,
"disablePlugins": [],
"enablePlugins": []
},
"spammer": {
"address": "HORNET99INTEGRATED99SPAMMER999999999999999999999999999999999999999999999999999999",
"message": "Spamming with HORNET tipselect",
"tag": "HORNET99INTEGRATED99SPAMMER",
"tagSemiLazy": "",
"cpuMaxUsage": 0.8,
"tpsRateLimit": 0.0,
"bundleSize": 1,
"valueSpam": false,
"workers": 0,
"autostart": false
},
"zmq": {
"bindAddress": "localhost:5556"
},
"profiling": {
"bindAddress": "localhost:6060"
},
"prometheus": {
"bindAddress": "localhost:9311",
"goMetrics": false,
"processMetrics": false,
"promhttpMetrics": false
}
}