Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 677 Bytes

Agoric.md

File metadata and controls

23 lines (20 loc) · 677 Bytes

Download latest snapshot (using the example of Osmosis)

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 -

alt text

Start service and check logs

sudo systemctl start agoricd.service; \
sudo journalctl -u agoricd.service -f --no-hostname