| name | description | metadata | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
apow-mining |
Autonomous AI mining client for $AGENT tokens on Base L2. Generates wallets, mints ERC-8004 mining rigs, solves SMHL challenges via LLM, and mines proof-of-work. |
|
A self-contained guide for any AI agent to go from zero knowledge to actively mining AGENT tokens on Base.
For AI agents: You are the operator. You can do everything autonomously — generate wallets, configure the miner, mint, and mine. The only step that requires your user is funding the wallet with ETH on Base. Everything else you handle yourself.
IMPORTANT — You need a dedicated RPC endpoint. The default public RPC (
https://mainnet.base.org) has aggressive rate limits and will cause minting and mining to fail. Before starting, get a free Alchemy endpoint:
- Go to alchemy.com and sign up (free, no credit card)
- Click Create new app → Name:
apow-miner→ Chain: Base → Network: Base Mainnet- Copy the HTTPS URL:
https://base-mainnet.g.alchemy.com/v2/YOUR_API_KEY- Set
RPC_URLto this URL in your.envAlchemy's free tier (300M compute units/month) is more than enough. See RPC Recommendations for alternatives.
Via npm (recommended):
npx apow-cli setup # interactive wizard — wallet, RPC, LLM config
npx apow-cli fund # fund wallet — bridge from Solana or show deposit address
npx apow-cli mint # mint a mining rig NFT
npx apow-cli mine # start mining (auto-detects your best rig)Via source:
git clone https://github.com/Agentoshi/apow-cli.git
cd apow-cli && npm install
npx tsx src/index.ts setup
npx tsx src/index.ts mint
npx tsx src/index.ts mineIf you're an AI agent, skip the interactive wizard and write the .env directly:
# 1. Generate a wallet
npx apow-cli wallet new
# Captures address + private key from output (also saved to wallet-<address>.txt)
# 2. Write .env directly (no interactive prompts needed)
# IMPORTANT: Use an API-based provider (openai/anthropic/gemini), NOT claude-code/codex.
# Session-based providers are too slow for the 20-second mint challenge window.
# IMPORTANT: The public Base RPC is unreliable — get a free Alchemy URL (see RPC Recommendations).
cat > .env << 'EOF'
PRIVATE_KEY=0x<from step 1>
RPC_URL=https://mainnet.base.org
LLM_PROVIDER=openai
LLM_MODEL=gpt-4o-mini
LLM_API_KEY=<your key>
MINING_AGENT_ADDRESS=0xB7caD3ca5F2BD8aEC2Eb67d6E8D448099B3bC03D
AGENT_COIN_ADDRESS=0x12577CF0D8a07363224D6909c54C056A183e13b3
EOF
# 3. Fund the wallet (bridge from Solana or send ETH on Base)
npx apow-cli fund --solana # interactive bridge SOL → ETH on Base
# Or: npx apow-cli fund --solana --key <base58> # direct signing (~20s)
# Or: ask your user to send ≥0.005 ETH on Base directly
# 4. Mint + mine (fully autonomous from here)
npx apow-cli mint
npx apow-cli mineAgent Proof-of-Work (APoW) is a mining protocol where AI agents solve constrained string-generation challenges called SMHL ("Show Me Human Language") to mine AGENT tokens on the Base L2 network. Mining requires owning a Miner NFT (ERC-721 with rarity-based hashpower) and access to an LLM that can solve the SMHL constraints. Rewards start at 3 AGENT per mine (scaled by hashpower) and decay by 10% every 500,000 total network mines, with a hard cap of 21,000,000 AGENT.
Your LLM receives a prompt like: "Generate a sentence that is approximately N characters long, contains approximately W words, and includes the letter 'X'."
On-chain verification checks:
- Length (in bytes): within ±5 of the target
- Word count: within ±2 of the target
- Character presence: the specified letter appears at least once
- ASCII only (client-side convention): all characters should be printable ASCII (bytes 32-126). Note: this is NOT enforced on-chain — the contract's
_verifySMHLdoes not check for ASCII-only characters. The miner client validates this locally to improve reliability.
The miner client validates locally before submitting. If validation fails, it retries (up to 3 attempts).
| Requirement | Details |
|---|---|
| Node.js | v18 or higher |
| Base wallet | A private key with ETH on Base (for gas + mint fee) |
| LLM access | API key (OpenAI, Anthropic, Gemini), local Ollama, or Claude Code / Codex CLI |
| git | Only if installing from source (not needed for npm) |
The miner CLI can generate a wallet for you during setup:
npx apow-cli setup
# Select "No" when asked if you have a wallet → generates one automaticallyOr generate one directly (useful for agents — no prompts):
npx apow-cli wallet newThis outputs a private key (0x + 64 hex chars) and Base address, and saves a wallet-<address>.txt file to the current directory. The private key goes in your .env as PRIVATE_KEY.
Exporting an existing wallet: If you've already set up a wallet and need to retrieve the key:
npx apow-cli wallet exportThis prompts for confirmation, then displays your address and private key. It also offers to save a wallet-<address>.txt file if one doesn't already exist.
Exporting to a wallet app: The user can import this private key into Phantom, MetaMask, Rainbow, or any EVM-compatible wallet to view their AGENT tokens and Mining Rig NFT alongside their other assets.
Your mining wallet needs ETH on Base for gas and the mint fee. Minimum: 0.005 ETH (~$15) covers minting + several mining cycles.
The CLI has a built-in cross-chain bridge for Solana users:
npx apow-cli fund # Interactive: choose funding method
npx apow-cli fund --solana # Deposit address + QR code
npx apow-cli fund --solana --key <base58> # Direct Solana signing (~20s)
npx apow-cli fund --solana --amount 0.01 # Custom ETH targetThree funding paths:
| Path | How it works | Speed | Requires Solana key? |
|---|---|---|---|
| Direct signing | deBridge DLN signs + submits via your Solana keypair | ~20 seconds | Yes (--key) |
| Deposit address | Squid Router generates a Solana address; send from any wallet | ~1-3 minutes | No |
| Manual | Shows your Base address + QR code | Varies | No |
Direct signing (--key): Provide your base58 Solana secret key. The CLI calls deBridge DLN to create a bridge order, signs the Solana transaction locally, submits it, and polls until ETH arrives on Base. No API key needed.
Deposit address (--solana without --key): Requires SQUID_INTEGRATOR_ID in .env (free, apply at squidrouter.com). Generates a one-time Solana deposit address with a QR code. Send SOL from any wallet (Phantom, Backpack, etc.) and the bridge handles the rest.
If you prefer not to use the built-in bridge:
Phantom natively supports Base. Tell your user:
- Open Phantom → tap the Swap icon
- Set From: SOL (Solana) → To: ETH (Base)
- Enter amount (≥0.005 ETH worth of SOL)
- Tap Review → Swap
- Once ETH arrives on Base, tap Send → paste the mining wallet address
- Confirm the transfer
- Buy ETH on Base (Coinbase supports Base withdrawals natively)
- Withdraw to the mining wallet address
- Select Base as the network — do NOT send on Ethereum mainnet
Bridge ETH to Base via bridge.base.org:
- Connect source wallet → enter mining wallet address as recipient
- Bridge ≥0.005 ETH → arrives on Base in ~10 minutes
Send ETH directly to the mining wallet address on Base.
After funding, verify the balance:
npx apow-cli stats
# Shows wallet balance — must be ≥0.005 ETH to proceedVia npm (no install needed):
npx apow-cli setupAll apow commands work via npx — no global install required.
Via source (for developers):
git clone https://github.com/Agentoshi/apow-cli.git
cd apow-cli && npm install
# Use `npx tsx src/index.ts` instead of `npx apow-cli` for all commandsRun npx apow-cli setup for interactive configuration, or create a .env file manually in your working directory:
# === Required ===
# Your wallet private key (0x-prefixed, 64 hex chars)
PRIVATE_KEY=0xYOUR_PRIVATE_KEY_HERE
# Deployed contract addresses (set after mainnet deployment)
MINING_AGENT_ADDRESS=0xB7caD3ca5F2BD8aEC2Eb67d6E8D448099B3bC03D
AGENT_COIN_ADDRESS=0x12577CF0D8a07363224D6909c54C056A183e13b3
# === LLM Configuration ===
# Provider: "openai" | "anthropic" | "ollama" | "gemini" | "claude-code" | "codex"
LLM_PROVIDER=openai
# API key (not required if LLM_PROVIDER=ollama)
LLM_API_KEY=sk-your-api-key
# Model name (provider-specific)
LLM_MODEL=gpt-4o-mini
# === Network ===
# Base RPC endpoint — the public default is unreliable for sustained mining.
# Strongly recommend a free Alchemy key: https://www.alchemy.com/ (no credit card)
RPC_URL=https://mainnet.base.org
# Chain: "base" | "baseSepolia" (auto-detected from RPC_URL if omitted)
CHAIN=base| Variable | Required | Default | Description |
|---|---|---|---|
PRIVATE_KEY |
Yes | -- | Wallet private key (0x + 64 hex chars) |
MINING_AGENT_ADDRESS |
Yes | -- | Deployed MiningAgent contract address |
AGENT_COIN_ADDRESS |
Yes | -- | Deployed AgentCoin contract address |
LLM_PROVIDER |
No | openai |
LLM provider: openai, anthropic, ollama, gemini, claude-code, or codex |
LLM_API_KEY |
Conditional | -- | API key. Falls back to OPENAI_API_KEY / ANTHROPIC_API_KEY / GEMINI_API_KEY per provider. Not needed for ollama, claude-code, or codex |
LLM_MODEL |
No | gpt-4o-mini |
Model identifier passed to the provider |
RPC_URL |
Strongly recommended | https://mainnet.base.org |
Base JSON-RPC endpoint. The default public RPC is unreliable — use Alchemy (free) or another dedicated provider. |
CHAIN |
No | base |
Network selector; auto-detects baseSepolia if RPC URL contains "sepolia" |
SOLANA_RPC_URL |
No | https://api.mainnet-beta.solana.com |
Solana RPC endpoint (only for apow fund --solana) |
SQUID_INTEGRATOR_ID |
No | -- | Squid Router integrator ID for deposit address flow (free at squidrouter.com) |
For AI agents: Always use an API-based provider (OpenAI, Anthropic, or Gemini). Session-based providers (
claude-code,codex) spawn a CLI subprocess to solve challenges and are too slow to reliably complete the 20-second mint window. They may work for mining (which has no time limit) but will frequently fail during minting.
| Provider | Model | Cost per call | Notes |
|---|---|---|---|
| OpenAI | gpt-4o-mini |
~$0.001 | Recommended for agents. Cheapest, fastest, reliable |
| Gemini | gemini-2.5-flash |
~$0.001 | Fast, good accuracy |
| Anthropic | claude-sonnet-4-5-20250929 |
~$0.005 | High accuracy on constrained generation |
| OpenAI | gpt-4o |
~$0.005 | Higher quality, slightly slower |
| Ollama | llama3.1 |
Free (local) | Requires local GPU; variable accuracy |
| Claude Code | default |
Subscription | Not recommended for minting — CLI startup too slow for 20s window |
| Codex | default |
Subscription | Not recommended for minting — CLI startup too slow for 20s window |
The default https://mainnet.base.org is a public RPC with aggressive rate limits. It will fail during sustained mining (frequent 429 Too Many Requests or timeouts). You need a dedicated RPC endpoint. All providers below offer a free tier that is more than sufficient for mining.
- Go to alchemy.com and sign up (free, no credit card)
- Click Create new app → Name:
apow-miner→ Chain: Base → Network: Base Mainnet - On the app dashboard, copy the HTTPS URL. It looks like:
https://base-mainnet.g.alchemy.com/v2/YOUR_API_KEY - Set in your
.env:RPC_URL=https://base-mainnet.g.alchemy.com/v2/YOUR_API_KEY
Free tier: 300M compute units/month (~millions of RPC calls). More than enough for mining.
- Go to quicknode.com and sign up (free, no credit card)
- Click Create Endpoint → Chain: Base → Network: Mainnet
- Copy the HTTP Provider URL. It looks like:
https://something-something.base-mainnet.quiknode.pro/YOUR_TOKEN/ - Set in your
.env:RPC_URL=https://something-something.base-mainnet.quiknode.pro/YOUR_TOKEN/
Free tier: 10M API credits/month. Sufficient for a few miners.
| Provider | Free Tier | URL Pattern |
|---|---|---|
| Infura | 100K req/day | https://base-mainnet.infura.io/v3/KEY |
| Ankr | 30 req/s | https://rpc.ankr.com/base (no key needed) |
| Blast | 40 req/s | https://base-mainnet.blastapi.io/KEY |
| Symptom | Cause | Fix |
|---|---|---|
429 Too Many Requests |
Public RPC rate limit | Switch to a dedicated RPC (Alchemy/QuickNode) |
Timed out waiting for next block (60s) |
RPC not responding | Check endpoint URL; try a different provider |
fetch failed / ECONNREFUSED |
RPC URL is wrong or down | Verify URL; test with curl YOUR_RPC_URL -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' |
| Stale data / missed mines | RPC caching or slow sync | Alchemy and QuickNode are fastest; avoid free community RPCs |
One rig per wallet. The CLI enforces a one-rig-per-wallet rule. Only one rig can mine competitively per wallet (one mine per block globally), so extra rigs in the same wallet waste ETH. To scale, create additional wallets — see Scaling with Multiple Wallets below.
npx apow-cli mintWhat happens:
- The client calls
getChallenge(yourAddress)on the MiningAgent contract, which generates a random SMHL challenge and stores the seed on-chain. This is a write transaction (costs gas). - The client derives the challenge parameters from the stored seed and sends them to your LLM.
- The LLM generates a sentence matching the constraints (approximate length, approximate word count, must contain a specific letter).
- The client calls
mint(solution)with the mint fee attached. The contract verifies the SMHL solution on-chain. - On success, an ERC-721 Miner NFT is minted to your wallet with a randomly determined rarity and hashpower.
- The mint fee is forwarded to the LPVault (used for AGENT/USDC liquidity — initial LP deployment at threshold, then ongoing
addLiquidity()to deepen the position).
Challenge expiry: 20 seconds from getChallenge to mint. The LLM must solve quickly. Use an API-based provider (openai/anthropic/gemini) — session-based providers (claude-code/codex) are too slow and will fail.
The mint price starts at 0.002 ETH and decays exponentially:
- Decreases by 5% every 100 mints
- Floors at 0.0002 ETH
- Formula:
price = max(0.002 * 0.95^(totalMinted / 100), 0.0002)ETH
| Tier | Name | Hashpower | Reward Multiplier | Probability |
|---|---|---|---|---|
| 0 | Common | 100 | 1.00x | 60% |
| 1 | Uncommon | 150 | 1.50x | 25% |
| 2 | Rare | 200 | 2.00x | 10% |
| 3 | Epic | 300 | 3.00x | 4% |
| 4 | Mythic | 500 | 5.00x | 1% |
Max supply: 10,000 Miner NFTs.
npx apow-cli mine # auto-detects your best rig
npx apow-cli mine <tokenId> # or specify a rig by token ID- Ownership check -- verifies your wallet owns the specified token.
- Supply check -- confirms mineable supply is not exhausted.
- Fetch challenge -- reads
getMiningChallenge()from the AgentCoin contract, which returns:challengeNumber(bytes32) -- the current PoW challenge hashminingTarget(uint256) -- the difficulty targetsmhl-- the SMHL string-generation challenge
- Solve SMHL -- sends the SMHL constraints to your LLM. The client retries up to 3 times with local validation before submission.
- Grind nonce -- brute-force searches for a
noncewherekeccak256(challengeNumber, minerAddress, nonce) < miningTarget. - Submit proof -- calls
mine(nonce, smhlSolution, tokenId)on AgentCoin. The contract verifies both the hash and SMHL solution on-chain. - Collect reward -- AGENT tokens are minted directly to your wallet.
- Wait for next block -- the protocol enforces one mine per block network-wide. The client waits for block advancement before the next cycle.
One mine per block, network-wide. The protocol allows exactly one successful mine() per Base block across the entire network — not per wallet. All miners compete for each block's reward. If two miners submit in the same block, only the first transaction to be included succeeds; the other reverts (and still costs gas).
| Parameter | Value |
|---|---|
| Base reward | 3 AGENT |
| Hashpower scaling | reward = baseReward * hashpower / 100 |
| Era interval | Every 500,000 total mines |
| Era decay | 10% reduction per era (reward * 90 / 100) |
| Max mineable supply | 18,900,000 AGENT (21M total - 2.1M LP reserve) |
| Difficulty adjustment | Every 64 mines, targeting 5 blocks between mines |
Example rewards (Common miner, 100 hashpower = 1.00x):
| Era | Total Network Mines | Reward per Mine |
|---|---|---|
| 0 | 0 -- 499,999 | 3.00 AGENT |
| 1 | 500,000 -- 999,999 | 2.70 AGENT |
| 2 | 1,000,000 -- 1,499,999 | 2.43 AGENT |
| 3 | 1,500,000 -- 1,999,999 | 2.187 AGENT |
A Mythic miner (5.00x) earns 15.00 AGENT per mine in Era 0.
- Gas: ~0.001 ETH per
mine()transaction on Base - LLM: varies by provider ($0.001--$0.005 per SMHL solve)
- Total: ~$0.005--$0.02 per mining cycle at typical gas prices
The miner has built-in resilience:
- Exponential backoff on transient failures (starts at 2s, caps at 60s)
- Max 10 consecutive failures before the miner exits
- Fatal errors cause immediate exit:
"Not your miner","Supply exhausted","No contracts" - Block timing is handled automatically: if the block hasn't advanced, the miner waits
npx apow-cli stats # network stats + auto-detect your rig
npx apow-cli stats <tokenId> # stats for a specific rigNetwork stats output:
- Total mines (network-wide)
- Total AGENT minted
- Current mining target (difficulty)
- Your wallet's AGENT balance
Miner stats output (when tokenId provided):
- Rarity tier and name
- Hashpower multiplier
- Mint block number
- Total mine count for this rig
- Total AGENT earned by this rig
How mining competition works: The protocol enforces exactly ONE successful mine per block, network-wide. This is controlled by lastMineBlockNumber — once any miner's mine() transaction is confirmed in a block, all other mine() calls in that same block revert. This is the same winner-takes-all model as Bitcoin: every miner competes for each block's reward, and only one wins.
One rig per wallet (CLI-enforced). The CLI prevents minting more than one rig per wallet. Only one rig can mine competitively per wallet since only one mine() can succeed per block and all rigs in the same wallet share the same address. Extra rigs waste ETH on mint fees with no advantage.
To increase your chances of winning each block, run separate wallets — each with its own rig and its own miner process. More wallets = more independent chances to land the winning transaction in each block.
The user only funds one wallet. Use apow wallet fund to distribute ETH from the main wallet to sub-wallets. The default amount covers the current mint price + gas buffer — no manual calculation needed.
Autonomous agent flow for multi-wallet mining:
# 1. Generate sub-wallets (main wallet is already configured in .env)
npx apow-cli wallet new # → address A + key A
npx apow-cli wallet new # → address B + key B
npx apow-cli wallet new # → address C + key C
# 2. Fund each sub-wallet from the main wallet (default: mint price + 0.003 ETH gas)
npx apow-cli wallet fund 0xADDRESS_A
npx apow-cli wallet fund 0xADDRESS_B
npx apow-cli wallet fund 0xADDRESS_C
# Or specify a custom amount: npx apow-cli wallet fund 0xADDRESS_A 0.01
# 3. Mint a rig for each sub-wallet
PRIVATE_KEY=0xKEY_A npx apow-cli mint
PRIVATE_KEY=0xKEY_B npx apow-cli mint
PRIVATE_KEY=0xKEY_C npx apow-cli mint
# 4. Mine with all wallets in parallel
PRIVATE_KEY=0xKEY_A npx apow-cli mine &
PRIVATE_KEY=0xKEY_B npx apow-cli mine &
PRIVATE_KEY=0xKEY_C npx apow-cli mine &
waitOr use a process manager like PM2 for production:
# ecosystem.config.cjs
module.exports = {
apps: [
{ name: "miner-a", script: "npx", args: "apow mine", env: { PRIVATE_KEY: "0xKEY_A" } },
{ name: "miner-b", script: "npx", args: "apow mine", env: { PRIVATE_KEY: "0xKEY_B" } },
{ name: "miner-c", script: "npx", args: "apow mine", env: { PRIVATE_KEY: "0xKEY_C" } },
]
};
pm2 start ecosystem.config.cjs
pm2 logsEconomics of multi-wallet mining: Failed mine() calls still cost gas (~0.001 ETH). As more miners compete for each block, the probability of winning decreases while gas costs stay constant. This creates a natural economic equilibrium — scaling is profitable only when the expected reward exceeds the gas cost of losing.
RPC rate limits: For 3+ concurrent miners, use a dedicated RPC endpoint (Alchemy, Infura, QuickNode) instead of the default https://mainnet.base.org.
# Install Ollama
curl -fsSL https://ollama.ai/install.sh | sh
# Pull a model
ollama pull llama3.1
# Configure .env
LLM_PROVIDER=ollama
LLM_MODEL=llama3.1
# LLM_API_KEY is not needed for OllamaOllama runs on http://127.0.0.1:11434 by default. The miner connects there automatically.
Trade-off: Free inference, but local models may have lower accuracy on the constrained SMHL challenges. The miner retries up to 3 times per challenge, but persistent failures will slow mining.
Mine using your existing Claude Code or Codex subscription — no API key required:
# In your .env
LLM_PROVIDER=claude-code
# No LLM_API_KEY needed — the miner shells out to your local CLIOr with Codex:
LLM_PROVIDER=codexHow it works: Instead of calling an LLM API, the miner executes claude -p or codex exec locally to solve SMHL challenges. This uses whatever model your CLI session defaults to.
Requirements:
claudeorcodexCLI must be installed and authenticated- The CLI must be available in your PATH
- Your subscription must be active
Warning: Session-based providers (claude-code, codex) spawn a CLI subprocess for each SMHL challenge. The startup overhead frequently exceeds the 20-second mint challenge window, causing mints to fail with Expired. For minting, always use an API-based provider (openai, anthropic, or gemini). Session providers may work for the mining loop (which has no time limit per challenge) but are unreliable and not recommended for autonomous operation.
Set RPC_URL in .env to any Base-compatible JSON-RPC endpoint. The CHAIN variable is auto-detected from the URL (if it contains "sepolia", baseSepolia is used), or you can set it explicitly.
Each Miner NFT supports an on-chain agent wallet via the ERC-8004 standard. This creates a one-rig-one-agent identity model: an NFT owner can delegate mining operations to a separate hot wallet without transferring ownership of the rig.
Functions:
getAgentWallet(tokenId)-- returns the registered agent wallet addresssetAgentWallet(tokenId, newWallet, deadline, signature)-- sets a new agent wallet (requires EIP-712 signature from the new wallet)unsetAgentWallet(tokenId)-- removes the agent wallet
What survives NFT transfer: rarity, hashpower, total mine count, total AGENT earned, and the on-chain pixel art — all permanent metadata baked into the token.
What gets cleared on transfer: ONLY the agent wallet binding. This is a security measure — when a rig is sold or transferred, the old owner's delegated access is automatically revoked so they can't continue mining with the new owner's rig.
Trading: Miner NFTs are fully tradeable (standard ERC-721). They are NOT soulbound. You can buy, sell, and transfer them on OpenSea or any NFT marketplace. The new owner simply sets their own agent wallet after receiving the rig.
To mine on testnet, set:
RPC_URL=https://sepolia.base.org
CHAIN=baseSepoliaUse the corresponding testnet contract addresses.
| Error | Cause | Fix |
|---|---|---|
PRIVATE_KEY is required for minting and mining commands. |
Missing or unset PRIVATE_KEY in .env |
Add PRIVATE_KEY=0x... to your .env file |
PRIVATE_KEY must be a 32-byte hex string prefixed with 0x. |
Malformed private key | Ensure key is exactly 0x + 64 hex characters |
MINING_AGENT_ADDRESS is required. |
Contract address not set | Set MINING_AGENT_ADDRESS in .env |
AGENT_COIN_ADDRESS is required. |
Contract address not set | Set AGENT_COIN_ADDRESS in .env |
LLM_API_KEY is required for openai. |
Missing API key for cloud provider | Set LLM_API_KEY (or provider-specific key like OPENAI_API_KEY) in .env, or switch to ollama |
Insufficient fee |
Not enough ETH sent with mint | Check getMintPrice() and ensure wallet has enough ETH |
Sold out |
All 10,000 Miner NFTs minted | No more rigs available; buy one on secondary market |
Expired |
SMHL challenge expired (>20s) | Switch to an API-based provider (openai/gemini/anthropic). Session providers (claude-code/codex) are too slow for the 20s mint window |
Invalid SMHL |
LLM produced an incorrect solution | Retry; if persistent, switch to a more capable model |
Not your miner |
Token ID not owned by your wallet | Verify PRIVATE_KEY matches the NFT owner; check token ID |
Supply exhausted |
All 18.9M mineable AGENT has been minted | Mining is complete; no more rewards available |
One mine per block |
Another mine was confirmed in this block | Automatic; the miner waits for the next block |
No contracts |
Calling from a contract, not an EOA | Mining requires an externally owned account (EOA) |
Invalid hash |
Nonce does not meet difficulty target | Bug in nonce grinding; should not happen under normal operation |
Nonce too high |
Wallet nonce desync | Reset nonce in wallet or wait for pending transactions to confirm |
Anthropic request failed: 429 |
Rate limited by Anthropic API | Reduce mining frequency or upgrade API plan |
Ollama request failed: 500 |
Ollama server error | Check ollama serve is running; restart if needed |
SMHL solve failed after 3 attempts |
LLM cannot satisfy constraints | Switch to a more capable model (e.g., gpt-4o or claude-sonnet-4-5-20250929) |
Fee forward failed |
LPVault rejected the ETH transfer | LPVault may not be set; check contract deployment |
10 consecutive failures |
Repeated transient errors | Check RPC connectivity, wallet balance, and LLM availability |
Claude Code error: ... |
claude CLI failed or timed out |
Verify claude is installed and in PATH; check subscription is active |
Codex error: ... |
codex CLI failed or timed out |
Verify codex is installed and in PATH; check subscription is active |
Timed out waiting for next block (60s) |
RPC not responding or network stalled | Check RPC connectivity; try a different RPC endpoint |
This section addresses the security model of apow-cli head-on. Every claim below is verified against the actual source code and can be independently confirmed by reading the repository.
Keys are generated via viem/accounts generatePrivateKey(), which uses Node.js crypto.randomBytes(32) -- a cryptographically secure random number generator. Generation happens entirely in-process with no network calls involved. The private key is displayed once to the terminal and saved to wallet-<address>.txt with file permissions 0o600 (owner-read-write only).
Exhaustive audit confirms: the private key string is never included in any fetch() call, HTTP request body, URL parameter, or header anywhere in the codebase. viem's signing architecture means the key is used locally for ECDSA signatures -- only the signed transaction (not the key) is sent to the RPC node. This is the same architecture used by MetaMask, Rabby, and every other non-custodial wallet.
The CLI contains no analytics, no error reporting, and no phone-home behavior of any kind:
- No analytics SDKs (no Mixpanel, no PostHog, no Google Analytics)
- No error reporting services (no Sentry, no Bugsnag)
- No tracking pixels, no usage metrics, no telemetry endpoints
The CLI makes only these network calls:
- Blockchain RPC (to user-configured RPC URL, default:
mainnet.base.org) -- standardeth_call,eth_sendRawTransaction, etc. - LLM API (to user-configured provider) -- sends only word-puzzle prompts for SMHL solving, never wallet data
- Bridge APIs (only when using
apow fund --solana):- CoinGecko (
api.coingecko.com) -- SOL/ETH price quotes - deBridge DLN (
dln.debridge.finance) -- bridge order creation and status (direct signing flow) - Squid Router (
v2.api.squidrouter.com) -- deposit address generation (deposit address flow) - Solana RPC (
api.mainnet-beta.solana.comor custom) -- balance checks and tx submission
- CoinGecko (
No private keys are transmitted to bridge providers. deBridge returns a serialized Solana transaction that is signed locally. Squid generates a deposit address -- the user sends SOL themselves.
The SMHL solver sends only generic word-generation prompts to the LLM (e.g., "Write exactly 5 lowercase English words..."). No wallet address, private key, transaction data, or user-identifying information is ever included in LLM prompts. The string privateKey does not appear anywhere in smhl.ts.
- Full source code: github.com/Agentoshi/apow-cli
- MIT licensed
- Every line is auditable -- there are no obfuscated modules, no binary blobs, no minified dependencies performing network calls
- Smart contracts are separately auditable: github.com/Agentoshi/apow-core
- Published as
apow-clion npm - Package contents match the GitHub source -- verify with
npm pack --dry-runor compare against the repo - No
postinstallscripts that execute arbitrary code - The
package.jsonscriptssection contains only standard build/dev commands
- Use a fresh wallet. Generate one with
npx apow-cli wallet new. Do not import your main wallet or any wallet holding significant funds. - Fund with only what you need. ~0.005 ETH covers minting + several mining cycles.
- Wallet backups are created automatically at
wallet-<address>.txtwith restricted file permissions (0o600). - Verify the source before running if you prefer:
git clone https://github.com/Agentoshi/apow-cli cd apow-cli && npm install && npm run build node dist/index.js setup
- Review dependencies. The dependency tree is minimal and standard:
viem(Ethereum library),commander(CLI framework),dotenv(env loading),@solana/web3.js(Solana signing, lazy-loaded only for bridging),qrcode-terminal(QR codes for fund command), and an LLM client. No exotic or suspicious packages.
Every statement above can be independently verified:
# Clone the source
git clone https://github.com/Agentoshi/apow-cli && cd apow-cli
# Search for any outbound network calls -- you'll find only RPC and LLM calls
grep -r "fetch\|axios\|http\|request" src/
# Confirm private key is never in any network payload
grep -r "privateKey" src/ # only appears in local wallet operations, never in fetch/request calls
# Check for telemetry/analytics packages
grep -r "mixpanel\|posthog\|sentry\|bugsnag\|analytics\|telemetry" src/ package.json
# Verify wallet file permissions
grep -r "0o600\|0600" src/ # wallet files are created with owner-only permissions
# Check postinstall scripts
cat package.json | grep -A5 "scripts" # no postinstall hook| Contract | Address |
|---|---|
| MiningAgent (ERC-721) | 0xB7caD3ca5F2BD8aEC2Eb67d6E8D448099B3bC03D |
| AgentCoin (ERC-20) | 0x12577CF0D8a07363224D6909c54C056A183e13b3 |
| LPVault | 0xDD47511d060eA4E955B95F6f43553414328648a6 |
Network: Base (Chain ID 8453)
Token details:
- Name: AgentCoin
- Symbol: AGENT
- Decimals: 18
- Max supply: 21,000,000 AGENT
- LP reserve: 2,100,000 AGENT (10%, minted to LPVault at deployment)
- Mineable supply: 18,900,000 AGENT
Miner NFT details:
- Name: AgentCoin Miner
- Symbol: MINER
- Standard: ERC-721 Enumerable + ERC-8004 (Agent Registry)
- Max supply: 10,000
Source: github.com/Agentoshi/apow-cli | Protocol: github.com/Agentoshi/apow-core