Skip to main content

Sync & Endpoint

API, RPC and Peers:

API: https://union-api.node39.top:443
RPC: https://union-rpc.node39.top:443
gRPC: https://union-grpc.node39.top:443
Peer: [email protected]:21656

Live Peers:

Fetching live peers...

Snapshot Server ASIA:

time: 24 hours | db: goleveldb | pruning: 100/0/50 | indexer: null

sudo systemctl stop uniond 

cp $HOME/.union/data/priv_validator_state.json $HOME/.union/priv_validator_state.json.backup

uniond tendermint unsafe-reset-all --home $HOME/.union --keep-addr-book
SNAP_NAME=$(curl -s https://file3.node39.top/Mainnet/Union/ | egrep -o 'snapshot-union-[0-9]+\.tar\.lz4' | sort -V | tail -n 1)
wget -c https://file3.node39.top/Mainnet/Union/${SNAP_NAME} -O - | lz4 -dc - | tar -xf - -C $HOME/.union

mv $HOME/.union/priv_validator_state.json.backup $HOME/.union/data/priv_validator_state.json

sudo systemctl restart uniond && sudo journalctl -u uniond -fo cat

State sync:

sudo systemctl stop uniond 
cp $HOME/.union/data/priv_validator_state.json $HOME/.union/priv_validator_state.json.backup
uniond comet unsafe-reset-all --home $HOME/.union --keep-addr-book

SNAP_RPC="https://union-rpc.node39.top:443"
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)

sed -i "/\[statesync\]/, /^enable =/ s/=.*/= true/;\
/^rpc_servers =/ s|=.*|= \"$SNAP_RPC,$SNAP_RPC\"|;\
/^trust_height =/ s/=.*/= $BLOCK_HEIGHT/;\
/^trust_hash =/ s/=.*/= \"$TRUST_HASH\"/" $HOME/.union/config/config.toml
mv $HOME/.union/priv_validator_state.json.backup $HOME/.union/data/priv_validator_state.json

sudo systemctl restart uniond && sudo journalctl -u uniond -fo cat