State-Sync
Binary version | Chain ID | Staketab Peer | Snapshot interval | Snapshot keep recent |
---|
Manual launch:
Stop the service:
sudo systemctl stop crossfid.service
Reset the service:
crossfid tendermint unsafe-reset-all --home $HOME/.mineplex-chain --keep-addr-book
Fetch the data for config.toml
Our State-Sync RPC server and PEER:
SNAP_RPC=https://crossfi-testnet-rpc.staketab.org:443
STAKETAB_PEER=62adff3a93a838d9fa46fad4015cbb2a00ca36ba@148.251.235.130:19656
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height)
TRUST_HEIGHT=$((LATEST_HEIGHT - 1000))
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$TRUST_HEIGHT" | jq -r .result.block_id.hash)
sed -i -e 's|^persistent_peers *=.*|persistent_peers = "'$STAKETAB_PEER'"|' $HOME/.mineplex-chain/config/config.toml
sed -i -e 's|^enable *=.*|enable = true|' $HOME/.mineplex-chain/config/config.toml
sed -i -e 's|^rpc_servers *=.*|rpc_servers = "'$SNAP_RPC','$SNAP_RPC'"|' $HOME/.mineplex-chain/config/config.toml
sed -i -e 's|^trust_height *=.*|trust_height = "'$TRUST_HEIGHT'"|' $HOME/.mineplex-chain/config/config.toml
sed -i -e 's|^trust_hash *=.*|trust_hash = "'$TRUST_HASH'"|' $HOME/.mineplex-chain/config/config.toml
If you are unable to connect to the state sync server, then add the Staketab state-sync Peer. You can find it here.
Restart the service:
sudo systemctl restart crossfid.service
Autolaunch State-Sync:
Specify HOST_PORT, BINARY, CONFIG_FOLDER, SERVICE_NAME and BLOCKS:
wget https://raw.githubusercontent.com/Staketab/cosmos-tools/main/state-sync/statesync.sh
chmod +x statesync.sh
./statesync.sh https://crossfi-testnet-rpc.staketab.org:443 crossfid .mineplex-chain crossfid 1000
Wait for the snapshot to finish downloading with the message: INF Snapshot restored...