Back to all services Back to all services
Story logo

Story

Aeneid

chainID: aeneid TESTNET

Story Testnet Snapshots

Latest Snapshot

Degraded

Source: https://snap.testnet.story.cumulo.com.es/story-snapshots/

Last Update (UTC): N/A

Latest Block Height: N/A

Notice: Error loading data

Consensus snapshot

#

Size: N/A

Geth snapshot

#

Size: N/A

How to Restore

Install Required Packages:

sudo apt update && sudo apt install -y aria2 zstd curl jq lz4

Restore Snapshot (Consensus + Geth):

# Stop services
sudo systemctl stop story story-geth

# Backup validator state (only needed for validator nodes)
cp $HOME/.story/story/data/priv_validator_state.json $HOME/.story/priv_validator_state.json.backup || true

# Wipe old data
rm -rf $HOME/.story/story/data
rm -rf $HOME/.story/geth/aeneid/geth/chaindata

# Download + restore consensus snapshot (extracts into story/data)
aria2c -x 16 -s 16 -k 1M -o story_consensus_snapshot.tar.zst "#"
mkdir -p $HOME/.story/story/data
tar --use-compress-program=zstd -xf story_consensus_snapshot.tar.zst -C $HOME/.story/story/data
rm -f story_consensus_snapshot.tar.zst

# Restore validator state (if backup exists)
if [ -f "$HOME/.story/priv_validator_state.json.backup" ]; then
  mkdir -p $HOME/.story/story/data
  mv $HOME/.story/priv_validator_state.json.backup $HOME/.story/story/data/priv_validator_state.json
fi

# Download + restore geth snapshot (extracts into geth/chaindata)
aria2c -x 16 -s 16 -k 1M -o story_geth_snapshot.tar.zst "#"
mkdir -p $HOME/.story/geth/aeneid/geth/chaindata
tar --use-compress-program=zstd -xf story_geth_snapshot.tar.zst -C $HOME/.story/geth/aeneid/geth/chaindata
rm -f story_geth_snapshot.tar.zst

# Start services (geth first)
sudo systemctl start story-geth
sleep 5
sudo systemctl start story

# Follow logs
sudo journalctl -u story-geth -u story -f -o cat