
Backup and Restore Validator Node
Part 1: Backing Up the Node
sudo systemctl stop 0gd0gchaind keys unsafe-export-eth-key "wallet"cp -r /root/.0gchain/config /path/to/backup/location
Part 2: Restoring the Node and Wallet
# Steps to install a new node # Wait until the node is fully syncedsudo systemctl stop 0gd0gchaind keys unsafe-import-eth-key "wallet_name" "privatekey"0gchaind keys add "wallet" --eth --recover
sudo systemctl start 0gd
Last updated