Deployment

Install go-kardia

From source

You'll need go installed and the required environment variables set, which can be done with the following commands:

export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin

Get Source Code

git clone https://github.com/kardiachain/go-kardia.git $GOPATH

Installation Prerequisites

Compile & Install

cd $GOPATH/src/github.com/kardiachain/go-kardia/cmd
go install

The latest cmd is now installed.

Run Kardia Network

Mainnet (coming soon)

./cmd --network mainnet --node <path/to/kai_config.yaml>

Testnet

./cmd --network testnet --node <path/to/kai_config_testnet.yaml>

Local

./cmd --network devnet --node <path/to/kai_config_devnet_node1.yaml>
./cmd --network devnet --node <path/to/kai_config_devnet_node2.yaml>
./cmd --network devnet --node <path/to/kai_config_devnet_node3.yaml>

Or run Kardia Network by docker

Run Local Testnet with docker

Join Public Testnet

Join Mainnet (coming soon)

Last updated