The Apple Pay for Web3: send crypto in any messaging app using natural language.
Pear Pay is a conversational payment protocol that lets you send money anywhere you communicate : iMessage, Telegram, WhatsApp, Discord, Slack, X, or even between AI agents. Instead of wallets, seed phrases, chains, bridges, swaps, and gas, you just express intent: "Send Molly $20," "Pay Alex back for dinner," or "Send Sarah 50 USDC privately."
Behind that single message, Pear Pay resolves the recipient (wallet address, phone, email, handle, or existing Pear Pay user), picks the optimal settlement rail, settles in USDC, and optionally shields the transfer so amounts and counterparties stay private.
Crucially, payments never fail because the recipient hasn't onboarded. If they have no wallet, Pear Pay escrows the USDC and delivers a claim link over SMS/WhatsApp via Twilio; the recipient taps it, an embedded wallet is created instantly through Dynamic, and the funds release — solving the cold-start problem that kills most crypto payment apps.
Pear Pay also extends to the agentic economy: AI agents get their own Dynamic server wallet (or Delegated Access MPC wallet after one Face ID grant) and can pay each other for APIs, compute, and data autonomously using HTTP 402 / x402 — the same infrastructure that powers human payments powering machine-to-machine commerce.
You can try it live at https://pearpay.app/: a clickable, screen-recordable Simulator reproduces the in-chat payment experience across six platforms (iMessage, Telegram, Discord, WhatsApp, Slack, X), and a "Try it" page does a real on-chain USDC transfer from your own wallet on Arc Testnet — a genuine, verifiable transaction on testnet.arcscan.app, not a mock. The homepage also runs a one-click Autonomous Private Agent timeline (Dynamic sign → Unlink shield → Circle Gateway x402 settle on Arc) that judges can screen-record end to end. A live Telegram bot webhook at /api/telegram parses payment intents and replies in-chat when configured.
Pear Pay is one unified TypeScript app: a Next.js (App Router) frontend + API that orchestrates every integration, with a thin native Swift iMessage extension where Apple requires it.
The brain is a dependency-free core in TypeScript so it behaves identically across every channel: an NLP parser turns "Send Molly $20 privately" into a structured PaymentIntent; a universal recipient resolver maps wallet address / phone / email / handle / existing-user to a delivery mode; a programmable escrow handles claimable payments; and a settlement orchestrator selects the rail per payment and serializes a JSON-safe result for the UI. Blockchain access is via viem/wagmi.
Two demo surfaces show this end to end: (1) a screen-recordable Simulator that reproduces the real in-chat UX across six platforms (iMessage, Telegram, Discord, WhatsApp, Slack, X) — pixel-faithful phone frame, on-screen iOS keyboard, and each platform's native confirmation pattern (Apple Pay sheet, Telegram inline buttons, Discord embeds, WhatsApp quick-replies, Slack Block Kit, X cards) — all sharing one tested component foundation; and (2) a live "Try it" page at /pay that does a REAL on-chain USDC transfer on Arc Testnet (chain 5042002): connect a browser wallet via wagmi (injected connector), switch to Arc if needed, and transfer() Circle's testnet USDC to any address with a verifiable Arcscan link — no sponsor accounts or funded server keys required.
Partner tech and how it helps:
On-chain, PearPayEscrow.sol is deployed on Arc Testnet at 0x065484A8DAc3A9c3288b9C575a54947B0A1bC7eB — a programmable USDC/EURC escrow (conditional release behind a keccak256 claim-secret, time-based auto-refund, sender cancellation, optional arbiter dispute resolution).
Hacky / notable bits:
The sponsor settlement rails (Arc/Unlink/x402) run on Arc Testnet for the demo so the full flow is reproducible without funded mainnet keys. Circle Gateway bridge can mint USDC onto Arc from a cross-chain pool (default source: Base Sepolia) when CIRCLE_API_KEY is set.

