Stop Agoric service
sudo systemctl stop agoricd.service
Remove old data in directory ~/.agoric/data
rm -rf ~/.agoric/data; \
mkdir -p ~/.agoric/data; \
cd ~/.agoric/data
Download snapshot
SNAP_NAME=$(curl -s http://135.181.60.250:8087/agoric/ | egrep -o ">agoric-3.*tar" | tr -d ">"); \
wget -O - http://135.181.60.250:8087/agoric/${SNAP_NAME} | tar xf -
Start service and check logs
sudo systemctl start agoricd.service; \
sudo journalctl -u agoricd.service -f --no-hostname