State Sync

Endpoints:

https://elys.test.rpc.nodeshub.online

Address Book Updates every 5 hour

wget -O $HOME/.elys/config/addrbook.json https://files.nodeshub.online/testnet/elys/addrbook.json

State Sync

If you don't want to wait for a long synchronization you can use:

sudo systemctl stop elys

# Back up priv_validator_state.json if needed
cp ~/.elys/data/priv_validator_state.json  ~/.elys/priv_validator_state.json.backup

# On some tendermint chains
elysd unsafe-reset-all --home $HOME/.elys --keep-addr-book

# On other tendermint chains
elysd tendermint unsafe-reset-all --home $HOME/.elys --keep-addr-book

SNAP_RPC="https://elys.test.rpc.nodeshub.online:443"
PEERS="$(curl -s https://files.nodeshub.online/mainnet/elys/peers.txt)"
sed -i.bak -e "s|^persistent_peers *=.*|persistent_peers = \"$PEERS\"|" $HOME/.elys/config/config.toml

LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height);
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000));
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) 

echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH && sleep 2

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ;
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ;
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ;
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"| ;
s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" $HOME/.elys/config/config.toml

cp $HOME/.elys/priv_validator_state.json.backup $HOME/.elys/data/priv_validator_state.json

sudo systemctl restart elys && sudo journalctl -u elys -f -o cat

Last updated