CHAIN IDVERSIONPRUNINGSIZETIMESTAMP
Loading...vLoading...100/0/19UnknownUnknown

Stop the TAC service

sudo systemctl stop tacchaind.service

Backup validator state

cp $HOME/.tacchaind/data/priv_validator_state.json $HOME/.tacchaind/priv_validator_state.json.backup

Reset the node data

rm -rf $HOME/.tacchaind/data/* $HOME/.tacchaind/wasm/*

Download and extract the latest snapshot

curl -L https://snapshot-testnet.huginn.tech/testnet/tacchain/ | tar -Ilz4 -xf - -C $HOME/.tacchaind

Restore validator state

mv $HOME/.tacchaind/priv_validator_state.json.backup $HOME/.tacchaind/data/priv_validator_state.json

Restart the TAC service

sudo systemctl start tacchaind.service

Check the node status

sudo journalctl -u tacchaind.service -f