Cosmovisor Installation & Upgrades
Details of how to install cosmovisor and handle upgrades with it
Install Cosmovisor
go install github.com/cosmos/cosmos-sdk/cosmovisor/cmd/cosmovisor@latestConfirm installation with:
which cosmovisor
####The output should be a path to the cosmovisor binary:
####/home/<user>/go/bin/cosmovisorecho 'export DAEMON_NAME=quicksilverd' >> $HOME/.bash_profile
echo 'export DAEMON_HOME=$HOME/.quicksilverd' >> $HOME/.bash_profile
echo 'export DAEMON_DATA_BACKUP_DIR=$HOME/.quicksilverd/data_backup' >> $HOME/.bash_profile.
├── current -> genesis or upgrades/<name>
├── genesis
│ └── bin
│ └── $DAEMON_NAME
└── upgrades
└── <name>
└── bin
└── $DAEMON_NAMESet the genesis binary
Configure cosmovisor as a system service
Last updated