BeraChain Validator Tools & Infrastructure Documentation
Complete infrastructure toolkit for BeraChain validators and developers. Access our professional-grade services including RPC nodes, API endpoints, daily snapshots, and real-time metrics. Our berachain infrastructure features optimized pruning configurations, automated backups, and comprehensive monitoring solutions. Supporting both mainnet and testnet environments with dedicated endpoints, state-sync services, and detailed technical documentation for seamless network participation and development.
Setting up your validator node has never been so easy. Get your validator running in minutes by following step by step instructions.
#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.19.8.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 berachain
git clone https://github.com/berachain/beacon-kit berachain
cd berachain
git checkout v0.2.0-alpha.8
# Build binaries
make install
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.beacond/cosmovisor/genesis/bin
mv ~/go/bin/beacond $HOME/.beacond/cosmovisor/genesis/bin/
rm -rf build
#Install Cosmovisor and create a service
# Download and install Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/[email protected]
# Create service
sudo tee /etc/systemd/system/beacond.service > /dev/null << EOF
[Unit]
Description=osmosis node service
After=network-online.target
[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
WorkingDirectory=$HOME/.beacond
Restart=always
RestartSec=5
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.beacond"
Environment="DAEMON_NAME=beacond"
Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=false"
Environment="DAEMON_RESTART_AFTER_UPGRADE=true"
Environment="UNSAFE_SKIP_BACKUP=true"
Environment="PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:$HOME/.beacond/cosmovisor/current/bin"
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable beacond
#Initialize the node
# Set node configuration
beacond config chain-id bartio-beacon-80086
beacond config node tcp://localhost:25457
# Initialize the node
beacond init $MONIKER --chain-id bartio-beacon-80086
# Download genesis and addrbook
curl -Ls https://raw.githubusercontent.com/berachain/beacon-kit/main/testing/networks/80086/genesis.json?token=GHSAT0AAAAAACK5BHPQFMQVR55ABWPFLOSSZTA7ZLA > $HOME/.beacond/config/genesis.json
curl -Ls https://snapshots.lavenderfive.com/testnet-snapshots/berachain/addrbook.json > $HOME/.beacond/config/addrbook.json
# Add seeds
seeds="{{ seeds }}"
sed -i -e "s|^seeds *=.*|seeds = \"$seeds\"|" $HOME/.beacond/config/config.toml
# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"10000000abgt\"|" $HOME/.beacond/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/.beacond/config/app.toml
# Set custom ports
sed -i -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:25458\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:25457\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:25460\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:25456\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":25466\"%" $HOME/.beacond/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:25417\"%; s%^address = \":8080\"%address = \":25480\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:25490\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:25491\"%; s%:8545%:25445%; s%:8546%:25446%; s%:6065%:25465%" $HOME/.beacond/config/app.toml
#Start service and check the logs
sudo systemctl start beacond && sudo journalctl -u beacond -f --no-hostname -o cat
#Sync
To catch up quickly, you can either use a snapshot or state sync
Chain ID:
The unique identifier for the blockchain network.
bartio-beacon-80086
Latest Version:
The latest version of the chain software.
v0.2.0-alpha.8
Github:
The Github repository hosting the code for the network in question.
Public endpoints
Public endpoints are rate limited but can be used for basic CLI usage, node syncing or testing environments. Request an API key for enhanced access limits, we offer free trial periods of 14 days and cheap shared access plans from $50 a month.
Json-RPC
JSON-RPC endpoint for EVM interactions and queries. This is the main endpoint for Ethereum like networks but might co-exist alongside a consensus RPCs on Cosmos like networks that have a separate consensus endpoint like Berachain, Story and Evmos.
True
© 2022 Lavender.Five Nodes. All rights reserved.