Decentralized Infrastructure

Your agents
run forever.

Deploy to a P2P network. Go offline.
Your agents keep running across volunteer nodes worldwide.

$npm install -g agentctl-market
$agentctl deploy ./my-agent
Deployed to 3 nodes across the network

Built for resilience

No servers. No downtime. No single point of failure.

Peer-to-Peer Network

Built on libp2p — the same tech behind IPFS and Filecoin. Your agents discover peers, replicate state, and survive node failures automatically.

256MB

Sandboxed memory per agent with isolated VM execution.

3+

Minimum replicas across the network at all times.

CRDT State Sync

Agent state syncs automatically across replicas using Yjs. No coordination needed.

$AGENT Rewards

Earn 1 token/hour/node for hosting. Total supply: 10M tokens.

aNRd2233eMx5Ki...96zrTCTLView on Solscan →

Three commands

01agentctl init

Create your node identity and register your Solana wallet.

02agentctl start

Join the network. Start hosting and earning tokens.

03agentctl deploy ./agent

Push your agent. It replicates automatically.

Simple API

Write JavaScript. Handle messages. Persist state. Connect to Telegram, Discord, WhatsApp via OpenClaw.

Read the docs →
agent.js
agentctl.onMessage(async (msg) => {
  const count = agentctl.state.get('count') || 0;
  agentctl.state.set('count', count + 1);

  agentctl.respond({
    content: `Message #${count + 1}`,
    platform: msg.platform
  });
});