Stop chain-maind and reset database
Copy sudo systemctl stop chain-maind
cp $HOME /.chain-maind/data/priv_validator_state.json $HOME /.chain-maind/priv_validator_state.json.backup
chain-maind tendermint unsafe-reset-all --home $HOME /.chain-maind --keep-addr-book
Copy STATE_SYNC_RPC = https://rpc.cosmos.directory:443/cryptoorgchain
BACKUP_RPC = https://cryptoorgchain-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="87c3adb7d8f649c51eebe0d3335d8f9e28c362f2@seed-0.crypto.org:26656,e1d7ff02b78044795371beb1cd5fb803f9389256@seed-1.crypto.org:26656,2c55809558a4e491e9995962e10c026eb9014655@seed-2.crypto.org:26656,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656,ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0@seeds.polkachu.com:20256"
echo -e "Modifying $HOME/.chain-maind/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 /.chain-maind/config/config.toml
mv $HOME /.chain-maind/priv_validator_state.json.backup $HOME /.chain-maind/data/priv_validator_state.json
Copy curl -L https://snapshots.lavenderfive.com/wasm/ $HOME /.chain-maind/wasmonly.tar.zst | tar -xaf - -C $HOME /.chain-maind
Restart chain-maind and check the log
Copy sudo systemctl restart chain-maind && sudo journalctl -u chain-maind -f --no-hostname -o cat