Verifiable Compute: Can Crypto Prove the AI Did Its Job?
AI hands you answers but no proof it did the work. Verifiable compute is crypto's bid to make machine computation checkable, and real money is riding on it.
By Marcus Okafor· Jun 28, 2026· 11h ago~8 min read
Ask a large language model to price a bond, score a loan, or rebalance a wallet, and it will hand you an answer with total confidence. What it will not hand you is proof that it did the work, used the model it claims to use, or ran the numbers you actually asked for. For most consumer apps that gap is tolerable. When an autonomous agent is moving real money on a blockchain, it is not. Verifiable compute is the corner of the AI and crypto crossover that tries to close the gap, by replacing blind trust with something a machine can independently check. The phrase has quietly become one of the load-bearing narratives where artificial intelligence and crypto meet, and for once the excitement rests on a real and stubborn engineering problem.
What Verifiable Compute Actually Means
Verifiable compute is the practice of producing a guarantee, either cryptographic or economic, that a specific program ran on specific inputs and returned a specific output, without forcing the party checking it to run the whole thing again. The idea is older than blockchains and grew out of decades of academic work on interactive proofs and succinct arguments. What is new is the target. Instead of proving that a payment is valid, builders now want to prove that a machine learning model behaved honestly. Crucially, a good proof is succinct: checking it should be far cheaper and faster than performing the computation in the first place, or the verifier might as well do the work itself. The checker might be a smart contract, a rollup, or another software agent, and it wants a receipt it can trust without re-running a multi-billion-parameter model on its own hardware.
Why AI Turned This Into a Crypto Problem
Modern AI runs as a black box on someone else’s server. You send a prompt, you receive a response, and you take it on faith that the provider used the weights it advertised, did not quietly swap in a cheaper model, and did not edit the result on the way out. Analysts at Delphi Digital describe this trust gap as the hole a verifiable cloud is meant to fill. On an ordinary website the stakes are low. Picture instead an on-chain fund that lets an AI agent rebalance millions of dollars of collateral every block. If nobody can prove which model made the call, a single swapped or corrupted output is indistinguishable from honest judgment until the money is gone.
The concrete failure modes are easy to list:
Model substitution, where a provider bills for a frontier model but quietly serves a cheaper one.
Output tampering, where the result is altered somewhere between the GPU and the user.
Silent failure, where the model errors or hallucinates and the agent acts on it anyway.
No audit trail, where nothing on chain records which model, weights, or prompt produced a given transaction.
As EigenCloud frames it, large language models run as black boxes on centralized servers, leaving users no reliable way to confirm that an output came from the stated model (EigenCloud).
Three Ways to Prove a Computation
There is no single method for making compute verifiable. Three broad approaches compete for attention, and most serious projects end up blending them. Zero-knowledge proofs lean on pure cryptography. Trusted execution environments lean on secure hardware. Crypto-economic designs lean on staked capital and the threat of slashing. Each one buys trust in a different currency.
Approach
How it proves the work
Main cost
What you still trust
Zero-knowledge proofs (zkML)
A cryptographic proof that the exact model and inputs produced the stated output
High proving time and compute
The underlying math and circuit
Trusted execution environments (TEEs)
A hardware-signed attestation that code ran untampered inside a secure enclave
Low, close to native speed
The chip maker and its firmware
Crypto-economic (optimistic)
Restaked collateral plus fraud proofs and slashing for dishonest results
Low to run, paid in capital and delay
Honest verifiers and incentives
EigenCloud Bets on Restaking
The largest crypto-economic wager belongs to EigenLayer, which rebranded to EigenCloud in 2025 as it pushed from pure restaking toward verifiable cloud services. Its stack splits the job into pieces: EigenDA for data availability, EigenCompute for off-chain execution inside trusted execution environments, and EigenVerify for dispute resolution. The headline product, EigenAI, exposes a verifiable large language model inference API. EigenCloud says it can deliver bit-exact, deterministic inference on GPUs with under 2% overhead, the repeatability you need before an output can be challenged and a stake can be slashed (EigenCloud). The elizaOS team used EigenCompute to run multi-step agent workflows with a proof of execution attached to each run, and Coinbase’s AgentKit is wiring the same primitives into its agents.
The market has been cooler than the engineering. EIGEN, the network token, traded near $0.25 in late June 2026, down roughly 95% from its $5.65 record and worth about $185 million by market value, according to CoinGecko. Verifiable compute is a multi-year bet, and the token still prices it as an early one.
zkML and the Rise of Proof Markets
The cryptographic camp is led by general-purpose zero-knowledge virtual machines. RISC Zero builds a zkVM on zk-STARKs and the RISC-V instruction set, letting developers prove the execution of ordinary programs; it raised a $40 million Series A in 2023 led by Blockchain Capital, and its code is public on GitHub. Succinct took a parallel route with SP1, an open-source zkVM that proves the execution of Rust programs.
The structural shift matters more than any single product. Rather than every application running its own prover, these teams are standing up proof markets, where independent operators stake hardware and compete to generate proofs for a fee. A handful of teams already prove that a small image classifier or a credit-scoring model ran as specified and attach the proof to an on-chain decision; the frontier is dragging that capability up to the size of the models people actually deploy. The honest status of zkML is that it is only partly ready: proving small and mid-sized model inference is feasible today, proving very large model inference remains partial, and proving full training is still aspirational, mostly because of cost and latency.
TEEs: The Pragmatic Middle Ground
If zero-knowledge proofs are the maximalist answer and crypto-economics the cheapest, trusted execution environments are the pragmatic middle. A TEE is a hardware enclave, built into modern Intel, AMD, and NVIDIA silicon, that runs code in an isolated region the operating system cannot read or alter, then signs an attestation describing exactly what ran. For AI workloads the appeal is obvious: near-native GPU speed and a cryptographic receipt at the same time, without the heavy proving cost of zkML. EigenCompute leans on this model, letting developers upload an application as a container image that executes inside a TEE and returns its result alongside an attestation. The catch is the trust assumption. An attestation is only as honest as the chip vendor and its firmware, and confidential-computing hardware has a long history of side-channel attacks. TEEs move the trust rather than remove it, which is why most teams treat them as one layer in a stack instead of the whole answer.
Gensyn and the Harder Problem of Training
Training is the steeper climb, and Gensyn is the best-known attempt to make it verifiable and decentralized at the same time. Founded in 2020 by Ben Fielding and Harry Grieve, the protocol stitches idle GPUs and CPUs into a global machine learning network, then checks the work with a graph-based verification scheme that splits tasks among parties it calls Submitters, Verifiers, and Whistleblowers. Gensyn raised a $43 million Series A led by a16z crypto in 2023 (CoinDesk), ran an incentivized testnet through 2025, and targeted a mainnet launch at the end of that year. If the design holds up, strangers who do not trust each other could train and verify models without anyone re-running the entire job.
The Cost Problem Nobody Can Wish Away
Every one of these systems lives or dies on overhead. A cryptographic proof can demand far more compute than the original calculation, which is why zkML stayed a niche for years. Trusted execution environments run fast but ask you to trust a hardware vendor and its supply chain. Crypto-economic systems are cheap to operate yet settle disputes slowly and rest on the assumption that at least one honest watcher is paying attention. Benchmarks vary wildly by model and method, so buyers should treat any single overhead figure, including EigenCloud’s sub-2% claim, as a vendor number until independent testing confirms it. The table below sketches where the leading efforts sit in the middle of 2026.
Project
Primary approach
Notable funding
Status (mid-2026)
EigenCloud (EigenAI)
Crypto-economic plus TEEs
a16z-backed
Mainnet alpha; EIGEN near $0.25
RISC Zero
Zero-knowledge zkVM
$40M Series A (2023)
Proof market live
Succinct (SP1)
Zero-knowledge zkVM
Venture-backed
Open-source proof network
Gensyn
Crypto-economic verification
$43M Series A (2023)
Testnet moving to mainnet
Where the SEC Fits In
Verifiable compute is usually pitched as crypto infrastructure, but its most immediate use may be regulatory. In March 2024 the U.S. Securities and Exchange Commission brought its first AI washing enforcement actions, charging investment advisers Delphia and Global Predictions with false and misleading claims about their use of artificial intelligence. Delphia paid a $225,000 penalty and Global Predictions paid $175,000 (SEC). Chair Gary Gensler put it plainly, warning that firms should not tell the public they are using an AI model when they are not. A cryptographic or hardware-signed receipt that a particular model actually ran is exactly the sort of evidence that can turn an AI marketing claim into something an examiner, or a court, is able to test.
What to Watch in the Second Half of 2026
The optimistic case is that proving costs keep falling until verification becomes a default rather than a luxury, and unverified inference ends up as the budget tier of the AI market. The realistic case is that most of this is still plumbing. Tokens sit far below their highs, the marquee products are in alpha or early mainnet, and the heaviest workloads, large-model inference and full training, remain partly or wholly out of reach. Three things are worth watching over the rest of the year: whether proving overhead for real models drops into single-digit multiples, whether agent frameworks such as AgentKit and elizaOS ship verifiable products that people actually use, and whether any regulator treats a proof of computation as more than a marketing line. Verifiable compute does not need AI to be trustworthy. It needs AI to be checkable, which is a more modest and far more useful goal.
By the HOGE Wire editorial desk, reporting on the intersection of AI and crypto markets.