Run Testnet Validator
Here's a step by step procedure on how to participate as node validator on SparkChain Network testnet. Make sure you are a holder of a node key NFT (see purchase guide).
Clone the SparkChain Network Node GitHub repository.
If using VPS, run
sudo chmod 777 config
in the base directory of the sparkpoint-network-node repository.Open
config/nodeConfig.json
, and replace"PRIVATE KEY”
with your own private key used in purchasing the node keyIf you have a paid Arbitrum Orbit RPC, replace the
”https://sepolia-rollup.arbitrum.io/rpc”
with your own Arbitrum Sepolia RPC URL, and adjust”node”.”inbox-reader”
values to fully utilize your RPC speedRun
npm run start
ordocker compose up -d
in the base directory of the sparkpoint-network-node repository. This will launch the node with a public RPC reachable at http 8449Optionally, run
npm run logs
ordocker compose logs -f nitro
in the base directory of the sparkpoint-network-node repository to view the logs of the node
Last updated