Ki-chain

Ki-chain

Home

Prepare Server

sudo apt update 
sudo apt install curl tar wget clang pkg-config libssl-dev libleveldb-dev jq build-essential bsdmainutils git make htop unzip bc htop -y
if go version >/dev/null 2>&1; then 
echo -e "\033[0;31m Go is already installed\033[0m" 
else 
wget -O go1.19.2.linux-amd64.tar.gz https://golang.org/dl/go1.19.2.linux-amd64.tar.gz 
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.19.2.linux-amd64.tar.gz && rm go1.19.2.linux-amd64.tar.gz 
echo 'export GOROOT=/usr/local/go' >> $HOME/.bash_profile 
echo 'export GOPATH=$HOME/go' >> $HOME/.bash_profile 
echo 'export GO111MODULE=on' >> $HOME/.bash_profile echo '
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> $HOME/.bash_profile && . $HOME/.bash_profile echo -e "\033[0;31m $(go version) \033[0m"
fi

Install node

git clone https://github.com/KiFoundation/ki-tools.git
cd ki-tools
git checkout master
make install

Configure Node

Initialize Node

Replace Moniker with your own name for node.

kid init Moniker --chain-id kichain-2

Download Genesis

curl https://raw.githubusercontent.com/KiFoundation/ki-networks/v0.1/Mainnet/kichain-1/genesis.json > ./kid/config/genesis.json

Download Address Book

wget -P $HOME/.kid/config http://snapshot.stakeme.io:81/kichain/addrbook.json

Create Service

Setup daemon procces

sudo tee /etc/systemd/system/kid.service > /dev/null <<EOF 
[Unit] 
Description=Kichain Node 
After=network-online.target 

[Service] 
User=$USER 
ExecStart=$(which kid) start 
Restart=on-failure 
RestartSec=3 
LimitNOFILE=65535 

[Install] 
WantedBy=multi-user.target 
EOF

Download Snapshot

For quick synchronization, we recommend using a snapshot, which will allow you to quickly catch up with the current height

kid tendermint unsafe-reset-all --keep-addr-book 
wget http://snapshot.stakeme.io:81/kichain/kichain-snap.tar.gz
tar -C $HOME/ -zxvf kichain-snap.tar.gz --strip-components 1 
rm kichain-snap.tar.gz

Start Node

Start service

sudo systemctl daemon-reload 
sudo systemctl enable kid 
sudo service kid start  

Check logs

sudo journalctl -fu kid -o cat

Ki-chain tendermint Chain Services