Network
Cosmos
Crossfi
Endpoint
PEERS
de1e9221a35de41e08653ef0aca405c1f2ad500e@crossfi-testnet-peer.dashnode.org:19656
API
https://crossfi-testnet-api.dashnode.org/
RPC
https://crossfi-testnet-rpc.dashnode.org/

SNAPSHOT

DAEMON_HOME=$HOME/.mineplex-chain
SERVICE_NAME=crossfid
NETWORK=crossfi-testnet
 
sudo systemctl stop ${SERVICE_NAME}
cp ${DAEMON_HOME}/data/priv_validator_state.json ${DAEMON_HOME}/priv_validator_state.json.backup
rm -rf ${DAEMON_HOME}/data
mkdir -p ${DAEMON_HOME}/data
 
SNAP_NAME=$(curl -s https://snapshot.dashnode.org/${NETWORK}/ | egrep -o ">${NETWORK}-snapshot.*\.tar.lz4" | tr -d ">")
curl https://snapshot.dashnode.org/${NETWORK}/${SNAP_NAME} | lz4 -dc - | tar -xf - -C ${DAEMON_HOME}/data
mv ${DAEMON_HOME}/priv_validator_state.json.backup ${DAEMON_HOME}/data/priv_validator_state.json
 
sudo systemctl restart ${SERVICE_NAME}
sudo journalctl -fu ${SERVICE_NAME} --no-hostname -o cat