Snapshot Service
Snapshot allows a new node to join the network by recovering application state from a backup file. Snapshot contains compressed copy of chain data directory.
Latest Update snapshot_latest.tar.lz4
File Size ~2.5 GB
Block Height 1,773,905
Snapshot Installation
sudo systemctl stop injective-chain-releasesd
cp $HOME/.injective/data/priv_validator_state.json $HOME/.injective/priv_validator_state.json.backup
injective-chain-releasesd tendermint unsafe-reset-all --home $HOME/.injective --keep-addr-book
curl https://snapshots.winnode.xyz/injective-mainnet/snapshot_latest.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.injective
mv $HOME/.injective/priv_validator_state.json.backup $HOME/.injective/data/priv_validator_state.json
sudo systemctl restart injective-chain-releasesd && sudo journalctl -u injective-chain-releasesd -f -o cat