βοΈInstallation
Server preparation
apt update && apt upgrade -yInstall GO
# install go, if needed
ver="1.23.1"
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" >> $HOME/.bash_profile
source $HOME/.bash_profile
go versionNode installation
git clone https://github.com/axone-protocol/axoned && cd axoned
git checkout v10.0.0
make install
axoned version --long | grep -e version -e commit
#version: 10.0.0
#commit: 2f0f84d369852bdb178e299a88c1b8eeb0654b8eDownload Genesis
Create a service file and start service
Create wallet
Claim token on faucet
Node Sync Status Checker
Create validator
Delete node
Last updated
Was this helpful?