Snapshot
Address Book Updates every 5 hour
wget -O $HOME/.qubeticsd/config/addrbook.json https://files.nodeshub.online/testnet/qubetics/addrbook.json
Snapshot
sudo systemctl stop qubetics
# Back up priv_validator_state.json if needed
cp ~/.qubeticsd/data/priv_validator_state.json ~/.qubeticsd/priv_validator_state.json.backup.backup
# On other tendermint chainsReser data folder
qubeticsd tendermint unsafe-reset-all --home $HOME/.qubeticsd --keep-addr-book
SNAP_URL=$(curl -s https://files.nodeshub.online/testnet/qubetics/snapshot/snap-info.txt | grep "Snapshot_URL" | cut -d ' ' -f 2)
curl ${SNAP_URL} | lz4 -dc - | tar -xf - -C $HOME/.qubeticsd
cp $HOME/.qubeticsd/priv_validator_state.json.backup $HOME/.qubeticsd/data/priv_validator_state.json
sudo systemctl restart qubetics && sudo journalctl -u qubetics -f -o cat
Last updated