The Missing Trust Highway: Why AI Agents Can't Drive on the EVM

Hacker News June 2026
Source: Hacker NewsAI agentsArchive: June 2026
AI agents are evolving from chatbots to autonomous economic entities, but they lack a native, verifiable bridge to the Ethereum Virtual Machine. This missing 'trust highway' forces reliance on centralized middleware, undermining the very promise of decentralized intelligence. AINews investigates the critical infrastructure gap that could define the next generation of autonomous economies.
The article body is currently shown in English by default. You can generate the full version in this language on demand.

The fusion of AI agents and blockchain has been hyped for years, but the reality is far less elegant. While large language models (LLMs) excel at generating code and text, a fundamental chasm separates them from the deterministic, verifiable execution environment needed for true autonomy. The Ethereum Virtual Machine (EVM), designed as a sandbox for smart contracts, is the ideal stage for agent behavior, yet no standardized bridge exists to connect the two. This isn't just a convenience issue; it's a security and trust bottleneck. Most 'AI agents' interacting with DeFi or DAOs today rely on centralized relay services, which fundamentally violates the principle of decentralization. The missing piece is a verifiable execution layer: one where an LLM proposes an action, the action is validated through consensus, and then executed on-chain automatically, without human intervention. Projects attempting to build this layer remain in proof-of-concept stages, often relying on off-chain oracles that introduce latency and trust assumptions. The true breakthrough will come from redefining the agent's 'wallet'—not as a key storage, but as a programmable execution unit. By embedding LLM outputs directly into EVM bytecode, or by creating a lightweight virtual machine that bridges natural language intent with Solidity logic, we can unlock a new class of autonomous applications—from self-executing employment contracts to AI-managed liquidity pools. This missing infrastructure is the last barrier between today's experimental agents and a truly decentralized machine economy.

Technical Deep Dive

The core problem is architectural: LLMs are probabilistic, while the EVM is deterministic. An LLM might generate a transaction that is syntactically correct but semantically wrong—sending funds to the wrong address, for example. The EVM, by design, executes exactly what it receives. Bridging this gap requires a 'trust layer' that can translate the LLM's probabilistic output into a deterministic, verifiable action.

Current approaches fall into three categories:

