Axone Snapshot
Installation Snapshot Guide
Section titled “Installation Snapshot Guide”1. Stop the Node & Backup Validator State
Section titled “1. Stop the Node & Backup Validator State”sudo systemctl stop axonedcp $HOME/.axoned/data/priv_validator_state.json $HOME/.axoned/priv_validator_state.json.backup2. Reset Node Data
Section titled “2. Reset Node Data”axoned tendermint unsafe-reset-all --home $HOME/.axoned --keep-addr-book3. Download and Extract the Snapshot
Section titled “3. Download and Extract the Snapshot”LATESTSNAPSHOT=$(curl -s https://snapshot-axone-mainnet.maouam.xyz | grep -o 'snapshot[^\"]*.tar.gz' | sort | tail -n 1)curl -L "https://snapshot-axone-mainnet.maouam.xyz//$LATESTSNAPSHOT" | tar -xz -C $HOME/.axoned4. Restore Validator State
Section titled “4. Restore Validator State”mv $HOME/.axoned/priv_validator_state.json.backup $HOME/.axoned/data/priv_validator_state.json5. Restart Node and Verify Logs
Section titled “5. Restart Node and Verify Logs”sudo systemctl restart axonedsudo journalctl -u axoned -f --no-hostname -o cat