-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeydonix-config.cfg
47 lines (47 loc) · 1007 Bytes
/
keydonix-config.cfg
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
{
"Init": {
"EnableUnsecuredDevWallet": true,
"KeepDevWalletInMemory": true,
"WebSocketsEnabled": false,
"DiscoveryEnabled": false,
"PeerManagerEnabled": false,
"ProcessingEnabled": true,
"IsMining": true,
"StoreReceipts": true,
"ChainSpecPath": "chainspec/keydonix.json",
"BaseDbPath": "keydonix_db",
"LogFileName": "keydonix.logs.txt",
"UseMemDb": true,
},
"Sync": {
"SynchronizationEnabled": false,
},
"Network": {
"DiscoveryPort": 30303,
"P2PPort": 30303
},
"JsonRpc": {
"Enabled": true,
"Host": "0.0.0.0",
"Port": 8545
},
"Db": {
"WriteBufferSize": 16000000,
"WriteBufferNumber": 4,
"BlockCacheSize": 64000000,
"CacheIndexAndFilterBlocks": true
},
"EthStats": {
"Enabled": false,
"Server": "ws://localhost:3000/api",
"Name": "Nethermind",
"Secret": "secret",
"Contact": "[email protected]"
},
"Metrics": {
"Enabled": false,
"NodeName": "Keydonix",
"PushGatewayUrl": "http://localhost:9091/metrics",
"IntervalSeconds": 5
}
}