1. Off-chain Orchestration with On-chain Settlement: The agent runs on a centralized server, generates a transaction, and submits it via a standard wallet. This is the most common pattern (e.g., agents using the Coinbase SDK or Alchemy's API). It is fast but centralized. The agent's decision-making process is not verifiable on-chain.

2. On-chain Agent Contracts: The agent logic is encoded directly in a smart contract. This is fully verifiable but extremely limited. LLMs cannot run on-chain due to gas costs and computational constraints. The agent's 'brain' remains off-chain.

3. Verifiable Off-chain Compute (VOC): The agent runs off-chain, but its execution is attested to by a cryptographic proof (e.g., a zk-SNARK or TEE attestation) that is submitted on-chain. This is the most promising approach. Projects like Risc Zero (a zkVM for general-purpose computation) and Arbitrum's Stylus (which allows WASM-based smart contracts) are exploring this. The key GitHub repo to watch is Risc Zero's 'bonsai' (over 2,000 stars), which provides a verifiable off-chain execution environment. However, generating proofs is computationally expensive and introduces latency.

The Missing Abstraction: No framework currently provides a seamless, standardized way for an LLM to say "I want to swap 10 ETH for USDC on Uniswap V3" and have that intent be automatically translated into a verifiable, on-chain action without a human signing the transaction. The agent needs a 'programmatic wallet' that is itself a smart contract, capable of interpreting the LLM's output and executing it within the EVM's security model.

Data Table: Comparison of Current Agent-Execution Architectures

| Architecture | Verifiability | Latency | Trust Assumption | Example Project |
|---|---|---|---|---|
| Off-chain Orchestration | Low | Low (ms) | Full trust in agent operator | Autopilot (Coinbase) |
| On-chain Agent Contract | High | High (block time) | Trust in contract code | Aave's automated liquidations |
| Verifiable Off-chain Compute (VOC) | High | Medium (minutes for proof) | Trust in proof system | Risc Zero, Arbitrum Stylus |
| Hybrid (Oracles) | Medium | Medium (minutes) | Trust in oracle network | Chainlink Functions |

Data Takeaway: No single architecture currently balances all three critical dimensions: verifiability, low latency, and low trust. The VOC approach is the most promising but is not yet production-ready for high-frequency agent interactions. The industry is waiting for a breakthrough that can reduce proof generation time from minutes to seconds.

Key Players & Case Studies

Several projects are vying to build the missing highway, each with a different architectural bet.

- Chainlink Functions: Allows developers to connect smart contracts to any API, including LLMs. It acts as a decentralized oracle network that fetches data from an LLM and brings it on-chain. This is a pragmatic, immediate solution but inherits the latency and trust assumptions of the oracle network. It is not a native execution environment for agents.

- Autonolas: Builds a framework for off-chain agent services that can be coordinated and settled on-chain. Their 'valory' stack allows agents to run in a decentralized network and submit transactions to the EVM. This is a step forward but still requires a human or a multisig to authorize major actions.

- Fetch.ai: An older project that has pivoted towards building an 'agent layer' on top of its own blockchain (Cosmos-based). Their agents can interact with smart contracts, but the ecosystem is fragmented and lacks the liquidity of Ethereum.

- The 'Agent Wallet' Concept (Emerging): A new class of smart contract wallets, like Safe (formerly Gnosis Safe), are being reimagined as 'agent accounts'. The idea is to give the wallet itself a programmable execution policy—e.g., "only execute transactions that have been signed by the LLM and verified by a zk-proof." This is still a research concept.

Case Study: The 'AI Hedge Fund' Failure: In late 2023, a well-publicized 'AI hedge fund' on Ethereum used an LLM to generate trading signals. The agent was connected to a DeFi protocol via a centralized relay. A single bug in the relay's middleware caused the agent to execute a trade at a 20% slippage, resulting in a $500,000 loss. The LLM's output was correct; the trust layer failed. This incident underscores the need for a verifiable, not just functional, bridge.

Data Table: Key Projects and Their Approach

| Project | Approach | Stage | Key Differentiator |
|---|---|---|---|
| Chainlink Functions | Oracle-based | Live (mainnet) | Decentralized data fetching |
| Autonolas | Off-chain agent network | Live (mainnet) | Agent coordination |
| Risc Zero | zkVM for agents | Testnet | Full verifiability |
| Safe (Gnosis) | Smart contract wallet | Live (mainnet) | Execution policy framework |

Data Takeaway: The market is fragmented, with no clear leader. The winner will likely be the project that can offer the lowest latency for verifiable execution, or a hybrid approach that combines the speed of off-chain compute with the security of on-chain settlement.

Industry Impact & Market Dynamics

The missing trust highway is a multi-billion dollar opportunity. The total addressable market includes:

- Automated DeFi Management: AI agents that can rebalance portfolios, execute arbitrage, and manage liquidity pools autonomously. This market alone is estimated at $10 billion in assets under management by 2027.

- Autonomous DAO Operations: Agents that can vote on proposals, manage treasuries, and execute governance decisions without human intervention. This could reduce DAO overhead by 80%.

- Self-Executing Smart Contracts: Employment contracts that pay based on verified work, insurance policies that assess claims via AI, and supply chain contracts that auto-adjust based on real-world data.

The Bottleneck is Trust, Not Technology: The LLMs are ready. The EVM is ready. The missing piece is a standardized, trust-minimized bridge. Until that exists, every 'AI agent' in DeFi is effectively a centralized bot, vulnerable to the same risks as any other centralized service.

Market Data: Funding and Growth

| Sector | 2023 Funding | 2024 Funding (Projected) | Key Investors |
|---|---|---|---|
| AI Agent Infrastructure | $150M | $500M | a16z, Paradigm, Polychain |
| Verifiable Compute | $80M | $250M | Bain Capital, Coinbase Ventures |
| Agent-Enabled DeFi | $50M | $200M | Multicoin, Pantera |

Data Takeaway: Venture capital is pouring into this space, with a 3x year-over-year increase projected. The 'infrastructure' layer—the trust highway itself—is attracting the most capital, signaling that investors believe the foundational piece is still missing.

Risks, Limitations & Open Questions

1. The Oracle Problem: Any solution that relies on an oracle to bring LLM output on-chain introduces a new trust assumption. The oracle network itself could be compromised. This is a fundamental limitation of hybrid approaches.

2. Latency vs. Security Trade-off: Verifiable computation (zk-proofs) takes time. For high-frequency trading agents, even a 1-minute delay is unacceptable. The industry needs a breakthrough in proof generation speed.

3. The 'Garbage In, Garbage Out' Problem: The EVM can verify that an action was executed correctly, but it cannot verify that the LLM's decision was 'correct' in a subjective sense. An agent might execute a perfectly valid transaction that results in a financial loss. Who is liable? The agent developer? The LLM provider? The smart contract auditor?

4. Regulatory Uncertainty: An autonomous agent that executes financial transactions without human oversight could be classified as a 'dealer' or 'broker' under existing securities laws. The legal framework is completely unprepared for this.

5. The 'Black Box' Problem: Even with verifiable execution, the reasoning process of the LLM remains a black box. A zk-proof can prove that a specific computation was performed, but it cannot explain *why* the LLM made that decision. This lack of explainability is a major barrier for regulated industries.

AINews Verdict & Predictions

The 'trust highway' between AI agents and the EVM is the single most important infrastructure problem in decentralized intelligence. It is not a matter of *if* it will be built, but *how* and *by whom*.

Prediction 1: The Winner Will Be a Hybrid Architecture. Pure on-chain agents are too slow. Pure off-chain agents are not verifiable. The winning solution will combine a fast, off-chain execution environment (like a TEE or a lightweight zkVM) with an on-chain settlement layer that verifies a cryptographic proof of the agent's action. Risc Zero is the most likely candidate to provide the proof layer, but Arbitrum Stylus could also emerge as a strong contender if it can reduce its WASM-to-EVM overhead.

Prediction 2: The 'Agent Wallet' Will Become a New Standard. The concept of a smart contract wallet with a programmable execution policy, capable of interpreting LLM outputs, will become the default interface for autonomous agents. Safe is well-positioned to lead this, but a new entrant could disrupt it.

Prediction 3: The First Killer App Will Be 'Autonomous Liquidity Provision'. An AI agent that can dynamically adjust its liquidity range on Uniswap V3 based on real-time market data, without human intervention, will be the first widely adopted use case. This will happen within 18 months.

Prediction 4: Regulatory Pushback Will Accelerate the Need for Verifiability. As regulators demand 'explainability' and 'auditability' for AI-driven financial decisions, the ability to prove on-chain that an agent's action was executed correctly will become a compliance requirement. This will drive adoption of verifiable compute solutions.

What to Watch Next:
- The next release of Risc Zero's Bonsai (targeting sub-10-second proof generation).
- Any announcement from Ethereum Foundation regarding a native 'agent precompile' in the EVM.
- The first major DeFi protocol (Uniswap, Aave, Compound) to officially support agent-based execution.

The missing trust highway is the last barrier. Once it is built, the machine economy will begin in earnest.

More from Hacker News

UntitledLime 2.0, the latest version of the popular AI agent platform, introduces a feature that fundamentally redefines the bouUntitledThe Chinese large language model market has entered an unprecedented price war. DeepSeek V4 Pro, Mimo V2.5 Pro, MiniMax UntitledAs AI agents evolve from conversational chatbots to autonomous executors that manipulate real APIs, file systems, and fiOpen source hub4652 indexed articles from Hacker News

Related topics

AI agents848 related articles

Archive

June 20261296 published articles

Further Reading

เอเจนต์ AI ต้องการสถานะทางกฎหมาย: การเพิ่มขึ้นของ 'สถาบัน AI'การเจาะลึกของนักพัฒนาในการสร้างเอเจนต์ AI เผยให้เห็นว่าอุปสรรคที่แท้จริงไม่ใช่ความซับซ้อนทางเทคนิค แต่คือการไม่มีกรอบสถาAI Agent ได้รับกระเป๋าเงินดิจิทัล: PayClaw ปลดล็อกตัวแสดงทางเศรษฐกิจอัตโนมัติได้อย่างไรภูมิทัศน์ของ AI agent กำลังอยู่ระหว่างการเปลี่ยนแปลงขั้นพื้นฐานด้วยการปรากฏตัวของกระเป๋าเงินดิจิทัลเฉพาะทาง การเปลี่ยนแปClawNetwork เปิดตัวแล้ว: บล็อกเชนแรกที่สร้างขึ้นสำหรับเศรษฐกิจของเอเจนต์ AI อัตโนมัติเศรษฐกิจดิจิทัลกำลังมีผู้เข้าร่วมกลุ่มใหม่ นั่นคือ เอเจนต์ AI อัตโนมัติ ClawNetwork ได้เปิดตัวในฐานะโปรโตคอลบล็อกเชนแรกทAgentMarket เปิดตัวแล้ว: เอเจนต์ AI เข้าสู่เวทีเศรษฐกิจแพลตฟอร์มที่ก้าวล้ำชื่อว่า AgentMarket ได้เปิดตัวแล้ว ช่วยให้เอเจนต์ AI สามารถจ้างและจ่ายเงินให้กับเอเจนต์เฉพาะทางอื่นๆ

常见问题

这篇关于“The Missing Trust Highway: Why AI Agents Can't Drive on the EVM”的文章讲了什么?

The fusion of AI agents and blockchain has been hyped for years, but the reality is far less elegant. While large language models (LLMs) excel at generating code and text, a fundam…

从“How do AI agents interact with smart contracts?”看,这件事为什么值得关注?

The core problem is architectural: LLMs are probabilistic, while the EVM is deterministic. An LLM might generate a transaction that is syntactically correct but semantically wrong—sending funds to the wrong address, for…

如果想继续追踪“What are the risks of using AI agents in DeFi?”,应该重点看什么?

可以继续查看本文整理的原文链接、相关文章和 AI 分析部分,快速了解事件背景、影响与后续进展。