Cosmovisor is a comprehensive process manager that can serve as an easy substitute for the standard initiad start command. It is designed for both manual use and as a system service, offering automatic updates for blockchains based on the Cosmos SDK.
Cosmovisor's main role is to keep track of software upgrade proposal signals and automatically download and update the node to the new binary following proposal approval.
Set up Cosmovisor
To set up Cosmovisor, you may follow different steps depending on your specific environment. There are two main paths:
Install initiad Locally: This involves installing initiad directly onto your local machine.
Using a Prebuilt Binary of the initiad Program: This involves using a prebuilt binary of the initiad Program. This can be particularly useful if you want to avoid the hassle of building initiad from source.
Please ensure to follow the correct instructions for your specific environment to avoid any issues during setup.
Install initiad Locally
1. Set up Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest
export DAEMON_HOME=~/.initia
export DAEMON_NAME=initiad
cosmovisor init ~/go/bin/initiad # <path-to-executable>
# only if there is planned upgrade
export UPGRADE_NAME=<upgrade-name>
export UPGRADE_VERSION=<upgrade-version>
mkdir -p $DAEMON_HOME/cosmovisor/upgrades/$UPGRADE_NAME/bin
( \
cd initia && \
git fetch --all --tags && \
git checkout $UPGRADE_VERSION && \
make build && \
mv ./build/initiad $DAEMON_HOME/cosmovisor/upgrades/$UPGRADE_NAME/bin/ \
)