@@ -35,6 +35,7 @@ If you are using the recommended file-based configuration then you'll need to ad
3535consensus :
3636 server_addr : ' 0.0.0.0:3054'
3737 public_addr :
38+ ' ???'
3839 # Address under which the node is accessible to the other nodes.
3940 # It can be a public domain, like `example.com:3054`, in case the main node is accessible from the internet,
4041 # or it can be a kubernetes cluster domain, like `server-v2-core.<cluster name>.svc.cluster.local:3054` in
@@ -46,9 +47,12 @@ consensus:
4647 chain_id : ??? # chain id
4748 protocol_version : 1 # consensus protocol version
4849 validators :
49- - key : validator:public:??? # public key of the main node (copy this PUBLIC key from the secrets you generated)
50+ - key : validator:public:??? # validator public key of the main node (copy this PUBLIC key from the secrets you generated)
5051 weight : 1
5152 leader : validator:public:??? # same as above - main node will be the only validator and the only leader.
53+ seed_peers :
54+ - key : ' node:public:ed25519:...' # node public key of the main node (copy this PUBLIC key from the secrets you generated)
55+ addr : ' ???' # same as public_addr above
5256` ` `
5357
5458And the secrets you generated to your ` secrets.yaml` config file:
@@ -68,6 +72,7 @@ content:
6872` ` ` yaml
6973server_addr: '0.0.0.0:3054'
7074public_addr:
75+ '???'
7176 # Address under which the node is accessible to the other nodes.
7277 # It can be a public domain, like ` example.com:3054`, in case the main node is accessible from the internet,
7378 # or it can be a kubernetes cluster domain, like `server-v2-core.<cluster name>.svc.cluster.local:3054` in
@@ -79,9 +84,12 @@ genesis_spec:
7984 chain_id : ??? # chain id
8085 protocol_version : 1 # consensus protocol version
8186 validators :
82- - key : validator:public:??? # public key of the main node (copy this PUBLIC key from the secrets you generated)
87+ - key : validator:public:??? # validator public key of the main node (copy this PUBLIC key from the secrets you generated)
8388 weight : 1
8489 leader : validator:public:??? # same as above - main node will be the only validator and the only leader.
90+ seed_peers :
91+ - key : ' node:public:ed25519:...' # node public key of the main node (copy this PUBLIC key from the secrets you generated)
92+ addr : ' ???' # same as public_addr above
8593` ` `
8694
8795And a ` consensus_secrets.yaml` file with the with the secrets you generated previously:
0 commit comments