惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
InfoQ
博客园 - 司徒正美
爱范儿
爱范儿
F
Fortinet All Blogs
J
Java Code Geeks
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
S
SegmentFault 最新的问题
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
V
V2EX
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
A
About on SuperTechFans
有赞技术团队
有赞技术团队
Y
Y Combinator Blog

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - ONSARI/payclaw-skill
onsari · 2026-04-24 · via Hacker News - Newest: "AI"

PayClaw · Agent Payments skill

Give your agent a wallet it can actually spend. USDC-native on Base. 1% flat, no fixed fees, no KYC, no custody.

An OpenClaw skill that gives autonomous agents the simplest possible way to send money. Three functions, auto-provisioned wallet, on-chain settlement.

import { pay } from '@grip-labs/payclaw'

await pay({
  to:     '0xRecipient...',
  amount: '1.50',
})
// → { txHash, amountSent: '1.50', feeCharged: '0.015', explorer: 'https://basescan.org/tx/...' }

Why

Agents are already transacting. Per Scroll's data, 140M stablecoin payments by AI agents in 9 months, average $0.31. Stripe Issuing's 0.2% + $0.20/tx structurally cannot serve that market — the $0.20 fixed fee is 65% of the average agent tx.

PayClaw is 1% flat, no fixed fee, no monthly minimum. On a $0.31 tx, you pay $0.0031. On a $100 tx, you pay $1.00. Linear all the way down.

What it does

Function Purpose
pay() Send USDC from the agent's auto-provisioned wallet to any Base address
balance() Check the agent's USDC + ETH balance
history() List the agent's recent transactions (from on-chain logs)

What it does NOT do (yet)

  • KYC / identity verification — use Grip Pay for sovereign-anchored identity (RENAPER, TSE, etc)
  • Fiat on/off-ramp — USDC only
  • Multi-sig / spending-policy enforcement — use wad SDK
  • Yield-bearing idle balances — coming in v0.2 with opt-in USDe/sUSDS
  • Agent-to-agent escrow with challenge — use wad SDK

Architecture

┌─────────────────────────────────────────────────────────────────┐
│  OpenClaw agent                                                 │
│  ───────────────                                                │
│    calls:  pay({ to, amount })                                  │
│    wallet: auto-provisioned EOA, private key encrypted locally  │
└────────────────────────┬────────────────────────────────────────┘
                         │
                         │ signs USDC transfer
                         ▼
┌─────────────────────────────────────────────────────────────────┐
│  Base L2 · USDC native (Circle-issued, Coinbase ecosystem)      │
│  ─────────                                                       │
│    tx #1:  agent → recipient     (amount)                       │
│    tx #2:  agent → PayClaw fee   (amount × 1%)                  │
└─────────────────────────────────────────────────────────────────┘

Install

# In your OpenClaw workspace
openclaw plugin add @grip-labs/payclaw

# Or via npm for standalone use
npm install @grip-labs/payclaw

# Python — LangChain / LangGraph
pip install langchain-payclaw

# Python — CrewAI
pip install crewai-payclaw

# Python — Microsoft AutoGen (0.4+)
pip install autogen-payclaw

# Python — LlamaIndex (0.12+)
pip install llama-index-tools-payclaw

# TypeScript — Vercel AI SDK (v5 / v6)
npm i @grip-labs/payclaw-ai

Official integration packages live under python/ (LangChain, CrewAI, AutoGen, LlamaIndex) and payclaw-ai/ (Vercel AI SDK).

Configure

Edit ~/.openclaw/openclaw.json:

{
  "plugins": {
    "entries": {
      "payclaw": {
        "enabled": true,
        "config": {
          "rpcUrl": "https://mainnet.base.org"
        }
      }
    }
  }
}

Or set environment variables: PAYCLAW_RPC_URL, PAYCLAW_USDC_ADDRESS, PAYCLAW_FEE_BPS, etc.

