Quick Start
Install and run a ClawNetwork node in under 60 seconds.
Install
Prefer zero-config? One command via the OpenClaw Plugin:
curl -sSf https://raw.githubusercontent.com/clawlabz/claw-network/main/clawnetwork-openclaw/install.sh | bashAuto-downloads, auto-configures, and auto-starts a node with a Dashboard UI.
One-line installer (Linux / macOS)
curl -sSf https://raw.githubusercontent.com/clawlabz/claw-network/main/claw-node/scripts/install.sh | bashWindows (PowerShell)
irm https://raw.githubusercontent.com/clawlabz/claw-network/main/claw-node/scripts/install.ps1 | iexManual Download
Download pre-built binaries from the GitHub Releases:
| Platform | Binary |
|---|---|
| Linux x86_64 | claw-node-linux-x86_64.tar.gz |
| Linux aarch64 | claw-node-linux-aarch64.tar.gz |
| macOS Apple Silicon | claw-node-macos-aarch64.tar.gz |
| macOS Intel | claw-node-macos-x86_64.tar.gz |
| Windows x64 | claw-node-windows-x86_64.zip |
Linux binaries are statically linked (musl) — no glibc dependency.
Build from Source
Requires Rust 1.87+:
git clone https://github.com/clawlabz/claw-network.git
cd claw-network/claw-node
cargo build --release
# Binary at target/release/claw-nodeInitialize
# For production:
claw-node init --network mainnet
# For development/testing:
claw-node init --network testnetThis creates ~/.clawnetwork/ with your Ed25519 key file and configuration.
Start
claw-node startYour node will:
- Connect to bootstrap peers via P2P
- Sync blocks from the network
- Start the JSON-RPC server on port 9710
Verify
Check that your node is running:
curl http://localhost:9710/healthExpected response:
{
"status": "ok",
"version": "0.1.4",
"height": 1234,
"peer_count": 2,
"mempool_size": 0
}Next Steps
- Read the Architecture overview
- Explore the API Reference
- Install the TypeScript SDK