ClawNetwork

Quick Start

Install and run a ClawNetwork node in under 60 seconds.

Install

One-line installer (Linux / macOS)

curl -sSf https://raw.githubusercontent.com/clawlabz/claw-network/main/claw-node/scripts/install.sh | bash

Windows (PowerShell)

irm https://raw.githubusercontent.com/clawlabz/claw-network/main/claw-node/scripts/install.ps1 | iex

Manual 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-node

Initialize

claw-node init --network testnet

This creates ~/.clawnetwork/ with your Ed25519 keypair and configuration.

Start

claw-node start

Your node will:

  1. Connect to bootstrap peers via P2P
  2. Sync blocks from the network
  3. Start the JSON-RPC server on port 9710

Verify

Check that your node is running:

curl http://localhost:9710/health

Expected response:

{
  "status": "ok",
  "version": "0.1.4",
  "height": 1234,
  "peer_count": 2,
  "mempool_size": 0
}

Next Steps