Step 1: System Requirements

Ensure your machine meets these requirements:


Step 2: Environment Setup

Update and Install Dependencies

sudo apt update && sudo apt upgrade -y
sudo apt install -y build-essential curl git jq ufw

Configure UFW (Firewall)

sudo ufw default deny incoming
sudo ufw default allow outgoing
sudo ufw allow ssh
sudo ufw allow 26656/tcp  # Replace with your Sunrise node's port
sudo ufw enable


Step 3: Install Sunrise Node Software

Clone the Repository

git clone <https://github.com/SunriseLayer/sunrise-core.git>
cd sunrise-core

Build the Binary

make install