State sync

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

Pell
Pell

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 pellcored and reset database

sudo systemctl stop pellcored
cp .pellcored/data/priv_validator_state.json .pellcored/priv_validator_state.json.backup
pellcored tendermint unsafe-reset-all --home .pellcored --keep-addr-book

Get and configure the state sync information

STATE_SYNC_RPC=https://rpc.cosmos.directory:443/pell
BACKUP_RPC=https://pell-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="d52c32a6a8510bdf0d33909008041b96d95c8408@34.87.39.12:26656,9b955d07f05b02b3d622f9cb7a0e6cfecd719985@34.87.47.193:26656"

echo -e "Modifying .pellcored/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\"|" \
  .pellcored/config/config.toml

mv .pellcored/priv_validator_state.json.backup .pellcored/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/.pellcored/wasmonly.tar.zst | tar -xaf - -C .pellcored

Restart pellcored and check the log

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

Last updated