First-run flow

  1. Agent calls pay({ to, amount }) for the first time
  2. Skill generates a fresh secp256k1 EOA for that agent
  3. Encrypted keystore is persisted on disk (path configurable via walletStore; defaults to an OpenClaw-managed location under the agent's private directory, chmod 600)
  4. First call throws WALLET_NEEDS_FUNDING with the new address
  5. Fund the agent's address with USDC — that's it. Gas is paid in USDC via Circle Paymaster, no ETH required.
  6. All subsequent pay() calls settle in ~2 seconds on Base

Cost

1.00% flat take rate on the transferred USDC amount. Zero subscription, zero monthly minimum, zero fixed per-tx fee. The fee is additional — the recipient gets the full amount, the agent's wallet is debited amount × 1.01.

Gas: paid in USDC by the agent's smart account via Circle Paymaster (~$0.001/payment surcharge). The agent never holds or needs ETH.

Security notes

What we protect against

  • Agent private keys generated locally, encrypted at rest, persisted with restrictive filesystem permissions, never transmitted off-host
  • Recipient validation — malformed addresses rejected before any RPC call
  • Optional whitelist — agents can be locked to a pre-approved set of payees (mitigates prompt-injection attacks that try to redirect a payment)
  • Daily spending cap — per-agent per-UTC-day limit (default $100), bounding worst-case loss if a keystore is ever compromised
  • Fee-recipient EOA check — the skill verifies the configured feeRecipient is an EOA (not a contract) at runtime and refuses to proceed if it isn't. Defends against reentrancy + config-injection attacks.
  • Dust guard — payments below 0.01 USDC rejected to prevent griefing / state bloat
  • All settlement on Base (public chain) — every transaction is verifiable on BaseScan
  • No custody — PayClaw operators never hold agent funds. If we're hacked, the blast radius is the treasury wallet only, not user funds. Compare with centralized payment processors where a single breach drains every customer.
  • No chargebacks / disputes / reversals — on-chain finality

Defense in depth

PayClaw layers protections across the SDK, the hosted deployer endpoint, and the on-chain settlement path:

  • SDK layer — encrypted local keystore, daily spending cap, optional recipient whitelist, EOA-only fee recipient validation, dust-payment rejection, recipient-address validation
  • Hosted deployer endpoint — kill switch, body shape + timestamp freshness validation, ECDSA signature verification (caller proves EOA ownership), idempotency on already-deployed accounts, USDC-funded-wallet bypass for legitimate customers, persistent rate limiting on empty-wallet creation, factory simulation pre-flight (refuses to spend gas unless the factory deploys at the claimed address)
  • On-chain layer — atomic ERC-4337 v0.7 UserOps via Pimlico bundler, Circle Paymaster v0.7 for USDC-denominated gas, Kernel v0.3.1 smart accounts with ERC-1271 signature verification, Base mainnet finality (~2s)
  • Distribution layer — npm provenance attestation on every published version, GitHub OIDC signing, public release pipeline auditable in .github/workflows/

For production flows that need KYC, sovereign identity anchors, or compliance reporting, pair PayClaw with Grip Pay — the regulated layer of the Grip stack.

Roadmap

  • v0.1 (shipped): USDC on Base, flat 1%, local keystore, daily cap, whitelist opt-in, EOA-only fee recipient
  • v0.2 (shipped, current): True gasless via Circle Paymaster + Kernel smart accounts (ERC-4337 v0.7) — agents never need ETH. Hosted deployer endpoint with multi-layer defenses (sig verification, factory simulation, USDC-funded bypass, anti-spam rate limit).
  • v0.3 (planned): Cross-chain via CCTP (Arbitrum, Optimism, Polygon), hardware-wallet support (Ledger/HSM), USDe/sUSDS opt-in yield
  • v0.4: Integration with Grip identity layer for sovereign-anchored KYC

Publishing discipline

This package publishes only from the onsari/payclaw-skill GitHub repo via the release workflow in .github/workflows/publish.yml, using npm provenance attestation. Verification:

npm view @grip-labs/payclaw --json | jq .signatures

If the published version does not have a provenance signature from the GitHub Actions OIDC issuer pointing at this exact repo, do not install it — it wasn't us.

Context

PayClaw is built by Grip Labs — the agent-payments primitive that pairs with the broader Grip stack:

  • wad — developer SDK for any EVM-native agent runtime
  • Grip Pay — consumer wallet with KYC + sovereign identity
  • Grip — the open MIT protocol underneath

See grip.lat (passphrase-gated preview).

License

MIT. Do what you want.


Built for the "ChatGPT Moment for Autonomous Agents". Jensen Huang announced OpenClaw + NemoClaw at GTC 2026. PayClaw is the payments primitive on that stack.