State sync

With our state sync services you will be able to catch up latest chain block in matter of minutes

Source
Source

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.

Instructions

Stop sourced and reset database

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

Get and configure the state sync information

STATE_SYNC_RPC=https://rpc.cosmos.directory:443/source
BACKUP_RPC=https://source-rpc.lavenderfive.com:443
LATEST_HEIGHT=$(curl -s $STATE_SYNC_RPC/block | jq -r .result.block.header.height)
BLOCK_HEIGHT=$(echo LATEST_HEIGHT | awk '{print $1 - ($1 % 6000)}'); \
TRUST_HASH=$(curl -s "$STATE_SYNC_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)
SEEDS="7347b05f140e4ed5d3da7b26c754a486dc1d2ecd@source-mainnet-seed.itrocket.net:32656,dea711723efa15ce2eb8412182ad11c8f1275c91@source.seed.bccnodes.com:40656,ebc272824924ea1a27ea3183dd0b9ba713494f83@source-mainnet-seed.autostake.com:27446,738be29546d9504b3845d781b9dc35bc6f996c5f@rpc.source.nodestake.top:666,637077d431f618181597706810a65c826524fd74@source.rpc.nodeshub.online:15856,ebc272824924ea1a27ea3183dd0b9ba713494f83@source-mainnet-seed.autostake.com:27446,8fb118f995c146357b67798e9bdd650d0c4161ea@seed.source.validatus.com:3000,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656,b85358e035343a3b15e77e1102857dcdaf70053b@seeds.bluestake.net:23256,08bc9afd0cac4ae6cf8f1877920b0cc7e58a6f42@seeds.tendermint.roomit.xyz:40002"

echo -e "Modifying $HOME/.source/config/config.toml based on the following values:"
echo -e "RPC Address:          $STATE_SYNC_RPC"
echo -e "Latest Block Height:  $LATEST_HEIGHT"
echo -e "Sync Block Height:    $BLOCK_HEIGHT"
echo -e "Trust Hash:           $TRUST_HASH"

sed -i \
  -e "s|^enable *=.*|enable = true|" \
  -e "s|^rpc_servers *=.*|rpc_servers = \"$STATE_SYNC_RPC,$BACKUP_RPC\"|" \
  -e "s|^trust_height *=.*|trust_height = $BLOCK_HEIGHT|" \
  -e "s|^trust_hash *=.*|trust_hash = \"$TRUST_HASH\"|" \
  -e "s|^seeds *=.*|seeds = \"$SEEDS\"|" \
  $HOME/.source/config/config.toml

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

Download latest wasm

Currently state sync does not support copy of the wasm folder. Therefore, you will have to download it manually.

curl -L https://snapshots.lavenderfive.com/wasm/$HOME/.source/wasmonly.tar.zst | tar -xaf - -C $HOME/.source

Restart sourced and check the log

sudo systemctl restart sourced && sudo journalctl -u sourced -f --no-hostname -o cat

Last updated