State sync

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

Provenance
Provenance

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

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

Get and configure the state sync information

STATE_SYNC_RPC=https://rpc.cosmos.directory:443/provenance
BACKUP_RPC=https://provenance-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="a85a651a3cf1746694560c5b6f76d566c04ca581@provenance-seed.takeshi.team:10556,ebc272824924ea1a27ea3183dd0b9ba713494f83@provenance-mainnet-seed.autostake.com:27376,40f9493fa7ab4259159240e9a8ba12f90743079b@seed.provenance.io:26656,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656,ad3386812bb9f2fee4e9da6d9f37547afc948977@provenance-seed.panthea.eu:42656,10ed1e176d874c8bb3c7c065685d2da6a4b86475@seed-provenance.ibs.team:16675,258f523c96efde50d5fe0a9faeea8a3e83be22ca@seed.pio-mainnet-1.provenance.aviaone.com:10277"

echo -e "Modifying $HOME/Provenance/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/Provenance/config/config.toml

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

Restart provenanced and check the log

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

Last updated