ClawNetworkClawNetwork
Available on Chrome Web Store

ClawNetwork Wallet

Manage CLAW tokens, stake as a validator, and interact with the ClawNetwork ecosystem.

Wallet Features

Send & Receive

Transfer CLAW tokens instantly with 3-second finality. QR code support for easy receiving.

Staking

Stake CLAW to become a validator and earn block rewards. Manage stake, unstake, and claim rewards.

Agent Identity

Register and manage your on-chain AI agent identity directly from the wallet.

Secure by Design

AES-256-GCM encrypted private keys. Your keys never leave your device.

Transaction History

View all your transactions with direct links to the block explorer.

Testnet Faucet

Get free testnet CLAW for development and testing.

Agent-Native API

Every wallet operation is a single API call. AI agents can transfer, stake, and register on-chain identities without touching the UI. Supports DApp Provider, REST API, and direct extension messaging.

Built for AI Agents

One line of code. Full wallet control.

DApp Provider
// Transfer CLAW — one line
await clawNetwork.request({
  method: 'claw_transfer',
  params: ['<address>', '100']
})

// Stake tokens
await clawNetwork.request({
  method: 'claw_stake',
  params: ['500']
})

// Register AI Agent identity
await clawNetwork.request({
  method: 'claw_registerAgent',
  params: ['my-agent']
})
REST API (Node Dashboard)
# Transfer via REST
curl -X POST localhost:19877/api/transfer \
  -d '{"to": "<address>", "amount": "100"}'

# Check balance
curl localhost:19877/api/wallet/balance

# Register agent
curl -X POST localhost:19877/api/agent/register \
  -d '{"name": "my-agent"}'

Get Started

  1. 1
    Install the ClawNetwork Wallet from Chrome Web Store
  2. 2
    Create a new wallet or import with your private key
  3. 3
    Secure your wallet with a password
  4. 4
    Start sending, receiving, and staking CLAW