Story Snapshot

Prunned
Archive

Prunned Snapshot Details

Latest Snapshot Details

snapshot data

Snapshot - Pruned

LAST UPDATED UTCFILENAMESIZELAST_BLOCK_HEIGHT
2024-12-09_22:23:08 story_snapshot.tar_story_data.tar.lz4 96G 1154276
2024-12-09_22:23:08 story_snapshot.tar_geth_data.tar.lz4 4.0K 1154276

CLI Commands to Generate Snapshot

# install dependencies, if needed sudo apt install curl tmux jq lz4 unzip -y # stop node sudo systemctl stop story story-geth # backup priv_validator_state.json cp $HOME/.story/story/data/priv_validator_state.json $HOME/.story/story/priv_validator_state.json.backup # remove old data and unpack Story snapshot rm -rf $HOME/.story/story/data curl 'https://story.cumulo.org.es/storydata/story_snapshot.tar_story_data.tar.lz4' | lz4 -dc - | tar -xf - -C $HOME/.story/story # restore priv_validator_state.json mv $HOME/.story/story/priv_validator_state.json.backup $HOME/.story/story/data/priv_validator_state.json # delete geth data and unpack Geth snapshot rm -rf $HOME/.story/geth/iliad/geth/chaindata curl 'https://story.cumulo.org.es/storydata/story_snapshot.tar_geth_data.tar.lz4' | lz4 -dc - | tar -xf - -C $HOME/.story/geth/iliad/geth # restart node and check logs sudo systemctl restart story story-geth sudo journalctl -u story-geth -u story -f