πŸ–₯️ DCDN Node Portal
Node Operator Dashboard

Sign In

or
New node operator? Register
πŸ“Š Overview
πŸ’° Earnings
πŸ–₯️ My Nodes
🌍 Network
βš™οΈ Setup Guide
πŸ” Security

Dashboard

Your node operator overview
0.00 DCDN
β‰ˆ $0.00 USD
Nodes Online
0
of 0 total
Total Bandwidth
0 GB
served to date
Total Requests
0
handled to date
Threats Blocked
0
WAF + rate limit
DCDN Price
$0.042
current market
Avg Uptime
β€”
across all nodes

Quick Actions

My Nodes

NodeRegionStatusCPUMemoryEarningsLast Seen
Loading...

πŸ’° Earnings Breakdown

Detailed revenue from your node operations
0.00 DCDN
β‰ˆ $0.00 USD

Revenue by Category

MetricVolumeRateEarnings (DCDN)Earnings (USD)
Bandwidth Served0 GB$0.005/GB0$0.00
Requests Handled0$0.01/10K0$0.00
WAF Inspections0$0.02/10K0$0.00
Total0 DCDN$0.00

Per-Node Earnings

NodeRegionStatusBandwidthRequestsThreatsEarnings (DCDN)Earnings (USD)
Loading...

Claiming Rewards

ℹ️ Rewards are distributed via the DCDNEmission smart contract on Ethereum. Connect your wallet to claim accumulated DCDN tokens.
// DCDNEmission contract // 1. Connect wallet to Ethereum mainnet // 2. Call claimRewards() on the Emission contract // 3. DCDN tokens are transferred to your wallet Contract: 0x... (pending mainnet deployment) Function: claimRewards() Gas: ~60,000 (~$2-5 at current gas prices)

πŸ–₯️ My Nodes

Manage and monitor your edge nodes

🌍 Network Overview

Global DCDN node network status
Total Nodes
0
Online
0
Total Bandwidth
0 TB
Total Requests
0
Threats Blocked
0
Avg Uptime
β€”

Nodes by Region

RegionTotal NodesOnlineBandwidth
Loading...

Earning Rates

Bandwidth Served
$0.005 / GB
Requests Handled
$0.01 / 10K requests
WAF Inspections
$0.02 / 10K inspections
Worker Executions
$0.005 / 10K executions
Uptime Bonus
+10% if uptime > 99.9%

Revenue Distribution

Node Operators
70%
Your earnings
DCDN Treasury
20%
Development
RSP Protocol
10%
Token holders

βš™οΈ Node Setup Guide

Get your node running in 5 minutes

1. System Requirements

ResourceMinimumRecommended
CPU2 cores4+ cores
RAM2 GB4+ GB
Storage10 GB50+ GB (SSD)
Bandwidth50 Mbps100+ Mbps
OSLinux (Ubuntu 20.04+)Ubuntu 22.04 LTS

2. Install DCDN Node

# Quick install (recommended) curl -fsSL https://dcdncloud.com/install.sh | bash # Or manual download wget https://dcdncloud.com/releases/dcdn-node-latest-linux-amd64.tar.gz tar xzf dcdn-node-latest-linux-amd64.tar.gz sudo mv dcdn-node /usr/local/bin/ dcdn-node --version

3. Configure

# Generate default config dcdn-node --init # Edit config nano dcdn.toml

Your config file (dcdn.toml):

node_id = "auto" region = "eu-west" listen_http = "0.0.0.0:8080" coordinator_url = "https://dcdncloud.com/api/v1" [cache] max_size_mb = 1024 ttl_seconds = 3600 disk_path = "/var/dcdn/cache" [waf] enabled = true rate_limit_rps = 100 block_known_bots = true [ssl] auto_provision = true acme_email = "your@email.com"

4. Run as Service

# Create systemd service sudo cat > /etc/systemd/system/dcdn-node.service << EOF [Unit] Description=DCDN Edge Node After=network.target [Service] Type=simple ExecStart=/usr/local/bin/dcdn-node -c /etc/dcdn/dcdn.toml Restart=always RestartSec=5 [Install] WantedBy=multi-user.target EOF # Enable and start sudo systemctl enable dcdn-node sudo systemctl start dcdn-node # Check status sudo systemctl status dcdn-node

5. Verify Registration

# Check node health curl http://localhost:8080/__dcdn/stats # Check coordinator registration curl https://dcdncloud.com/api/v1/nodes | jq '.nodes[] | select(.node_id == "YOUR_NODE_ID")'
βœ… Once your node registers with the coordinator and starts receiving heartbeats, you'll see it appear in your dashboard and begin earning DCDN tokens automatically!

Troubleshooting

IssueSolution
Node won't startCheck port 8080: lsof -i :8080
Can't registerCheck coordinator URL and internet connectivity
Low earningsIncrease bandwidth, ensure high uptime (>99.9%)
High CPUReduce rate_limit_rps, check for DDoS targeting
Certificate errorsCheck cert_dir permissions, verify ACME email

πŸ” Account Security

Protect your node operator account with Two-Factor Authentication

Two-Factor Authentication (Google Authenticator / Authy)