BlockPro | Services
  • About
  • HUB
    • Namada HUB
      • What is Namada?
      • News & Updates
      • Guides
        • Running Low on $NAM for Gas? Try This!
      • Validator Services
      • Governance
      • Contribute / Feedback
    • Fuel HUB
      • What is Fuel?
      • News & Updates
      • Guides
        • How to stake
      • Validator Services
      • Governance
      • Contribute / Feedback
  • mainnet
    • Lava
      • ⚙️Services | Snapshot
      • 🗻Installation
      • 🖱️Upgrade
      • 🖥️Useful commands
    • Stargaze
      • ⚒️Installation
      • ⚙️Services | Sync
      • 🔄Upgrade
      • 🖥️Useful commands
    • Fuel
      • ⚒️Run Sequencer Validator
      • ⚙️Services | Sync
      • 🖥️Useful commands
      • Ethereum Mainnet Full Node
    • Namada Docs
      • ⚒️Installation
      • ⚙️Services Snapshot
    • Nolus
      • ⚙️Services | Snapshot
      • 🗻Installation
      • 🖱️Upgrade
      • 🖥️Useful commands
    • Quasar
      • ⚙️Services | Snapshot
      • 🗻Installation
      • 🖱️Upgrade
      • 🖥️Useful commands
    • Cross Finance
  • testnet
    • Cross Finance
      • Installation
    • Lava
      • Installation
      • Upgrade
      • Useful commands
    • Quasar
      • Installation
      • Upgrade
      • Useful commands
    • 0G
      • Installation
      • Upgrade
      • Useful commands
    • Story
      • ⚙️Services | Snapshot
      • 🗻Installation
      • 🖱️Upgrade
      • 🖥️Useful commands
    • Warden
      • ⚙️Services | Snapshot
      • 🗻Installation
      • 🖱️Upgrade
      • 🖥️Useful commands
Powered by GitBook
On this page
  1. testnet
  2. Story

Upgrade

Story Version: v0.14.0; Story-geth Version: v0.11.0

PreviousInstallationNextUseful commands

Last updated 5 months ago

Update instruction on block

#Update Story
cd $HOME && rm -r story
git clone https://github.com/piplabs/story
cd $HOME/story
git checkout v0.14.0
go build -o story ./client
sudo mv $HOME/story/story $(which story)

#Update Geth
sudo systemctl stop story-geth
rm geth-linux-amd64
wget https://github.com/piplabs/story-geth/releases/download/v0.11.0/geth-linux-amd64
chmod +x geth-linux-amd64
mv $HOME/geth-linux-amd64 $HOME/go/bin/story-geth
source $HOME/.bash_profile

Check the versions of story and geth:

story version

Result:
#Version: v0.14.0
#Git Commit: 

geth version
#Version: v0.11.0
#Git Commit: 

Restart the node

sudo systemctl restart story-geth && journalctl -fu story-geth -o cat
sudo systemctl restart story && journalctl -fu story -ocat
🖱️
1349000