Network
Cosmos
Airchain
Endpoint
SEEDS
aeaf101d54d47f6c99b4755983b64e8504f6132d@airchain-testnet-peer.dashnode.org:28656
API
https://airchain-testnet-api.dashnode.org/
RPC
https://airchain-testnet-rpc.dashnode.org/

SNAPSHOT

DAEMON_HOME=$HOME/.junction
SERVICE_NAME=junctiond
NETWORK=airchain-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