Connecting to Mainnet

Konstellation Network CLI Quick Start

Build from code

This guideline assumes that you're running Linux or MacOS with Go 1.18+.

This guide helps you to : Build, Install, and Name your Node.

Currently, latest release is v0.6.2

# Clone Konstellation from the latest release found here: https://github.com/konstellation/konstellation/releases
git clone -b v0.6.2 https://github.com/konstellation/konstellation
# Enter the folder Konstellation was cloned into
cd konstellation
# Compile and install Konstellation
make build
# alias binary file
# alias knstld=/your/path/to/repo/build/knstld
# Check konstellation version
knstld version

Make node directory

You can simply create node directory by running :

knstld tendermint unsafe-reset-all

Set node to connect

Find available RPC endpoints on Mintscan, and edit $HOME/.knstld/config/client.toml like :

To check connection, you can run

Now with this knstld, you may query or create transaction directly to Konstellation Network modules.

Last updated