Using a Docker Container
Before continuing, please make sure you have setup a Stash and Controller address, as mentioned in the Account Setup section.
Sync Chain Data
Ensure Docker is installed (or install it in your OS of choice) and run the creditcoin-node
Docker image.
Docker should automatically pull the specified
gluwa/creditcoin
image. If not, you can try pulling it yourself from DockerHub by runningdocker pull gluwa/creditcoin:2.231.0-mainnet
and then re-running the command below.
PowerShell does not support comments on multiline commands, please use the uncommented version.
In the command above, notice the -v
flag that takes a local directory as the first part of the parameter. It's import that docker has the ability to write to this directory, otherwise you will see errors such as Error: Service(Client(Backend("IO Error: Permission denied (os error 13)")))
. Your command will likely use a path similar to -v /home/validator/data:/creditcoin-node/data
.
Here is an example command to run a validator that connects to the Creditcoin Testnet:
Last updated