Stop crescentd and reset database
Copy sudo systemctl stop crescentd
cp $HOME /.crescent/data/priv_validator_state.json $HOME /.crescent/priv_validator_state.json.backup
crescentd tendermint unsafe-reset-all --home $HOME /.crescent --keep-addr-book
Copy STATE_SYNC_RPC = https://rpc.cosmos.directory:443/crescent
BACKUP_RPC = https://crescent-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="929f22a7b04ff438da9edcfebd8089908239de44@18.180.232.184:26656,ebc272824924ea1a27ea3183dd0b9ba713494f83@crescent-mainnet-seed.autostake.com:26816,3b60a29d89cd7ef6a8d0c7ba32013d7f2051e082@seed-crescent-01.stakeflow.io:1406,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656"
echo -e "Modifying $HOME/.crescent/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 /.crescent/config/config.toml
mv $HOME /.crescent/priv_validator_state.json.backup $HOME /.crescent/data/priv_validator_state.json
Copy curl -L https://snapshots.lavenderfive.com/wasm/ $HOME /.crescent/wasmonly.tar.zst | tar -xaf - -C $HOME /.crescent
Restart crescentd and check the log
Copy sudo systemctl restart crescentd && sudo journalctl -u crescentd -f --no-hostname -o cat