Stop axelard and reset database
Copy sudo systemctl stop axelard
cp $HOME /.axelar/data/priv_validator_state.json $HOME /.axelar/priv_validator_state.json.backup
axelard tendermint unsafe-reset-all --home $HOME /.axelar --keep-addr-book
Copy STATE_SYNC_RPC = https://rpc.cosmos.directory:443/axelar
BACKUP_RPC = https://axelar-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="2551bf072d23835e42a32921beacbf3425fe376f@k8s-mainnet-axelarco-3ab48adcdb-974f2bc59e735192.elb.us-east-2.amazonaws.com:26656,9c9b8eb8cad8648f31d3c9da3d14e825f11a7b52@public-seed.mainnet.axelar.lunanova.tech:26656,ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0@seeds.polkachu.com:15156,ebc272824924ea1a27ea3183dd0b9ba713494f83@axelar-mainnet-seed.autostake.com:26826,c28827cb96c14c905b127b92065a3fb4cd77d7f6@seeds.whispernode.com:15156,3470414cd299d15911e9bb28557f6bffb8e514c6@seed-axelar-01.stakeflow.io:1606,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656,10ed1e176d874c8bb3c7c065685d2da6a4b86475@seed-axelar.ibs.team:16671"
echo -e "Modifying $HOME/.axelar/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 /.axelar/config/config.toml
mv $HOME /.axelar/priv_validator_state.json.backup $HOME /.axelar/data/priv_validator_state.json
Copy curl -L https://snapshots.lavenderfive.com/wasm/ $HOME /.axelar/wasmonly.tar.zst | tar -xaf - -C $HOME /.axelar
Restart axelard and check the log
Copy sudo systemctl restart axelard && sudo journalctl -u axelard -f --no-hostname -o cat