Installation

Chain ID: axone-dentrite-1Latest Version Tag: v10.0.0

Setup validator name

Replace **YOUR_MONIKER_GOES_HERE** with your validator name
MONIKER="YOUR_MONIKER_GOES_HERE"

Install dependencies

Update system and install build tools

sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential
sudo apt -qy upgrade

Install Go

sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.21.9.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
eval $(echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee /etc/profile.d/golang.sh)
eval $(echo 'export PATH=$PATH:$HOME/go/bin' | tee -a $HOME/.profile)

Download and build binaries

# Clone project repository
cd $HOME
rm -rf axoned
git clone https://github.com/axone-protocol/axoned
cd axoned
git checkout v10.0.0

# Build and install binaries
make install

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

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

[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable axoned

Initialize the node

# Set node configuration
axoned config chain-id axone-dentrite-1
axoned config keyring-backend os

# Initialize the node
axoned init $MONIKER --chain-id axone-dentrite-1

# Download genesis and addrbook
curl -Ls https://github.com/dvjromashkin/guides/raw/main/axone-testnet/genesis.json > $HOME/.axoned/config/genesis.json
curl -Ls https://github.com/dvjromashkin/guides/raw/main/axone-testnet/addrbook.json > $HOME/.axoned/config/addrbook.json

# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0.005uaxone\"|" $HOME/.axoned/config/app.toml

# Set pruning
sed -i \
  -e 's|^pruning *=.*|pruning = "custom"|' \
  -e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' \
  -e 's|^pruning-keep-every *=.*|pruning-keep-every = "0"|' \
  -e 's|^pruning-interval *=.*|pruning-interval = "19"|' \
  $HOME/.axoned/config/app.toml

### Start service and check the logs

```bash
sudo systemctl start axoned && sudo journalctl -u axoned -f -o cat