Home·Validation Tools·Elys Network
Elys Network logo
MAINNET
By LavenderFive

With our state sync services you will be able to catch up latest chain block in matter of minutes

    State Sync allows a new node to join the network by fetching a snapshot of the application state at a recent height instead of fetching and replaying all historical blocks. Since the application state is generally much smaller than the blocks, and restoring it is much faster than replaying blocks, this can reduce the time to sync with the network from days to minutes.

#Instructions

#Stop elysd and reset database

sudo systemctl stop elysd
cp $HOME/.elysd/data/priv_validator_state.json $HOME/.elysd/priv_validator_state.json.backup
elysd tendermint unsafe-reset-all --home $HOME/.elysd --keep-addr-book

#Get and configure the state sync information

STATE_SYNC_RPC=https://rpc.cosmos.directory:443/elys
BACKUP_RPC=https://rpc.lavenderfive.com:443/elys
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="[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:22056,36d9c4dcdee38411d680f897481322bcb7e10aa8@elys-mainnet-seed.itrocket.net:41656,[email protected]:16687,ebc272824924ea1a27ea3183dd0b9ba713494f83@elys-mainnet-seed.autostake.com:27396,[email protected]:29186,[email protected]:26656"

echo -e "Modifying $HOME/.elysd/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/.elysd/config/config.toml

mv $HOME/.elysd/priv_validator_state.json.backup $HOME/.elysd/data/priv_validator_state.json

#Download latest wasm

    Currently state sync does not support copy of the `wasm` folder. Therefore, you will have to download it manually.
curl -L https://snapshots.lavenderfive.com/wasm/elys/wasmonly.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.elysd

#Restart elysd and check the log

sudo systemctl restart elysd && sudo journalctl -u elysd -f --no-hostname -o cat
Chain ID:
elys-1
Latest Version:
v1.4.0
Github:
elys-network/elys
Public endpoints
REST/LCD
rest.lavenderfive.com:443/elys
RPC
rpc.lavenderfive.com:443/elys
gRPC
elys.lavenderfive.com:443
WebSocket
wss://rpc.lavenderfive.com:443/elys/websocket
Lavender Five
© 2022 Lavender.Five Nodes. All rights reserved.
Terms of Service.Privacy policy.Cookies policy.