HUMANS SNAPSHOT SETUP
# INSTALL LZ4
sudo apt update
sudo apt install lz4 -y
# STOP HUMANS NODE
sudo systemctl stop humansd
# KEYS BACKUP
# If you are a Validator remember to backup your keys
# If you are a Validator remember to backup your keys
priv_validator_key.json
and
node_key.json
mkdir $HOME/backup
cp $HOME/.humansd/config/priv_validator_key.json $HOME/backup
cp $HOME/.humansd/config/node_key.json $HOME/backup
# RESET HUMANS NODE
humansd tendermint unsafe-reset-all --home $HOME/.humansd
# DOWNLOAD AND EXTRACT SNAPSHOT AND ADDRBOOK.JSON
wget https://snapshot.safeblock.space/humans/addrbook.json -P $HOME/.humansd/config
wget https://snapshot.safeblock.space/humans/humans-snapshot_03-12-2023.tar.lz4
lz4 -c -d humans-snapshot_03-12-2023.tar.lz4 | tar -x -C $HOME/.humansd
rm humans-snapshot_03-12-2023.tar.lz4
# START HUMANS NODE
# CHECK IF NODE HAS STARTED
# (Ctrl+C To Exit)
# (Ctrl+C To Exit)
If response is “true”, you not are synched, wait….
When response is “false”, your node are synched to Humans Network
sudo systemctl start humansd
# CHECK IF NODE HAS STARTED
sudo journalctl -fu humansd -o cat
# (Ctrl+C To Exit)
sudo journalctl -fu humansd -o cat | grep index
# (Ctrl+C To Exit)
http://0.0.0.0:26657/status | jq -r .result.sync_info.catching_up
If response is “true”, you not are synched, wait….
When response is “false”, your node are synched to Humans Network