State sync

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

Saga
Saga

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

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

Get and configure the state sync information

STATE_SYNC_RPC=https://rpc.cosmos.directory:443/saga
BACKUP_RPC=https://saga-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="ebc272824924ea1a27ea3183dd0b9ba713494f83@saga-mainnet-seed.autostake.com:27426,20e1000e88125698264454a884812746c2eb4807@seeds.lavenderfive.com:24956"

echo -e "Modifying $HOME/.ssc/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 \