Manual node installation
Official operator documentationProject websiteSource repositoryExplorer
Network: Testnet
Chain ID: latanda-testnet-1
Guide review: 2026-07-14 ยท 3 source references
Recommended hardware: 2 CPU, 4GB RAM, 50GB SSD minimum; 4 CPU, 8GB RAM and 200GB SSD recommended
Go version: 1.25.6
Binary: latandad
Node home: ~/.latanda
The guide was reviewed against current project metadata and official operator documentation. Hosted BonyNode infrastructure is not implied; confirm the selected release and network parameters before using a production host.
1. Prepare the node host
sudo apt-get update
sudo apt-get install -y ca-certificates curl git jq make build-essential
# Install the exact Go version required by this network from https://go.dev/dl/,
# verify its published checksum, then confirm it before building.
go version # required by project metadata: 1.25.62. Build the pinned node binary
set -euo pipefail
cd "$HOME"
test ! -e la-tanda-chain || { echo 'Stop: $HOME/la-tanda-chain already exists; review it before continuing.' >&2; exit 1; }
git clone https://github.com/INDIGOAZUL/la-tanda-chain.git la-tanda-chain
cd la-tanda-chain
git checkout --detach 2f135e55d596a765c83bf4bec65ca91a6e1ee535
test "$(git rev-parse HEAD)" = "2f135e55d596a765c83bf4bec65ca91a6e1ee535"
go build -o latandad ./cmd/latandad
mkdir -p "$HOME/go/bin"
install -m 0755 latandad "$HOME/go/bin/latandad"
# Verify which binary will be used before initialization.
command -v "latandad"
"latandad" version3. Initialize a new node home
set -euo pipefail
BIN="latandad"
CHAIN_ID="latanda-testnet-1"
MONIKER='validator-name'
NODE_HOME="$HOME/.latanda"
command -v "$BIN"
test ! -e "$NODE_HOME" || { echo "Stop: $NODE_HOME already exists; back it up and review it first." >&2; exit 1; }
"$BIN" init "$MONIKER" --chain-id "$CHAIN_ID" --home "$NODE_HOME"
test -f "$NODE_HOME/config/genesis.json"4. Install and validate genesis
set -euo pipefail
CHAIN_ID="latanda-testnet-1"
NODE_HOME="$HOME/.latanda"
GENESIS_URL='https://latanda.online/chain/genesis.json'
GENESIS_DOWNLOAD="$NODE_HOME/config/genesis.json.download"
test -d "$NODE_HOME/config"
test ! -e "$GENESIS_DOWNLOAD" || { echo "Stop: review the existing $GENESIS_DOWNLOAD first." >&2; exit 1; }
curl --fail --show-error --location --proto "=https" --max-time 120 --output "$GENESIS_DOWNLOAD" "$GENESIS_URL"
jq -e --arg chain "$CHAIN_ID" '.chain_id == $chain' "$GENESIS_DOWNLOAD" >/dev/null
printf '%s %s
' '98fc9871d6a3b7b12b3f7fcaa1ca3303ffcfad0f209d61355975a15069ac3907' "$GENESIS_DOWNLOAD" | sha256sum --check -
cp --no-clobber "$NODE_HOME/config/genesis.json" "$NODE_HOME/config/genesis.json.init-backup" || true
install -m 0644 "$GENESIS_DOWNLOAD" "$NODE_HOME/config/genesis.json"
jq -r '.chain_id' "$NODE_HOME/config/genesis.json"5. Configure minimum gas prices
set -euo pipefail
APP_TOML="$HOME/.latanda/config/app.toml"
test -f "$APP_TOML"
cp --no-clobber "$APP_TOML" "$APP_TOML.bonynode-backup" || true
if grep -q '^minimum-gas-prices' "$APP_TOML"; then
sed -i 's|^minimum-gas-prices *=.*|minimum-gas-prices = "0.001ultd"|' "$APP_TOML"
else
printf '
minimum-gas-prices = "0.001ultd"
' >> "$APP_TOML"
fi
grep '^minimum-gas-prices' "$APP_TOML"6. Configure reviewed seeds
set -euo pipefail
CONFIG_TOML="$HOME/.latanda/config/config.toml"
SEEDS='[email protected]:26656'
test -f "$CONFIG_TOML"
cp --no-clobber "$CONFIG_TOML" "$CONFIG_TOML.bonynode-backup" || true
sed -i "s|^seeds *=.*|seeds = "$SEEDS"|" "$CONFIG_TOML"
grep '^seeds' "$CONFIG_TOML"7. Create the service, start and verify the node
set -euo pipefail
BIN="latandad"
CHAIN_ID="latanda-testnet-1"
NODE_HOME="$HOME/.latanda"
SERVICE="latandad.service"
BIN_PATH=$(command -v "$BIN")
SERVICE_USER="$USER"
test -x "$BIN_PATH"
test -s "$NODE_HOME/config/genesis.json"
sudo tee "/etc/systemd/system/$SERVICE" >/dev/null <<EOF
[Unit]
Description=LaTanda node
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=${SERVICE_USER}
ExecStart=${BIN_PATH} start --home ${NODE_HOME}
Restart=on-failure
RestartSec=5
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable --now "$SERVICE"
sudo systemctl status "$SERVICE" --no-pager
# Wait briefly for the local RPC listener and require the configured chain ID.
for attempt in {1..30}; do
if STATUS=$(curl --fail --silent http://127.0.0.1:26657/status); then
jq -e --arg chain "$CHAIN_ID" '.result.node_info.network == $chain' <<<"$STATUS"
exit 0
fi
sleep 2
done
echo 'Local RPC did not become ready; inspect the service journal.' >&2
sudo journalctl -u "$SERVICE" -n 100 --no-pager
exit 1