Become a Validator
Clone the repo
git clone https://gitlab.com/chainfusion/cfnode-compose.git
cd cfnode-compose/validatorGenerate keystore file
docker run \
--rm -v $(pwd)/keystore:/data/keystore -it chainfusion/cfnode:latest \
account new --datadir=/dataConfigure validator node
# Docker image of validator node,
# could be left without changes
IMAGE=chainfusion/cfnode:latest
# List of initial nodes to connect to,
# could be left without changes
BOOTNODES=enode://6295b6ea88a1519b7b0078c9e7d39921cdc73bdca67e029c1675c67076b0ccdcadc51b2f333f1eafab4ea6501afecb1bad7cb7cd4edaf91e5696ee89dce05edb@bootnode.chainfusion.org:30303
# External IP of your machine, where validator is started,
# should be set to be findable by other nodes
EXTERNAL_IP=127.0.0.1
# Public address of generated keystore, without leading 0x,
# could be found inside keystore file
ADDRESS=
# Password for keystore file,
# in case you set it during generation,
# otherwise leave empty
PASSWORD=Launch validator node
See validator logs
Staking
Verify that node is producing blocks
Last updated