AgentWallex: Content Day (Articles going live) A developer argues that AI agents need dedicated payment infrastructure, comparing three custody models: agents holding private keys (fast but exploitable), multi-sig with human approvals (secure but too slow for microtransactions), and MPC threshold signing that splits key shares so no single party holds the full key. The writeup points to $65M in recent funding for agent payment startups Catena and Sapiom, alongside reports of a fake AI trading agent stealing crypto wallet passwords, as evidence the category is being validated and targeted at the same time. It proposes policy-as-code guardrails like spending limits and recipient allowlists to keep sub-150ms autonomous payments within enterprise controls. Two weeks. $65M in funding. Catena raised $30M from a16z to build an "AI-native bank." Sapiom raised $35M for agent payment rails. The market just validated that AI agents need to pay for things. Same two weeks: reports surface of a fake AI trading agent stealing crypto wallet passwords. The gap between those headlines is the entire story. AI agents can book flights, write code, orchestrate workflows. But when they need to pay for an API call or cloud compute, everything stops. Payment infrastructure was built for humans — manual approvals, card numbers, login flows. The funding wave acknowledges this is broken. Agents need wallets. They need to authorize payments in milliseconds, not wait for human confirmation. But giving an agent a wallet means giving it custody of funds. And that's where the architecture question gets urgent. Model 1: Agent holds private keys Fast. Autonomous. Completely vulnerable. If the agent holds the private key in memory or storage, compromising the agent means draining the wallet. The fake trading bot story is the preview. Agents will be targeted because they're software — patchable, exploitable, living in cloud environments with expanding attack surfaces. Speed to market doesn't matter if the first major exploit sets the category back 18 months. Model 2: Multi-sig with human approvals Secure. Slow. Kills autonomy. Multi-sig wallets require multiple parties to sign. Great for DAO treasuries. Wrong for agents making microtransactions. Your CrewAI agent needs to pay $0.003 for a Pinecone vector search in 150ms. Waiting for 2-of-3 human signers breaks the entire value proposition. Account Abstraction AA helps — solutions like Biconomy Smart Sessions let agents operate user assets with programmable rules. But agents are still acting on user wallets, not owning their own funds. Different use case. Model 3: MPC threshold signing Fast. Autonomous. Structurally secure. Multi-Party Computation MPC splits a private key into shares. No single party ever holds the complete key — not the agent, not the platform, not the user. In a 2-of-3 threshold scheme: The agent can sign transactions by combining its share with one other the platform's , completing in <150ms. But the agent never reconstructs the full private key. Compromise the agent, you get 1 of 3 shares. Mathematically useless without the others. js // Agent requests payment authorization const authRequest = { recipient: "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb", amount: "0.003", currency: "USDC", chain: "base" }; // MPC signing with threshold shares // Agent share + Platform share = valid signature // Time: <150ms // Private key never reconstructed const signature = await agentWallet.authorizePayment authRequest ; // Payment executes. Agent never held full key. Compare to multi-sig: js // Agent proposes transaction const proposal = await multiSigWallet.propose txData ; // Wait for human signers 2 of 3 required // Time: minutes to hours // Agent is blocked until approval await proposal.waitForSignatures ; The latency difference isn't cosmetic. It's the difference between "agent pays for an API call mid-task" and "agent stops, asks permission, waits." MPC solves custody. But enterprises still need controls — spending limits, recipient allowlists, rate caps. This is where most solutions add manual approvals back in, reintroducing the latency problem. The answer is policy-as-code: js const agentPolicy = { dailyLimit: "100.00 USDC", allowedRecipients: "pinecone.io", "openai.com" , maxPerTransaction: "5.00 USDC", requireApprovalAbove: "50.00 USDC" }; Policy engine evaluates rules in milliseconds. Agent operates autonomously within guardrails. Exceeds a threshold? Then it requests approval. But 99% of microtransactions flow without human touch. Mastercard and Danske Bank announced "Denmark's first AI agent payment" this month. The headlines focused on the milestone. No coverage asked the custody question. How did the agent sign the transaction? What held the keys? Was a human approving in the background? These aren't pedantic questions. They're the architecture decisions that determine whether agent payments scale or become the next security headline. Account Abstraction teams can't pivot to MPC agent custody — different cryptographic model, different infrastructure. Multi-sig teams can't remove the human bottleneck without removing the security model. MPC isn't a feature you add. It's a foundation you build on. The teams that chose AA or multi-sig are structurally locked out of the fast + autonomous + secure zone. That's why the $65M matters less than the architecture. AgentWallex is the payment gateway built on MPC infrastructure Paratro . Agents get wallets that never expose private keys. Authorize payments in <150ms. Policy engine for controls without approvals. Two-sided platform: 3,600 teams on the waitlist. Sandbox live at app.agentwallex.com. We're not chasing funding announcements. We're obsessing over the architecture question the headlines are ignoring. Because the first team that gets custody right wins the category. The first team that gets it wrong creates the cautionary tale. AgentWallex is live in sandbox. Test the MPC wallet model at app.agentwallex.com.