Skip to main content

Upgrade

Chain ID: aeneid

Upgrade story-geth to v1.1.0

Stop the node

sudo systemctl stop aeneid aeneid-geth

Install new binary

cd $HOME
rm -rf story-geth
git clone https://github.com/piplabs/story-geth.git
cd story-geth
git checkout v1.1.0
make geth
mv build/bin/geth $HOME/go/bin/

Restart story service

sudo systemctl restart aeneid aeneid-geth && \
sudo journalctl -u aeneid -u aeneid-geth -fn 100

Upgrade story to v1.2.0

Install new binary

cd $HOME
rm -rf story
git clone https://github.com/piplabs/story
cd story
git checkout v1.2.0
go build -o story ./client
mkdir -p $HOME/go/bin/
mv $HOME/story/story $HOME/go/bin/

sudo systemctl stop aeneid aeneid-geth
cp $HOME/go/bin/story $HOME/.story/story/cosmovisor/genesis/bin/story

Restart story service

sudo systemctl restart aeneid aeneid-geth && \
sudo journalctl -u aeneid -u aeneid-geth -fn 100