DECENTRALIZED NETWORK

Run a DAPA Node

Join the network. Strengthen the chain. Anyone in the world can run a full DAPA node in minutes.

~5s
Block Time
800M
Max Supply
CPU/GPU
Mining
Free
To Run
Setup Guide
1

Check Your CPU & Download

DAPA provides separate binaries for Intel and AMD processors. Run this command to check your CPU:

grep "model name" /proc/cpuinfo | head -1
🔵
Intel CPU
Core, Xeon, Broadwell etc.
DOWNLOAD INTEL →
🔴
AMD CPU
EPYC, Ryzen, Threadripper etc.
DOWNLOAD AMD →
2

Extract & Prepare

Unzip the downloaded file and make the binaries executable:

# Replace with your downloaded filename unzip dapa-v1.23.3-linux-x86_64-amd.zip chmod +x dapa_daemon dapa_wallet dapa_miner
3

Start Your Node

Run the daemon and connect to the official DAPA network:

./dapa_daemon \ --rpc-bind-address 0.0.0.0:20101 \ --p2p-bind-address 0.0.0.0:20100 \ --priority-nodes 194.163.189.149:20100

Your node will begin syncing. Watch the topoheight climb — when it matches explorer.dapahe.com you are fully synced.

Official Network Nodes
194.163.189.149:20100node.paymetc.com
37.60.236.124:20100node.dapahe.com
62.171.173.163:20100DAPA Network
4

Create Your Wallet

Open a new terminal and create your DAPA wallet:

./dapa_wallet

Follow the prompts — choose Create new wallet, set a strong password, and your wallet address starting with dap: will be generated.

⚠️
Write down your seed phrase and store it safely offline. Your seed phrase is the only way to recover your wallet. If you lose it, your funds cannot be recovered by anyone — not even the DAPA team.

Prefer a GUI? Use the Web Wallet — no download needed, works in any browser. Or download the ZODIAC Wallet for desktop and mobile.

5

Start Mining (Optional)

Earn DAPA by mining with your CPU. Open another terminal:

./dapa_miner \ --mining-address YOUR_DAP_ADDRESS

Replace YOUR_DAP_ADDRESS --num-threads 4 --worker sigma with your wallet address. Mining rewards go directly to your wallet on every block you solve.

6

Verify You Are On The Correct Chain

Check your genesis block hash matches the official DAPA genesis. This proves you are on the real DAPA network and not a fake chain:

curl -s http://localhost:20101/json_rpc \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"get_block_at_topoheight","params":{"topoheight":0,"include_txs":false}}' \ | python3 -m json.tool | grep '"hash"'
✅ OFFICIAL DAPA GENESIS HASH

Your node must return exactly this hash:

2e72b63133768b3c814183f3413473732fdd823bb6d3f5b15c322817991c9aeb

If the hash matches — you are on the authentic DAPA blockchain. ✅

Useful Links