Snapshot

Snapshot Empe From RoomIT

How to Deploy Snapshot?

  1. Install Compression/Decompression Tools

sudo apt install lzma -y
  1. Download Snapshot

SNAPSHOT=$(curl -s https://roomit.xyz/snapshot/testnet/empe/ | grep -i "<a href=" | grep lzma | grep -v md5sum | awk -F"=" '{print $2}' |  sed 's/"//g' | sed "s/>//g" | sed "s/ //g")
wget -c https://roomit.xyz/snapshot/testnet/empe/${SNAPSHOT} --inet4-only
  1. Stop Your Service Blockchain

sudo systemctl stop empe-node

Notes : for systemd init blockchain, adjust with your name of service. systemctl stop emped

  1. Backup State Validator

cp ${HOME}/.empe-chain/data/priv_validator_state.json ${HOME}/.empe-chain/priv_validator_state.json
  1. Reset Node Blockchain

emped tendermint unsafe-reset-all --home $HOME/.empe-chain --keep-addr-book
  1. Extract Data Snapshot

lzma -d -c ${SNAPSHOT} | tar -xv -C $HOME/.empe-chain 
  1. Restore State Validator

cp ${HOME}/.empe-chain /priv_validator_state.json ${HOME}/.empe-chain/data/priv_validator_state.json
  1. Start Node Blockchain

sudo systemctl start empe-node

Last updated