Before setting up an Arkeo node, ensure your system meets the following minimum requirements:
Update your system and install necessary dependencies:
sudo apt update && sudo apt upgrade -y
sudo apt install curl liblz4-tool build-essential git wget jq make gcc tmux htop nvme-cli pkg-config libssl-dev libleveldb-dev tar clang bsdmainutils ncdu unzip libleveldb-dev -y
Install Go (if not already installed):
ver="1.19.1"
cd $HOME
wget "<https://golang.org/dl/go$ver.linux-amd64.tar.gz>"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> ~/.bash_profile
source ~/.bash_profile
go version
Clone the Arkeo repository:
cd $HOME
rm -rf arkeo
git clone <https://github.com/arkeonetwork/arkeo>
cd arkeo
Build the binaries:
make install
Initialize the node:
arkeod init <your_moniker> --chain-id arkeo
Download the genesis file: