Decentralized Infrastructure
Your agents
run forever.
Deploy to a P2P network. Go offline.
Your agents keep running across volunteer nodes worldwide.
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.
Sandboxed memory per agent with isolated VM execution.
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
agentctl initCreate your node identity and register your Solana wallet.
agentctl startJoin the network. Start hosting and earning tokens.
agentctl deploy ./agentPush your agent. It replicates automatically.
Simple API
Write JavaScript. Handle messages. Persist state. Connect to Telegram, Discord, WhatsApp via OpenClaw.
Read the docs →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
});
});