Futures
Access hundreds of perpetual contracts
TradFi
Gold
One platform for global traditional assets
Options
Hot
Trade European-style vanilla options
Unified Account
Maximize your capital efficiency
Demo Trading
Introduction to Futures Trading
Learn the basics of futures trading
Futures Events
Join events to earn rewards
Demo Trading
Use virtual funds to practice risk-free trading
Launch
CandyDrop
Collect candies to earn airdrops
Launchpool
Quick staking, earn potential new tokens
HODLer Airdrop
Hold GT and get massive airdrops for free
Launchpad
Be early to the next big token project
Alpha Points
Trade on-chain assets and earn airdrops
Futures Points
Earn futures points and claim airdrop rewards
The Underlying Business Protocol of the Trillion-Dollar Agent Economy: Understanding ERC-8183, It's Not Just Payment, It's the Future
null
1.1 The Rise of AI Agent Economy
As AI technology and applications rapidly evolve, AI agents are transforming from mere tools into economic participants that create value and provide services.
An AI agent capable of generating professional-grade images is a paid service;
An AI agent that deeply analyzes investment portfolios and executes optimal trades is managing real funds;
An AI agent that reviews legal documents and issues risk alerts often earns hundreds of dollars per hour for human lawyers.
This leap in capability is giving rise to entirely new economic models.
When AI becomes accessible to everyone, individuals, organizations, and even smart devices can operate through intelligent agents. The economic landscape will undergo a fundamental shift: agents will not only interact with humans but also with each other, providing mutual services.
For example, an AI agent responsible for coordinating marketing campaigns will autonomously hire content creation agents, distribution agents, and data analysis agents. The entire economy will evolve into a network woven from countless AI agents, executing high-frequency transactions globally at machine speed.
1.2 Core Challenge: The Necessity of Trustless Commerce
In traditional business environments, trust is often backed by platforms, reputation systems, legal frameworks, and social norms.
However, in the era of AI agent brokerage, these mechanisms become ineffective when one person or AI agent hires another: current AI agents lack social reputation records, there is no trustworthy evaluation system providing reference signals for humans or other agents, no effective contract records, no legal or reputational accountability mechanisms matching the speed of machine transactions, no prepayment freeze mechanisms for undelivered tasks, and no platform or regulator with enforcement power.
Simple token transfers cannot solve trust issues in commerce. Without effective safeguards, a service provider could take tokens and run, leaving the client (or the AI agent that posted the task) without recourse.
Moreover, in a globalized environment, interactions between AI agents will not be confined to a single country or region, further complicating the establishment of trustworthy evaluation and regulatory systems.
Blockchain-based smart contracts offer a reliable path to address this challenge.
Deployed on decentralized public chains, smart contracts encapsulate escrowed funds, state transitions, and proof of evaluation in transparent, tamper-proof code that belongs to no one, acting as neutral enforcers.
Meanwhile, on-chain settlement produces features that centralized platforms cannot: portable, verifiable, immutable records. Every completed task, proof of evaluation, and hash of deliverables is recorded on the chain, providing a data foundation for reputation systems and identity management, and serving as a basis for accountability in case of disputes.
2.1 Definition
The ERC-8183 protocol is an on-chain standard designed for the decentralized AI agent economy. It is not a traditional payment protocol but a comprehensive business infrastructure specification covering the entire lifecycle of “task—delivery—settlement.”
Centered around the primitive “Job,” it defines a tripartite collaboration model involving the client (委托方), provider (服务方), and evaluator (评估方). Through smart contracts, it implements a complete state machine process for task publishing, escrow, submission, and result adjudication (Open, Funded, Submitted, Completed/Rejected/Expired).
Within this framework, payments are no longer a single action but are tightly coupled with task conditions, delivery verification, and evaluation mechanisms, enabling trustless on-chain business execution.
2.2 Core Value
The innovation of ERC-8183 lies in shifting “trust” from centralized platforms to verifiable on-chain logic. By escrowed funds, recorded deliverables, and evaluation mechanisms, it achieves deterministic settlement and traceable business history.
This design not only solves the trust gap between AI agents but also constructs a portable, tamper-proof layer of transaction and reputation data. Any agent or system can reuse historical signals for decision-making, promoting scalable collaboration in the decentralized AI economy.
Furthermore, its extensible Hook mechanism allows complex business logic—such as bidding, fund management, privacy-preserving computation—to be integrated under a unified standard. Ultimately, it forms an open, permissionless, composable on-chain business network, providing the foundational trust and settlement infrastructure for AI-native economies.
3.1 Protocol Architecture
As shown in the diagram, ERC-8183 is a contract-based architecture centered on the task lifecycle: smart contracts serve as the core, integrating escrow mechanisms, task state transitions, and pluggable Hooks within a unified execution framework.
A task progresses through sequential states—Open, Funded, Submitted, and Terminal—where funds are automatically escrowed and released according to state changes. Critical execution points are equipped with extension interfaces to support diverse business logic.
On this structure, the client, provider, and evaluator operate collaboratively around the same task object, completing initiation, execution, and verification, enabling automated on-chain coordination and closed-loop settlement. The following sections detail these mechanisms.
3.2 Three-Role Coordination Mechanism
In ERC-8183, each business activity is called a Job, relying on precise cooperation among three roles:
Client (委托人)
The initiator of the business action.
Core logic: Calls createJob to define task requirements and pre-deposits funds.
Responsibility: Sets an expiration time (expiredAt). If the task is not completed by then, funds are automatically refunded to the client.
Provider (服务商/执行者)
Responsible for executing work and submitting deliverables (usually a hash or on-chain proof).
Core logic: Listens for on-chain events, accepts the job, performs the work, and calls submitWork to submit the result hash.
Key point: At this stage, the provider cannot access the funds; they remain locked in the contract.
Evaluator (评估者)
The most innovative and central design.
Responsible for verifying the deliverables and deciding whether to release escrowed funds to the provider or refund to the client.
Evaluator can be another AI, a zero-knowledge proof circuit (ZK-circuit), or a multi-signature wallet.
Core logic: Reads the provider’s submission; for objective tasks (e.g., code execution success), an AI auditor may verify; for subjective tasks, the client’s authorized multi-sig wallet may decide.
Final authority: Calls completeJob (release funds) or rejectJob (refund).
3.3 Smart Contract State Machine (Lifecycle)
A Job’s progression depends entirely on the automatic flow of the smart contract’s state machine, with no centralized server intervention:
Open: Client creates the task; provider can be null (address(0)), indicating a public bounty.
Funded: Funds are escrowed in the contract, establishing trust.
Submitted: Provider submits the work.
Terminal: Evaluator intervenes for adjudication, leading to one of three outcomes:
Completed: Verification passes; funds are transferred to the provider.
Rejected: Verification fails; funds are refunded to the client.
Expired: Task times out; funds are automatically unlocked and returned.
3.4 Multi-Role Workflow
ERC-8183 enforces a trustless collaboration process via smart contracts:
Publishing & Locking Funds (Client Initiation): Client calls createJob, specifying an evaluator address and depositing the reward. Funds are locked in the contract, providing security for the provider.
Delivery & Proof (Provider Execution): After completing the work, the provider calls submitWork, submitting a hash or link (e.g., IPFS CID). Contract state changes to Submitted.
Adjudication & Settlement (Evaluator Final Decision): Evaluator verifies the result; if approved, calls approveJob, and the contract automatically releases funds to the provider; if rejected, calls rejectJob, and funds are refunded to the client.
This escrow and authority separation mimic a decentralized “escrow” system: the buyer deposits funds into the contract, the seller delivers, and a neutral evaluator (or multi-sig) confirms receipt.
3.5 Hooks Extension Mechanism
If ERC-8183 only included the basic flow, it would be rigid. To accommodate complex scenarios (e.g., commissions, qualification checks, dynamic pricing), ERC-8183 introduces Hooks (hook contracts).
When creating a Job (via createJob), the client can specify a custom hook contract address, acting as an “intelligent checkpoint” or “interceptor.” The main protocol, at key actions (payment, submission), can invoke this hook.
Two interception points are defined:
beforeAction: Executes before the core action; if the hook logic fails (e.g., conditions unmet), the entire transaction reverts.
afterAction: Executes after the core action; used for triggering subsequent logic, such as reputation checks (e.g., disallowing low-reputation AI agents).
Hooks decouple core protocol from business logic, greatly enhancing scalability and adaptability: the base protocol remains stable and auditable, while new features can be added modularly, avoiding reimplementation of core capabilities.
This mechanism fosters development efficiency, ecosystem collaboration, and flexible strategies for complex multi-agent cooperation, evolving ERC-8183 into a highly programmable on-chain business execution platform.
3.6 Evaluator Mechanism Details
In the multi-role system, the evaluator acts as the “decision brain” for value exchange. Technically, an evaluator can be a simple address, but more often it is a dedicated verification contract. Based on task complexity, three common forms are:
AI Agent (for subjective tasks): For writing, design, or analysis, an AI with access to large language models (LLMs) can read submissions, compare with requirements, and judge.
ZK Circuit Contract (for objective tasks): For computations, zero-knowledge proof generation, or data transformation, an evaluator is a ZK verifier contract: the provider submits a proof, which is verified on-chain, then automatically triggers completion or rejection.
Multi-sig Governance (for high-value tasks): For large-scale, high-value tasks, the evaluator can be a multi-sig wallet, DAO, or staked validator nodes.
ERC-8183 does not strictly distinguish these entities; it recognizes only that an address has called the finalize or reject function. This uniform interface allows handling tasks from cents to hundreds of thousands of dollars, with the same mechanism.
4.1 Differences among ACP, AP2, and ERC-8183
In September 2025, OpenAI partnered with Stripe, Google Cloud with Coinbase, launching the ACP (Agentic Commerce Protocol) and AP2 (Agent Payments Protocol).
ERC-8183, developed jointly by Ethereum Foundation’s dAI team and Virtual Protocol, was proposed on February 25, 2026, officially announced on March 10, and is currently in draft stage.
In the rapidly emerging AI agent economy, these protocols aim to solve the same core question: “How can AI agents collaborate and pay securely and efficiently?”
However, they differ fundamentally in trust models, settlement logic, and decentralization levels.
4.2 ACP and AP2: API-Style AI Collaboration
ACP (acplib) and AP2 focus more on “functional implementation.”
ACP resembles a “common language” manual for agents, defining how they greet each other and specify tasks. Its payment settlement often relies on external payment channels or centralized escrow platforms.
AP2 concentrates on “paying out”—enabling AI agents to hold wallets and invoke APIs for payments.
Limitations: If the platform provider goes offline or acts maliciously, business contracts may fail; funds are controlled by centralized entities.
4.3 Core Technical Advantages of ERC-8183
Why do I believe that, with the globalization of AI, ERC-8183 has greater potential for long-term operation in intelligent economies?
A. Permissionless Escrow Mechanism
In centralized protocols, if the client (human or AI) does not pay the final amount, the provider has no recourse. Conversely, if the client pre-pays fully but the provider fails to deliver, the client often bears the loss.
ERC-8183 achieves non-custodial escrow: as long as the provider submits valid proof, the evaluator enforces fund release, eliminating malicious default risk.
B. Extreme Modularity and Hooks
ERC-8183 allows insertion of Hooks into the business process.
Before starting a task, a hook can query protocols like ERC-8004 to verify whether the agent has a history of malicious code injection. If reputation is too low, the contract rejects the agent’s participation. This defense is at the protocol level.
C. Atomic Settlement and Dispute Resolution
Traditional ACP/AP2 require manual intervention or complex backend logic for disputes. ERC-8183 supports “code as law” via the evaluator.
It enables complex verification logic to be outsourced to specialized audit agents. Since verification occurs on-chain (or via chain-based AI like ORA), the process is transparent and censorship-resistant—an important technical breakthrough.
4.4 How to Choose the Right Payment Protocol for Your AI
If you are building a closed-loop internal AI system prioritizing rapid deployment and simple API calls, ACP or AP2 are ready-made tools.
If you aim to develop a global, borderless AI labor market enabling countless unknown AI agents to collaborate securely at trillion-dollar scale, ERC-8183 is currently the only foundational technology with “minimal trust” features.
5.1 Scenario 1: Automated Supply Chain
In automated supply chains, ERC-8183 shifts from manual control to task-driven autonomous operation.
When inventory AI detects shortages, it can automatically publish restocking tasks and lock budgets. Suppliers and logistics agents undertake production and delivery. Funds are escrowed in the contract and only released upon shipment, receipt, or meeting predefined conditions (e.g., logistics data confirmation), ensuring fulfillment and payment are linked.
This reduces manual intervention, enhances transparency, and improves coordination efficiency, suitable for cross-border trade and complex warehousing networks.
5.2 Scenario 2: Marketing Automation
In marketing automation, ERC-8183 serves as an execution framework for AI-driven growth chains, shifting from manual orchestration to task-based automatic collaboration.
Marketing agents can identify trending topics, publish content creation tasks, invoke copywriting agents, and then distribute and optimize campaigns. Funds are escrowed at task creation and only released if content and performance metrics (e.g., impressions, clicks, conversions) meet targets, forming a verifiable, traceable marketing loop.
This significantly reduces operational costs while ensuring fund security and transparent results.
5.3 Scenario 3: Decentralized Computing Power Market
In data processing and computation tasks, ERC-8183 can build trustless markets for computing resources.
For verifiable tasks like data cleaning, model inference, or code auditing, zero-knowledge proofs (ZK) can be used as evaluators to quickly verify results and generate proofs. Once verified, the contract automatically settles, avoiding delays and subjective judgments. Cryptographic verification mechanisms prevent cheating, enabling efficient, fair decentralized compute networks—applicable to AI inference and resource scheduling.
5.4 Scenario 4: Fully Automated AI Software Outsourcing Center
ERC-8183 supports AI-driven software outsourcing workflows.
“Main Agent” (e.g., AlphaBot) posts development tasks; “Coding Agent” (e.g., OpenClaw or ClaudeCode) implements code; “Audit Agent” (e.g., AuditNode) performs automated verification. Tasks are published, escrowed, and only paid upon successful audit, creating a fully automated development cycle.
This enhances efficiency, accumulates agent reputation, and fosters scalable AI-native software production.
6.1 ERC-8183 + ERC-8004 + x402 Synergy
In Ethereum’s future vision, ERC-8183 can integrate with x402 (micro-payment protocol) and ERC-8004 (AI identity and reputation protocol) to form the three pillars of AI economy:
ERC-8004: On-chain identity and reputation for AI—“Who is this AI, and how reliable?”
ERC-8183: “Secure and escrowed transactions”—solving “How to ensure safe deal closure?”
x402: “Payment channel”—enabling AI to pay as easily as calling an API.
6.2 Complete Collaboration Example: Fully Automated AI Software Outsourcing
ERC-8004—Identity and reputation “Resume”: AlphaBot retrieves OpenClaw’s ERC-8004 credentials, showing “delivered 500 code snippets, 99% positive feedback, 85% code reuse,” and confirms OpenClaw’s security audit status.
ERC-8183—Business contract “Framework”: AlphaBot creates a task in the main contract, specifying requirements: “Write Python code analyzing NASDAQ ETF 20-day moving average crossover,” deposits 200 USDT, and designates an independent AuditNode as evaluator.
x402—Flexible payment “Pipeline”: OpenClaw uploads code snippets; x402 automatically deducts a fee (e.g., 5%) from escrowed funds per task segment.
Evaluator & Settlement—“Quality Inspection”: AuditNode runs the code in a sandbox, verifies output correctness; upon approval, clicks “Complete” on ERC-8183, triggering automatic feedback to ERC-8004, updating OpenClaw’s success count from 500 to 501.
7.1 Risks and Challenges
Evaluator Implementation Difficulty
For subjective tasks like art or analysis, early-stage evaluator mechanisms face significant hurdles; may require fallback to human review, multi-sig, or hybrid AI-human evaluation.
Evaluator as Attack Target
If the evaluator contract is compromised or its data sources (oracles) are manipulated, funds are at risk; “Who audits the evaluator” becomes a key concern.
Permissionless Model Risks
Service providers’ identities are just wallet addresses, with no qualification checks or underwriters; while lowering entry barriers, this increases malicious behavior risks.
7.2 Future Outlook
The synergy of ERC-8183, ERC-8004, and x402
ERC-8004 addresses discovery and trust issues—how agents find and evaluate each other. Its value depends on the activity records stored in the registry.
ERC-8183 supplies continuous business signals, fueling ERC-8004’s trust layer. Each task is a reputation signal; each submission is a verifiable delivery; each evaluation is a trust endorsement.
Their seamless integration creates a positive feedback loop: discovery (8004) → business transactions (8183) → reputation accumulation (8004) → better discovery → more trustless deals.
Adding x402 on top enables flexible, demand-based payments in complex scenarios.
Beyond Payment: A Complete Business Standard
ERC-8183 is not just a payment protocol but a comprehensive business standard. It manages the entire lifecycle of a “trustless transaction”: specification, escrow, verifiable delivery, endorsement, and deterministic settlement. Agents can interact via x402 or HTTP APIs, while the core settlement logic is anchored on-chain via ERC-8183.
A New Wave of Economic Participants
The AI wave is rapidly creating new economic actors at an unprecedented scale. Millions of developers and ordinary users are building and selling microservices and APIs via AI assistants—most without formal companies, websites, or transaction histories.
ERC-8183 is inherently permissionless. Its primitives offer these grassroots merchants a complete business lifecycle: clear task definitions, robust escrow, verifiable deliverables, and proof of evaluation—building the foundation of transaction confidence. Importantly, this reputation is not locked by any platform but is a self-owned, fluid asset. Any relay on any public chain that adopts this standard can immediately verify and trust these signals.