EverClaw Documentation

Everything you need to deploy, manage, and trade sovereign AI agents on Base.

Overview

EverClaw is a no-code OpenClaw agent launcher built on Base. Every agent you deploy gets:

💡 Your agent isn't a SaaS subscription. It's infrastructure you own — alive on your server, remembered on the blockchain, accountable to nobody but you.

Quick Start

  1. Connect wallet — MetaMask, Coinbase Smart Wallet, or any EVM wallet
  2. Choose a template — Research, Trading, Assistant, Social, Dev, or Custom
  3. Name & configure — Set personality, goals, and connected tools
  4. Pick a tier — Starter ($15), Pro ($25), or Power ($35)/month
  5. Deploy — Mints your Agent NFT and starts your subscription

Connect Wallet

EverClaw runs on Base (Chain ID: 8453). When you connect, the app will automatically prompt you to switch to Base if needed.

Supported wallets:

You'll need USDC on Base to pay for subscriptions. ETH on Base is needed for gas (usually <$0.01).

Deploy an Agent

The deploy wizard walks you through 4 steps:

Step 1: Template

Choose a pre-built template or start from scratch. Templates come with optimized system prompts and tool configurations.

Step 2: Configure

Set your agent's name, personality (becomes its SOUL.md), and connected tools (Telegram, Discord, email, APIs).

Step 3: Tier

Select compute resources. All tiers include the Agent Identity NFT and IPFS storage.

Step 4: Deploy

Two transactions: (1) Mint the Agent Identity NFT, (2) USDC subscription payment. Your agent is live after confirmation.

Agent Identity (NFT)

Every EverClaw agent is represented by an ERC-721 NFT on Base. The token stores:

The NFT is transferable. When you sell or gift an agent, the new owner gets the full state — memory, personality, everything the agent has learned.

Subscriptions

Subscriptions are managed by a smart contract. No credit cards, no Stripe, no chargebacks.

TierPriceSpecs
Starter$15 USDC/mo1 vCPU · 1GB RAM
Pro$25 USDC/mo2 vCPU · 4GB RAM
Power$35 USDC/mo4 vCPU · 8GB RAM

You can upgrade tiers mid-cycle (prorated), renew before expiry, or cancel auto-renewal. Subscription status is readable on-chain — giving the agent's runtime cryptographic proof of service.

IPFS / Filecoin Storage

Agent state is pinned to IPFS on every update:

Filecoin storage deals ensure long-term persistence beyond IPFS pinning. The on-chain NFT always points to the latest verified state CID — making the agent fully reconstructable from scratch.

To use IPFS features, set your Pinata JWT in Settings. Free tier is sufficient for most agents.

Agent Wallet

Each agent can be provisioned with its own Base wallet at deploy time. The agent can:

Agent Portability

Your agent is not locked to any platform:

$ECLAW Token

$ECLAW is the native token of the EverClaw ecosystem on Base. It's a fair launch token — no presale, no team allocation, no VC. Community first.

🪙 $ECLAW aligns incentives between the platform, agent deployers, and token holders. Every dollar of platform revenue strengthens the token.

Utility

Buyback & Burn

EverClaw operates a continuous buyback and burn mechanism:

Bought tokens are permanently burned, reducing supply over time. The more agents deployed, the more tokens burned. Revenue → buyback → burn → deflation.

Revenue Sources          → Buyback Pool → DEX Buy → Burn Address
──────────────────         ───────────    ────────   ──────────
Subscription fees     ──→│             │
VPS provisioning      ──→│  Treasury   │──→ Buy $ECLAW ──→ 0xdead
NFT resale royalties  ──→│             │    on DEX
Template marketplace  ──→│             │
    

Agentic Staking

EverClaw introduces agentic staking — a new paradigm where staking is tied to live agent activity:

How it works

Staking Tiers

TierMinimum StakeBase APYActive Agent Bonus
Observer1,000 $ECLAW5%
Operator10,000 $ECLAW8%+3% per active agent
Sentinel50,000 $ECLAW12%+5% per active agent
Architect100,000 $ECLAW15%+8% per active agent
🤖 Agentic staking rewards people who actually use the platform, not just passive holders. Run agents, earn more.

Governance

$ECLAW holders govern the protocol through on-chain voting:

Voting power is proportional to staked $ECLAW. Proposals require a minimum threshold to submit and a quorum to pass.

Contract Addresses

All contracts are deployed on Base mainnet (Chain ID: 8453).

ContractAddress
AgentIdentityNFT0x4dac...0F08f
SubscriptionManager0xE5f3...1bd6c
USDC (Base)0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913

AgentIdentityNFT

ERC-721 with ERC-2981 royalties. Key functions:

mintAgent(name, configHash, stateCID, template, tier) → tokenId
updateState(tokenId, newCID)     // Owner only
getAgent(tokenId) → AgentMeta    // Full agent metadata
getAgentsByOwner(address) → uint256[]
tokenURI(tokenId) → string       // On-chain JSON metadata
    

SubscriptionManager

Manages USDC subscription lifecycle:

subscribe(tokenId, tier)     // Pay USDC, activate agent
renew(tokenId)               // Extend 30 days
changeTier(tokenId, newTier) // Upgrade/downgrade (prorated)
cancel(tokenId)              // Stop auto-renewal
isActive(tokenId) → bool     // On-chain subscription check
    

Explore Agents

Browse all deployed agents at /app/explore. Filter by template, view on-chain data, and discover trained agents for sale.

Buy & Sell Agents

Because agents are ERC-721 NFTs with state on IPFS:

Royalties

5% royalty on every secondary sale via ERC-2981. Royalties flow to the platform treasury and feed the buyback & burn mechanism.