{"id":28795923,"url":"https://github.com/rdkrr731/blockcast-node-fullguide","last_synced_at":"2026-04-24T11:38:39.095Z","repository":{"id":298695968,"uuid":"1000799182","full_name":"rdkrr731/Blockcast-Node-FullGuide","owner":"rdkrr731","description":"Blockcast Node Full Guide","archived":false,"fork":false,"pushed_at":"2025-06-12T11:15:56.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-12T11:53:53.895Z","etag":null,"topics":["blockcastnode","docker","shell"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rdkrr731.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-12T10:40:12.000Z","updated_at":"2025-06-12T11:15:59.000Z","dependencies_parsed_at":"2025-06-12T12:04:00.255Z","dependency_job_id":null,"html_url":"https://github.com/rdkrr731/Blockcast-Node-FullGuide","commit_stats":null,"previous_names":["rdkrr731/blockcast-node-fullguide"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rdkrr731/Blockcast-Node-FullGuide","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdkrr731%2FBlockcast-Node-FullGuide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdkrr731%2FBlockcast-Node-FullGuide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdkrr731%2FBlockcast-Node-FullGuide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdkrr731%2FBlockcast-Node-FullGuide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rdkrr731","download_url":"https://codeload.github.com/rdkrr731/Blockcast-Node-FullGuide/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdkrr731%2FBlockcast-Node-FullGuide/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260477919,"owners_count":23015068,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blockcastnode","docker","shell"],"created_at":"2025-06-18T03:10:44.172Z","updated_at":"2026-04-24T11:38:39.089Z","avatar_url":"https://github.com/rdkrr731.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Blockcast Node Setup Guide (For Ubuntu + Docker Users)\n\n\u003e 💡 *“Get your node online and be part of the decentralized broadcast revolution.”*\n\n---\n\n## 📋 What You Need Before We Begin:\n\n✅ **System Requirements**\n- 🧠 2 CPU cores minimum / 1vcpu [VPS]\n- 🧠 4 GB RAM or more/ 1GB [VPS]\n\n\u003e *If you need help in creating vps, head over to [GCP-VPS-GUIDE](https://github.com/rdkrr731/GCP-VPS-Setup.git)*\n\n✅ **Skills \u0026 Tools**\n- 🖥️ Ubuntu-based Linux system\n- 🧰 Docker + Docker Compose installed\n- 🧠 Basic terminal knowledge\n\n---\n\n# ✅ Important Tip: 👇\n\u003e **If you're running 🛠️[Aztec-Sequencer-Node](https://github.com/rdkrr731/Aztec-Sequencer-Node.git)🛠️, Continue from **( Step 5: Bring in the Blockcast Blueprint )****\n\n---\n\n## 🧼 Step 1: Prep Your System Like a Chef\n\nUpdate and install some essential ingredients:\n```bash\nsudo apt update \u0026\u0026 sudo apt upgrade -y\nsudo apt install ca-certificates curl gnupg lsb-release -y\n```\n\n---\n\n## 🐳 Step 2: Serve Up Docker \u0026 Compose\n\n### 🧂 Add Docker’s Secret Key:\n```bash\nsudo mkdir -p /etc/apt/keyrings\ncurl -fsSL https://download.docker.com/linux/ubuntu/gpg | \\\nsudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg\n```\n\n### 📦 Add Docker’s Repository:\n```bash\necho \\\n\"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] \\\nhttps://download.docker.com/linux/ubuntu \\\n$(lsb_release -cs) stable\" | \\\nsudo tee /etc/apt/sources.list.d/docker.list \u003e /dev/null\n```\n\n### 🍽️ Finally, Install Docker:\n```bash\nsudo apt update\nsudo apt install docker-ce docker-ce-cli containerd.io docker-compose-plugin -y\n```\n\n---\n\n## 🔌 Step 3: Power On the Engine\n\nLet’s make sure Docker always wakes up with your machine:\n```bash\nsudo systemctl enable docker\nsudo systemctl start docker\n```\n\n---\n\n## 🔍 Step 4: Check If Docker’s Alive\n\n```bash\ndocker --version\ndocker compose version\n```\nIf you see version numbers, you’re golden. 🌟\n\n---\n\n## 🧱 Step 5: Bring in the Blockcast Blueprint\n\n```bash\ngit clone https://github.com/Blockcast/beacon-docker-compose.git\ncd beacon-docker-compose\n```\n\n---\n\n## 🚀 Step 6: Fire Up Your Node\n\n```bash\ndocker compose up -d\n```\n\n💬 It runs in the background like a silent ninja.\n\n---\n\n## 📦 Step 7: See If It’s Running\n\n```bash\ndocker ps\n```\nIf you see \"blockcastd\" running—congrats! You're live! 🎉\n\n---\n\n## 🔐 Step 8: Get Your Node’s Unique DNA\n\n```bash\ndocker compose exec blockcastd blockcastd init\n```\n\n⚙️ This will output:\n- Hardware ID: `XXXXXXXX`\n- Challenge Key: `YYYYYYYY`\n\n📸 Copy these—don’t share them publicly!\n\n---\n\n## 📝 Step 9: Register Your Node on Blockcast 🌐\n\n1. Head over to [https://blockcast.network](https://blockcast.network)\n\n2. Sign in / Sign up \n  - ![Screenshot 2025-06-12 155221](https://github.com/user-attachments/assets/b7dabe60-4a85-4896-b4d4-3e2f926c8e4e)\n\n4. Click `Manage Node \u003e Register Node`  \n  - ![Screenshot 2025-06-12 155605](https://github.com/user-attachments/assets/cb79b44b-1c48-4529-a889-3867585a26bb)\n\n5. Paste your **Hardware ID** \u0026 **Challenge Key** \n  - ![Screenshot 2025-06-12 155628](https://github.com/user-attachments/assets/8b5cbc74-de63-475b-bdec-cfe9a79639a9)\n\n\n6. Smash that **SUBMIT** button ✅\n\n---\n\n## 🧠 Final Notes\n\n🕐 Keep your node **online 24/7**  \n💸 Offline = No rewards  \n🔍 To check live logs anytime:\n```bash\ndocker compose logs -f\n```\n\n---\n\n## 🎉 You're Officially a Node Operator!\n\n\u003e “Running a node isn’t just technical — it’s a badge of honor in the decentralized world.”\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frdkrr731%2Fblockcast-node-fullguide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frdkrr731%2Fblockcast-node-fullguide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frdkrr731%2Fblockcast-node-fullguide/lists"}