Stop sentinelhub and reset database
Copy sudo systemctl stop sentinelhub
cp $HOME /.sentinelhub/data/priv_validator_state.json $HOME /.sentinelhub/priv_validator_state.json.backup
sentinelhub tendermint unsafe-reset-all --home $HOME /.sentinelhub --keep-addr-book
Copy STATE_SYNC_RPC = https://rpc.cosmos.directory:443/sentinel
BACKUP_RPC = https://sentinel-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@sentinel-mainnet-seed.autostake.com:26706,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656,08bc9afd0cac4ae6cf8f1877920b0cc7e58a6f42@seeds.tendermint.roomit.xyz:40004,e8b2ebbd5e90bd89cb89160dd040fda7d04984a4@seeds.badgerbite.io:26656,b85358e035343a3b15e77e1102857dcdaf70053b@seeds.bluestake.net:26556,10ed1e176d874c8bb3c7c065685d2da6a4b86475@seed-sentinel.ibs.team:16683"
echo -e "Modifying $HOME/.sentinelhub/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 /.sentinelhub/config/config.toml
mv $HOME /.sentinelhub/priv_validator_state.json.backup $HOME /.sentinelhub/data/priv_validator_state.json
Copy curl -L https://snapshots.lavenderfive.com/wasm/ $HOME /.sentinelhub/wasmonly.tar.zst | tar -xaf - -C $HOME /.sentinelhub
Restart sentinelhub and check the log
Copy sudo systemctl restart sentinelhub && sudo journalctl -u sentinelhub -f --no-hostname -o cat