Show HN: PayClaw – a gasless USDC wallet for AI agents (12 frameworks)
hackernews
|
|
📰 뉴스
#meta
#메타
#법안
#소송
#온라인 안전
#청소년
#청소년 보호
원문 출처: hackernews · Genesis Park에서 요약 및 분석
요약
메타는 청소년의 온라인 안전에 해를 끼친 혐의로 수천 건이 넘는 추가 소송에 직면해 있으며, 이에 미국 의회는 아동 온라인 보호를 위한 여러 법안을 발의했습니다. 하지만 일부 제안된 법안들은 과도한 규제나 실효성 부족 등의 이유로 강한 비판을 받고 있습니다. 이러한 상황은 거대 빅테크 기업의 책임 소재와 청소년 보호를 위한 적절한 정책 마련의 어려움을 동시에 보여줍니다.
본문
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/...' } 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. | 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) | - 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 ┌─────────────────────────────────────────────────────────────────┐ │ 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%) │ └─────────────────────────────────────────────────────────────────┘ # 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). 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. - Agent calls pay({ to, amount }) for the first time - Skill generates a fresh secp256k1 EOA for that agent - Encrypted keystore is persisted on disk (path configurable via walletStore ; defaults to an OpenClaw-managed location under the agent's private directory, chmod 600) - First call throws WALLET_NEEDS_FUNDING with the new address - Fund the agent's address with USDC — that's it. Gas is paid in USDC via Circle Paymaster, no ETH required. - All subsequent pay() calls settle in ~2 seconds on Base 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. - 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 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. - 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 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. 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). 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.
Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.
공유