
Public Endpoints
Snapshots
Hippo Snapshot
ℹ️ Snapshot Info
Snapshots are maintained by LinkNode, our infrastructure division supporting blockchain networks with snapshots, RPC, API, and gRPC endpoints.
If the data above does not load, please check manually at linknode.org/snapshots
Prerequisites
Before you begin, ensure you have the following:
- The
hippodbinary is installed. lz4is installed. If not, run:sudo apt-get install lz4 -y.
Install Snapshot
- Download Snapshot
mkdir -p ~/snapshot
cd ~/snapshot
SNAPSHOT_URL="https://vault.astrostake.xyz/mainnet/hippo/hippo_snapshot.tar.lz4"
SNAPSHOT_FILE=$(basename "$SNAPSHOT_URL")
if [ ! -f "$SNAPSHOT_FILE" ]; then
echo "Downloading $SNAPSHOT_FILE..."
wget "$SNAPSHOT_URL"
else
echo "$SNAPSHOT_FILE already exists. Skipping download."
fi- Stop Service
sudo systemctl stop hippod.service- Backup & Delete Old Data
cp $HOME/.hippo/hippo/data/priv_validator_state.json $HOME/.hippo/priv_validator_state.json.backuprm -rf $HOME/.hippo/hippo/data- Extract & Restore
lz4 -c -d hippo_snapshot.tar.lz4 | tar -x -C $HOME/.hippo/hippomv $HOME/.hippo/priv_validator_state.json.backup $HOME/.hippo/hippo/data/priv_validator_state.json- Restart Service
sudo systemctl restart hippod
sudo journalctl -u hippod -f -o cat