Initia is a VM-agnostic network for 0-to-1 omnichain rollups, built by fusing a novel L1 with an interwoven application-specific L2 infrastructure system.
SnapShot is a functionality that allows you to access the data of the blockchain at a particular point in time. This can be useful for backup, recovery, or for starting a new node.
Node Snapshot
Loading...
Downloading a Snapshot
- Open your terminal.
Download the latest snapshot using the following command:
wget -O initia_latest.tar.lz4 https://initia-snap.denodes.xyz/initia_latest.tar.lz4
Applying a Snapshot
Stop the initiad service:
systemctl stop initiadMove the priv_validator_state.json file to a temporary location:
mv ~/.initia/data/priv_validator_state.json ~/.initia/priv_validator_state.jsonReset all Tendermint data:
initiad tendermint unsafe-reset-all --home $HOME/.initia --keep-addr-bookUncompress and apply the snapshot:
lz4 -c -d initia_latest.tar.lz4 | tar -x -C $HOME/.initiaMove back the priv_validator_state.json file:
mv ~/.initia/priv_validator_state.json ~/.initia/data/priv_validator_state.jsonRestart the initiad service:
systemctl restart initiadCheck the logs to ensure everything is running smoothly:
journalctl -fu initiad -o cat