Validator Maintenance
Common validator maintenance steps
Updating to the latest version of sx-node
git pull && chmod +x update_validator.sh && ./update_validator.sh "$(curl http://checkip.amazonaws.com)"Running your node in safety mode
sudo systemctl stop sx-noderm -rf data/blockchain/ data/trie/ data/consensus/snapshots data/consensus/metadatachain_config: /home/heisenberg/validator/sx-node/genesis.json data_dir: /home/heisenberg/validator/sx-node/data block_gas_target: 0x3938700 grpc_addr: 0.0.0.0:10000 jsonrpc_addr: 0.0.0.0:10002 network: libp2p_addr: 0.0.0.0:10001 nat_addr: 127.0.0.1 bootnode_only_sync: true seal: true tx_pool: price_limit: 1000000000 log_level: DEBUG gasprice_block_utilization_threshold: 0.95 data_feed: verify_outcome_api_url: https://outcome-reporter.sx.technology/api/outcomesudo systemctl daemon-reload && sudo systemctl restart sx-node
Last updated