Skip to main content

State Sync

Our State Sync server setup

info

State Sync allows a new node to join the network by fetching a snapshot of the application state at a recent height instead of fetching and replaying all historical blocks. Since the application state is generally much smaller than the blocks, and restoring it is much faster than replaying blocks, this can reduce the time to sync with the network from days to minutes.

Our app.toml settings related to state-sync is as follows

# Prune Type
pruning = "custom"

# Prune Strategy
pruning-keep-every = 2000

# State-Sync Snapshot Strategy
snapshot-interval = 2000
snapshot-keep-recent = 5

Our state-sync RPC server

https://terra-m-rpc.onnode.org

Stop the service and reset the data

sudo systemctl stop terrad
cp $HOME/.terra/data/priv_validator_state.json $HOME/.terra/priv_validator_state.json.backup
terrad tendermint unsafe-reset-all --keep-addr-book --home $HOME/.terra

Get and configure the state sync information

SNAP_RPC="https://terra-m-rpc.onnode.org:443"

LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 2000)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"|" $HOME/.terra/config/config.toml

mv $HOME/.terra/priv_validator_state.json.backup $HOME/.terra/data/priv_validator_state.json

Download latest wasm (optional)

If the chain does not support of the wasm folder, you can download it manually. We have taken out the cache sub-folder to ensure the wasm folder is compatible for all CPUs.

# Remove the empty wasm folder if you have an empty one
rm -r ~/.terra/wasm

# Get our wasm folder
wget -O terra_wasmonly.tar.lz4 https://snapshots.onnode.org/mainnet/terra/terra_wasmonly.tar.lz4

# Extract the wasm folder into the right place
lz4 -c -d terra_wasmonly.tar.lz4 | tar -x -C $HOME/.terra

Restart the service

sudo systemctl restart terrad
sudo journalctl -u terrad -f