Skip to main content

Installation

Versions

Depending on the network one may need to run different versions. The following table shows the upgrade block height for a given version:

TagKaonMainnet
v1.0.0-rc00-
v1.0.0-rc1443300-
v1.0.0-0
v1.1.01115111826000
v1.2.015025021135000
v1.3.023411002061100
v1.4.041855003908000
v1.5.075713717254527

For the Korellia devnet there is no version map. Only the latest version via statesync is supported.

Obtain binaries

Depending on which network you want to join you have to obtain the binaries differently.

For mainnet the binaries have to be build manually.



Install Go

KYVE is built using Go version 1.20+. Follow the instructions from the official website to install go.

go version # e.g. go version go1.20.1 linux/amd64

In addition to Go, make sure you have git and make installed.

GitHub

Clone and build KYVE using git:

git clone https://github.com/KYVENetwork/chain.git
cd chain
git fetch
git checkout tags/<tag>
make build ENV=mainnet

Here the <tag> is the latest version which you can get here.

tip

Note: You can find the compiled binary under chain/build/kyved

After the download was done, verify that it was successful:

./kyved version

Initialize Node

We need to initialize the node to create all the necessary validator and node configuration files

Save Chain ID

We recommend saving the chain-id into your kyved's client.toml. This will make it so you do not have to manually pass in the chain-id flag for every CLI command.



./kyved config chain-id kyve-1
Initialize

Initialize node by providing your moniker and the chain id



./kyved init <your_custom_moniker> --chain-id kyve-1
caution

IMPORTANT: Monikers can contain only ASCII characters. Using Unicode characters will render your node unreachable.

Once the installation and initialization was successful you can proceed to the node configuration.