router-icon

Node Snapshot Testnet Router

You can use the node snapshot below to get the block height according to the latest snapshot file we uploaded, we usually update the snapshot every 12/24 hours "UTC". With node snapshots, you can save storage space and time to sync your nodes.

Our Prune Configuration

                    
pruning = "custom"

# applied pruning strategy
pruning-keep-recent = "100"
pruning-interval = "10"

                    
                

Snapshot Info

location: Germany
file name: router-10338096.tar.lz4
block height: 10338096
snapshot size: 2.0G
timestamp: 53 day ago
Download

Wasm file

Wasm file: wasm_file.tar.lz4
Size wasm: 399M
Download wasm

Instructions with terminal

Note*

- If snapshot info doesn't show data, it means our server is down.
- Contact us if you need help / report.
- Ignore red text if you are not a validator.
- If you are a validator that uses a single node, make sure to back up priv_validator_key.json and priv_validator_state.json. Security reason
  • Install requirement if don't have:
    sudo apt install lz4 -y
  • Stop node :
    sudo systemctl stop routerd
    Some also use this :
    systemctl --user stop routerd
  • For Validator node

  • Back up priv_validator_key.json in safe place:
                                
    # default path
    # $HOME/.routerd/config/priv_validator_key.json
                            
  • Back up priv_validator_state.json:
    cp $HOME/.routerd/data/priv_validator_state.json $HOME/.routerd/priv_validator_state.json.bak
  • Reset chain data:
    routerd tendermint unsafe-reset-all --home $HOME/.routerd --keep-addr-book
  • Delete wasm:
  • Usually the wasm path is located at `$HOME/.chain-dir`, but if it is not there, you can customize it.
    rm -r $HOME/.routerd/wasm
  • Download Snapshot Data ~ Including wasm files:
    curl -o - -L https://snapshot-de-1.genznodes.dev/router/router-10338096.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.routerd
  • Validator node move priv_validator_state.json that was backed up earlier:
    mv $HOME/.routerd/priv_validator_state.json.bak $HOME/.routerd/data/priv_validator_state.json
  • Restart node:
    sudo systemctl restart routerd
    journalctl -fu routerd -o cat
    Some also use this :
    systemctl --user restart routerd
    journalctl --user -fu routerd -o cat