Lodestar
Installing and configuring the Lodestar Beacon Node.
Lodestar
1. Download & Install
# Create a folder for the binary
sudo mkdir -p /usr/local/lib/lodestar
# Download the latest Linux release (Check https://github.com/ChainSafe/lodestar/releases)
# Example for v1.22.0:
sudo wget https://github.com/ChainSafe/lodestar/releases/download/v1.22.0/lodestar-v1.22.0-linux-amd64.tar.gz -O lodestar.tar.gz
# Extract the archive
sudo tar -xvzf lodestar.tar.gz -C /usr/local/lib/lodestar
# Cleanup
rm lodestar.tar.gz2. Configure Systemd Service
3. Start the Service
4. Verify Status
Last updated