Skip to content

Latest commit

 

History

History

testnet-croeseid-2

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

testnet-croeseid-2

Network upgrade guide:

This is a guide for existing validator to upgrade from v0.8.1-croeseid to v0.9.1-croeseid:

To simply the following steps, we will be using Linux for illustration. Binary for Mac and Windows are also available.

Step 1 - Get the new binary

After 2021-03-01 09:00:00UTC, the node running v0.8.1-croeseid should stop and all you have to do is to restart your node with the new version of chain-maind binary - v0.9.1-croeseid

  • Stop the chain-maind and download the released binaries from github:
$ curl -LOJ https://github.com/crypto-org-chain/chain-main/releases/download/v0.9.1-croeseid/chain-main_0.9.1-croeseid_Linux_x86_64.tar.gz
$ tar -zxvf chain-main_0.9.1-croeseid_Linux_x86_64.tar.gz

Remarks: If you have stated chain-maind with systemd service, remember to stop it by sudo systemctl stop chain-maind

Step 2. Run everything

We are ready to start the node and sync the blockchain data:

  • Start chain-maind, e.g.:
  $ ./chain-maind start

Sit back and wait for the syncing process. You can check the latest block height by

$ curl -s https://testnet-croeseid.crypto.org:26657/commit | jq "{height: .result.signed_header.header.height}"