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