Home·Validation Tools·Osmosis
Osmosis 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 osmosisd and reset database

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

#Get and configure the state sync information

STATE_SYNC_RPC=https://rpc.cosmos.directory:443/osmosis
BACKUP_RPC=https://rpc.lavenderfive.com:443/osmosis
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]:12556,[email protected]:12556,ebc272824924ea1a27ea3183dd0b9ba713494f83@osmosis-mainnet-seed.autostake.com:26716,3cc024d1c760c9cd96e6413abaf3b36a8bdca58e@seeds.goldenratiostaking.net:1630,e891d42c31064fb7e0d99839536164473c4905c2@seed-osmosis.freshstaking.com:31656,[email protected]:12556,38ab18cb2ea1dfeb6232b429e1508f56b6ae5031@seed-osmosis-01.stakeflow.io:65535,[email protected]:31656,[email protected]:26656,2cb8dd6195c65458e3c18505bb70ce2ff624f85c@seed.osmosis.validatus.com:2000,[email protected]:24856"

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

mv $HOME/.osmosisd/priv_validator_state.json.backup $HOME/.osmosisd/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/osmosis/wasmonly.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.osmosisd

#Restart osmosisd and check the log

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