Agentic Wallet
An agentic wallet is a cryptocurrency wallet controlled or operated by an AI agent that can autonomously execute transactions based on predefined rules.
Key Takeaways
- An agentic wallet is a cryptocurrency wallet that an AI agent can operate autonomously, holding, sending, and receiving funds without requiring human approval for every transaction. Policy controls like session keys and spending limits keep the agent within predefined boundaries.
- Enabling infrastructure includes account abstraction (ERC-4337) and smart wallets, which allow programmable authorization logic such as per-token allowances, time-scoped sessions, and address allowlists.
- Security and liability remain unsolved: AI agents have no legal personhood, so responsibility for autonomous transactions fragments across users, wallet operators, and model providers. Prompt injection and context manipulation can trick agents into draining funds.
What Is an Agentic Wallet?
An agentic wallet is a digital wallet designed for use by an AI agent rather than a human. Where a traditional crypto wallet requires a person to review, approve, and sign each transaction, an agentic wallet delegates signing authority to software that can act on its own. The agent holds keys (or shares of keys), evaluates conditions, and executes transactions: all within guardrails set by the wallet's owner.
The concept emerged as AI agents matured from chatbots into autonomous systems capable of browsing the web, calling APIs, and coordinating multi-step workflows. Once an agent can act on behalf of a user, it needs the ability to pay for the services it consumes and receive payment for the value it creates. An agentic wallet gives the agent that capability.
The first major implementations launched in early 2026. Coinbase released its Agentic Wallets product in February 2026, providing MPC-secured wallets with programmable session caps and per-transaction limits. MetaMask followed with its Agent Wallet in June 2026. Cobo, Lit Protocol, Turnkey, and others have also shipped agentic wallet infrastructure.
How It Works
An agentic wallet combines three layers: key management that secures the agent's signing authority, policy enforcement that constrains what the agent can do, and an execution interface that connects the agent to blockchain networks.
Key Management
Giving an AI agent a raw private key would be catastrophic if the agent were compromised: one leaked key means total loss of funds. Instead, agentic wallets use distributed key architectures:
- Multi-party computation (MPC): the private key is split into shares held by different parties (the agent, the platform, a backup service). No single share can sign alone. Coinbase, Circle, Fireblocks, and Turnkey use this approach for agent signing.
- Smart contract wallets with session keys: the wallet is a smart contract on an EVM chain. The owner grants the agent a time-limited, action-scoped session key. The agent can sign transactions within the session's constraints, but cannot exceed them.
- Multisig with co-signer policies: the agent holds one key in a multisig setup. High-value transactions require additional signatures from the owner or an automated policy engine.
Policy Enforcement
The core innovation of agentic wallets is controlled autonomy. The owner defines a policy envelope that specifies what the agent is allowed to do:
- Spending limits: per-transaction maximums, hourly caps, and daily budgets
- Token allowlists: which assets the agent can send or interact with
- Address allowlists: which contracts or recipients the agent can transact with
- Action types: whether the agent can swap, transfer, stake, or only read
- Time windows: sessions that expire after a set duration
With account abstraction (ERC-4337), these policies are enforced at the smart contract level. The wallet contract validates each UserOperation against the policy before executing it. If the agent tries to exceed its budget or interact with a non-allowlisted contract, the transaction reverts on-chain: no trust in the agent's software is required.
// Simplified session key policy structure
{
"sessionKey": "0xAgent...PublicKey",
"validUntil": 1756684800,
"permissions": {
"maxPerTransaction": "100 USDC",
"dailyLimit": "1000 USDC",
"allowedTokens": ["USDC", "USDT"],
"allowedTargets": ["0xAPI...Contract"],
"allowedActions": ["transfer", "approve"]
}
}Execution Interface
The agent interacts with the wallet through an SDK or API. Coinbase's AgentKit, for example, is a framework-agnostic toolkit that connects any AI agent to a wallet. The agent calls functions like sendTransaction or signMessage, and the SDK handles key assembly, policy checks, and broadcast.
For payments triggered by external services, the x402 protocol standardizes how agents pay for API calls. When a server requires payment, it returns an HTTP 402 response with payment instructions. The agent reads the requirements, signs a stablecoin transaction, attaches the proof to a retry request, and receives the data. As of mid-2026, x402 has processed over 119 million transactions on Base and 35 million on Solana.
Use Cases
API and Data Payments
AI agents frequently call external APIs for data, compute, or model inference. With an agentic wallet, the agent pays per request using stablecoins rather than relying on pre-provisioned API keys or credit card billing. This enables a micropayment model where agents pay only for what they consume, and API providers receive instant settlement.
Autonomous Trading
Trading bots with agentic wallets can execute strategies around the clock without human intervention. The wallet's policy layer caps position sizes and restricts which DEXs or trading pairs the agent can access. If the agent's strategy involves arbitrage across venues, the wallet can enforce that outflows are always balanced by inflows within a time window.
Machine-to-Machine Payments
As AI agents collaborate with each other, they need the ability to pay one another directly: one agent hiring another for a subtask, a compute agent billing a coordinator agent, or an IoT device paying a data feed. Agentic wallets turn agents into economic actors in a machine-to-machine payment network. Stablecoin rails on fast networks like Spark or Base enable these payments to settle in seconds at near-zero cost.
Subscription and Recurring Payments
An agent managing subscriptions can use programmable payments to automatically renew services, pay invoices, or top up balances when they fall below a threshold. The session key pattern is well-suited to this: the user authorizes a recurring payment policy once, and the agent executes it on schedule without further approval.
DeFi Portfolio Management
Agents can rebalance portfolios, compound yield, manage liquidation risk, and harvest rewards across DeFi protocols. The wallet's allowlist restricts which protocols the agent can interact with, and spending limits cap maximum exposure. This pattern is sometimes called DeFAI: the intersection of DeFi and AI agents.
Why It Matters
Agentic wallets represent a shift in who (or what) participates in the financial system. If AI agents can autonomously earn, spend, and transfer value, they become first-class economic participants alongside humans and businesses. This has several implications:
- API economies shift from subscription billing to per-request micropayments, reducing barriers for new developers and enabling more granular pricing
- Multi-agent systems can coordinate complex workflows (research, procurement, delivery) with embedded payments at each step, eliminating manual invoice processing
- Stablecoin payment rails like those built on Spark provide the speed and low fees that autonomous agents need for high-frequency, low-value transactions
For a deeper look at how AI agents and crypto payments intersect, see the research article on AI agents and crypto payments.
Risks and Considerations
Prompt Injection and Context Manipulation
AI agents that process untrusted input are vulnerable to prompt injection attacks. A malicious website, API response, or data feed could embed instructions that trick the agent into sending funds to an attacker's address. Agents relying on persistent memory are also vulnerable to "fake memory" attacks, where adversaries inject malicious context that alters future transaction decisions.
Policy enforcement at the wallet layer (not the agent layer) is critical. Even if the agent's reasoning is compromised, the smart contract or MPC co-signer should reject transactions that violate the policy envelope.
Liability and Legal Uncertainty
AI agents have no legal personhood under current law. They cannot own property, enter contracts, or bear liability. When an autonomous agent executes a harmful transaction, responsibility fragments across the user who configured the agent, the developer who built it, the model provider whose outputs drove the decision, and the wallet operator who facilitated signing.
Existing legal doctrines (negligence, product liability, vicarious liability) provide potential avenues for assigning fault, but autonomous decision-making complicates traditional tests of causation. Regulators and courts have not yet established clear frameworks for agentic finance.
Runaway Spending
An agent stuck in a loop, hallucinating objectives, or responding to manipulated inputs could drain its wallet rapidly. Robust agentic wallets implement multiple safeguards: hard spending caps that revert transactions exceeding limits, alert thresholds at 80% and 95% of budgets that notify operators, and emergency stop mechanisms that freeze the wallet if anomalous patterns are detected.
Key Compromise
Agents run in cloud environments, containers, or on edge devices: all of which present attack surfaces for side-channel and supply chain attacks. If an agent's key share is extracted, the attacker inherits whatever permissions that share grants. MPC architectures mitigate this by ensuring no single share is sufficient, but the security of the overall system depends on the independence and integrity of each share holder.
Regulatory Compliance
If an AI agent autonomously sends funds across borders, it may trigger KYC/AML obligations and travel rule requirements. It is unclear whether the agent, its operator, or the wallet provider is responsible for compliance. Jurisdictions are likely to classify agentic wallet operators as money transmitters or VASPs, adding licensing requirements to the infrastructure stack.
This glossary entry is for informational purposes only and does not constitute financial or investment advice. Always do your own research before using any protocol or technology.