forked from kadena-io/chainweb-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminimal-config.yaml
93 lines (85 loc) · 2.3 KB
/
minimal-config.yaml
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
chainweb:
# The defining value of the network. To change this means being on a
# completely independent Chainweb.
chainwebVersion: mainnet01
mining:
# Settings for how a Node can provide work for remote miners.
coordination:
enabled: false
# `public` or `private`.
mode: private
# The number of `/mining/work` calls that can be made in total over a 5
# minute period.
limit: 1200
# When `mode: private`, this is a list of miner account names who are
# allowed to have work generated for them.
miners: []
p2p:
# Your node's network identity.
peer:
# Filepath to the `fullchain.pem` of the certificate of your domain.
# If `null`, this will be auto-generated.
certificateChainFile: null
# Filepath to the `privkey.pem` of the certificate of your domain.
# If `null`, this will be auto-generated.
keyFile: null
# You.
hostaddress:
# This should be your public IP or domain name.
hostname: localhost
# The port you'd like to run the Node on. 443 is a safe default.
port: 0
# Initial peers to connect to in order to join the network for the first time.
# These will share more peers and block data to your Node.
peers:
- address:
hostname: us-w1.chainweb.com
port: 443
id: null
- address:
hostname: us-e1.chainweb.com
port: 443
id: null
- address:
hostname: jp1.chainweb.com
port: 443
id: null
- address:
hostname: fr1.chainweb.com
port: 443
id: null
logging:
# All structural (JSON, etc.) logs.
telemetryBackend:
enabled: true
configuration:
handle: stdout
color: auto
# `text` or `json`
format: text
# Simple text logs.
backend:
handle: stdout
color: auto
# `text` or `json`
format: text
logger:
log_level: info
filter:
rules:
- key: component
value: cut-monitor
level: info
- key: component
value: pact-tx-replay
level: info
- key: component
value: connection-manager
level: info
- key: component
value: miner
level: info
- key: component
value: local-handler
level: info
default: error