Snapshot

Snapshot Selfchain 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/mainnet/selfchain/ | 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/mainnet/selfchain/${SNAPSHOT} --inet4-only
  1. Stop Your Service Blockchain

sudo systemctl stop selfchain-node

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

  1. Backup State Validator

cp ${HOME}/.selfchain/data/priv_validator_state.json ${HOME}/.selfchain/priv_validator_state.json
  1. Reset Node Blockchain

selfchaind tendermint unsafe-reset-all --home $HOME/.selfchain --keep-addr-book
  1. Extract Data Snapshot

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

cp ${HOME}/.selfchain /priv_validator_state.json ${HOME}/.selfchain/data/priv_validator_state.json
  1. Start Node Blockchain

sudo systemctl start selfchain-node

Last updated