Stop persistenceCore and reset database
Copy sudo systemctl stop persistenceCore
cp $HOME /.persistenceCore/data/priv_validator_state.json $HOME /.persistenceCore/priv_validator_state.json.backup
persistenceCore tendermint unsafe-reset-all --home $HOME /.persistenceCore --keep-addr-book
Copy STATE_SYNC_RPC = https://rpc.cosmos.directory:443/persistence
BACKUP_RPC = https://persistence-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="eaa76966cad27a9807b7d8b9a62c9b2ca4924581@tenderseed.ccvalidators.com:26003,ebc272824924ea1a27ea3183dd0b9ba713494f83@persistence-mainnet-seed.autostake.com:26896,ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0@seeds.polkachu.com:15456,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656,ab7fc0b9b3c523dacec0500c9f9f1f7f4699d551@persis-m.seed.stavr.tech:4056,ce9dc9467af943bf35f17f04cfcdf3895914d867@seed-persistence-01.stakeflow.io:33656,ba6ca269cfcf412c175dd6259c1ae15ee5370b08@seed.persistence.validatus.com:3000,b85358e035343a3b15e77e1102857dcdaf70053b@seeds.bluestake.net:28556"
echo -e "Modifying $HOME/.persistenceCore/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 /.persistenceCore/config/config.toml
mv $HOME /.persistenceCore/priv_validator_state.json.backup $HOME /.persistenceCore/data/priv_validator_state.json
Copy curl -L https://snapshots.lavenderfive.com/wasm/$HOME/.persistenceCore/wasmonly.tar.zst | tar -xaf - -C $HOME/.persistenceCore
Restart persistenceCore and check the log
Copy sudo systemctl restart persistenceCore && sudo journalctl -u persistenceCore -f --no-hostname -o cat