Hyperlane Base Validator Setup Guide
1️⃣ System Update & Install Dependencies
sudo apt-get update && sudo apt-get upgrade -y
# Install Docker
sudo apt-get install docker.io -y2️⃣ Install Node.js (v20) via NVM
# Install NVM
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
# Load NVM
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
# Install Node.js v20
nvm install 203️⃣ Create a Wallet (using Foundry)
4️⃣ Install Hyperlane CLI
5️⃣ Pull Hyperlane Docker Image
6️⃣ Create Database Directory
7️⃣ Create Hyperlane Config JSON
8️⃣ Run Hyperlane Validator
9️⃣ Check Logs
🔟 Fund Your Validator
Last updated