Monkey Labs Services
  • Services Mainnet
    • Mantra
  • Services Testnet
    • Fiamma
      • 🌪️Installation
      • Upgrade
      • Snapshot
      • Useful commands
    • Mantra
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
      • Peers -> Seeds -> Addrbook
    • Nillion
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Peers -> Seeds -> Addrbook
      • Useful commands
    • Prysm
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Peers -> Seeds -> Addrbook
      • Useful commands
    • Pryzm
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • Titan Network
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Peers -> Seeds -> Addrbook
      • Useful commands
    • Zenrock
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Peers -> Seeds -> Addrbook
      • Useful commands
    • Xrpd
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Peers -> Seeds -> Addrbook
      • Useful commands
Powered by GitBook
On this page
  • State Sync
  • Wasm
  1. Services Testnet
  2. Nillion

State sync

State Sync

If you don't want to wait for a long synchronization you can use:

sudo systemctl stop nilchaind

cp $HOME/.nilchain/data/priv_validator_state.json $HOME/.nilchain/priv_validator_state.json.backup
nilchaind tendermint unsafe-reset-all --home $HOME/.nilchain

peers="5e40412f685a203d3ffca156f49c0a2b39638d29@nillion-testnet-peer.monkeylabs.me:36656,0fb5ce425197a462a66de015ee5fbbf103835b8a@54.238.14.220:26656,7581c3fc378f1d6013e4f2eaa1e50fc3c25b9524@52.197.82.153:26656,d1a99acbf7139c9cf148357332986bbe7358793b@54.150.188.132:26656"  
SNAP_RPC="https://nillion-testnet-rpc.monkeylabs.me:443"

sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.nilchain/config/config.toml 

LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height);
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000));
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) 

echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH && sleep 2

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ;
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ;
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ;
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"| ;
s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" $HOME/.nilchain/config/config.toml

curl https://testnet-files.bonynode.online/nillion/wasmPath_nillion.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/
mv $HOME/.nilchain/priv_validator_state.json.backup $HOME/.nilchain/data/priv_validator_state.json

sudo systemctl restart nilchaind && sudo journalctl -u nilchaind -f

Wasm

Sorry, this project does not support WebAssembly.

PreviousSnapshotNextPeers -> Seeds -> Addrbook

Last updated 1 month ago