💡 “Get your node online and be part of the decentralized broadcast revolution.”
✅ System Requirements
- 🧠 2 CPU cores minimum / 1vcpu [VPS]
- 🧠 4 GB RAM or more/ 1GB [VPS]
If you need help in creating vps, head over to GCP-VPS-GUIDE
✅ Skills & Tools
- 🖥️ Ubuntu-based Linux system
- 🧰 Docker + Docker Compose installed
- 🧠 Basic terminal knowledge
If you're running 🛠️Aztec-Sequencer-Node🛠️, Continue from ( Step 5: Bring in the Blockcast Blueprint )
Update and install some essential ingredients:
sudo apt update && sudo apt upgrade -y
sudo apt install ca-certificates curl gnupg lsb-release -ysudo mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | \
sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpgecho \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] \
https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/nullsudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io docker-compose-plugin -yLet’s make sure Docker always wakes up with your machine:
sudo systemctl enable docker
sudo systemctl start dockerdocker --version
docker compose versionIf you see version numbers, you’re golden. 🌟
git clone https://github.com/Blockcast/beacon-docker-compose.git
cd beacon-docker-composedocker compose up -d💬 It runs in the background like a silent ninja.
docker psIf you see "blockcastd" running—congrats! You're live! 🎉
docker compose exec blockcastd blockcastd init⚙️ This will output:
- Hardware ID:
XXXXXXXX - Challenge Key:
YYYYYYYY
📸 Copy these—don’t share them publicly!
-
Head over to https://blockcast.network
-
Sign in / Sign up
- Click
Manage Node > Register Node
- Paste your Hardware ID & Challenge Key
- Smash that SUBMIT button ✅
🕐 Keep your node online 24/7
💸 Offline = No rewards
🔍 To check live logs anytime:
docker compose logs -f“Running a node isn’t just technical — it’s a badge of honor in the decentralized world.”


