Stop bitbadgeschaind and reset database
Copy sudo systemctl stop bitbadgeschaind
cp $HOME /.bitbadgeschaind/data/priv_validator_state.json $HOME /.bitbadgeschaind/priv_validator_state.json.backup
bitbadgeschaind tendermint unsafe-reset-all --home $HOME /.bitbadgeschaind --keep-addr-book
Copy STATE_SYNC_RPC = https://rpc.cosmos.directory:443/bitbadges
BACKUP_RPC = https://bitbadges-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 = ""
echo -e "Modifying $HOME/.bitbadgeschaind/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 /.bitbadgeschaind/config/config.toml
mv $HOME /.bitbadgeschaind/priv_validator_state.json.backup $HOME /.bitbadgeschaind/data/priv_validator_state.json
Copy curl -L https://snapshots.lavenderfive.com/wasm/ $HOME /.bitbadgeschaind/wasmonly.tar.zst | tar -xaf - -C $HOME /.bitbadgeschaind
Restart bitbadgeschaind and check the log
Copy sudo systemctl restart bitbadgeschaind && sudo journalctl -u bitbadgeschaind -f --no-hostname -o cat