Snapshot

Address Book Updates every 5 hour

wget -O $HOME/.achilles/config/addrbook.json https://files.nodeshub.online/testnet/odiseo/addrbook.json

Snapshot

sudo systemctl stop odiseo

# Back up priv_validator_state.json if needed
cp ~/.achilles/data/priv_validator_state.json  ~/.achilles/priv_validator_state.json.backup.backup

# On other tendermint chainsReser data folder
achillesd tendermint unsafe-reset-all --home $HOME/.achilles --keep-addr-book

SNAP_URL=$(curl -s https://files.nodeshub.online/testnet/odiseo/snapshot/snap-info.txt | grep "Snapshot_URL" | cut -d ' ' -f 2)
curl ${SNAP_URL} | lz4 -dc - | tar -xf - -C $HOME/.achilles

cp $HOME/.achilles/priv_validator_state.json.backup $HOME/.achilles/data/priv_validator_state.json
sudo systemctl restart odiseo && sudo journalctl -u odiseo -f -o cat

Last updated