State sync

fff5f6980591805db4c7aea96931d5815fa75563@65.108.6.45:46656State sync allows a new node to join a network by fetching a snapshot of the network state at a recent height, instead of fetching and replaying all historical blocks

Some blockchains do not yet know how to transfer wasm along with State sync. Download wasm if necessary

Important - different blockchains need a different amount of RAM to successfully start with State sync. Average 4 GB RAM

State sync

# stop the service and clear the database
systemctl stop gitopiad
gitopiad tendermint unsafe-reset-all --home $HOME/.gitopia --keep-addr-book
#download wasm if necessary
#curl -L https://share.utsa.tech/gitopia/wasm-gitopia.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.gitopia --strip-components 2
# add peer
peers="6b9d7432f899e3bbafc3f0c11495b7f641f0f978@144.76.29.90:46656"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.gitopia/config/config.toml
SNAP_RPC=https://m-gitopia.rpc.utsa.tech: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)

echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_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\"| ; \
s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" $HOME/.gitopia/config/config.toml

after echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH you should see something like this

# restart node
systemctl restart gitopiad && journalctl -u gitopiad -f -o cat

Attention. You may see the following errors ERR snapshot manager not configured ERR State sync failed err="state sync aborted" module=statesync

In this case, set the value of snapshot-interval to be greater than zero

Last updated