Chat to pay — AI handles the rest. No chain switching, no DEX, no gas math.
Pay Anyone. Just Chat. AI Handles the Rest.
PayAgent is an intent-based AI agent for seamless multi-chain crypto payments. You type what you want to do in plain language, and the agent handles chain selection, address resolution, gas estimation, and token swaps automatically — no bridges, no chain switching, no wrong tokens.
Web3 payments are still broken in three ways:
PayAgent eliminates all of them. Key highlights:
Before any transaction is sent, a Decision Card surfaces the recipient, chain, amount, and full cost breakdown so you know exactly what you are signing.
Built with AI model (function calling), viem + Alchemy (multi-chain RPC), Uniswap Trading API, ENS resolution, wagmi + ConnectKit (wallet), and a Node.js SSE backend.
The agent core is a function-calling loop where the AI model decides at runtime which tools to invoke and in what order — no hardcoded payment flow. For example, "send 50 USDT to alice.eth" with no USDT triggers: resolveIdentity → getBalances → getSwapQuote → buildSwapTx, skipping createTransaction entirely.
The 7 tools available to the model are:
Every tool call emits an SSE event, rendering each reasoning step live on it. selectChain fans out gas price queries across all chains in parallel, factoring in L1 data fees on Optimism, Base, and Arbitrum.
For Uniswap integration, getSwapQuote uses EXACT_OUTPUT mode — the agent specifies exactly how much USDT the recipient receives, and Uniswap back-calculates the required ETH input. All transactions are returned as unsigned calldata; the wallet signs each one in sequence, and the server never holds private keys.

