Kyve

Kyve

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

cd $HOME
wget https://github.com/KYVENetwork/chain/releases/download/v1.3.1-rc1/kyved_linux_amd64.tar.gz
tar -xvzf kyved_linux_amd64.tar.gz
chmod +x kyved
mv kyved /usr/local/bin/
rm kyved_linux_amd64.tar.gz

Configure Node

Initialize Node

Replace Moniker with your own name for node.

kyved init Moniker --chain-id kaon-1

Download Genesis

curl https://raw.githubusercontent.com/KYVENetwork/networks/main/kaon-1/genesis.json > ~/.kyve/config/genesis.json

Download Address Book

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

Create Service

Setup daemon procces

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

[Service] 
User=$USER 
ExecStart=$(which kyved) 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

kyved tendermint unsafe-reset-all --home $HOME/.kyve
wget http://snapshot.stakeme.io:81/kyve/kyve-snap.tar.gz
tar -C $HOME/ -zxvf kyve-snap.tar.gz --strip-components 1 
rm kyve-snap.tar.gz

Start Node

Start service

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

Check logs

sudo journalctl -fu kyved -o cat

Kyve tendermint Chain Services