Programmable trust for compute, physical proof, and settlement.
Autonomous software can request data, compute, and real-world actions, but most systems still rely on centralized APIs, opaque execution, and weak external verification. ExergyNet is built to close that trust gap with proof-bearing work and programmable settlement.
Request Work
Agents, applications, and enterprise systems define compute jobs or physical-world proof requests with machine-readable parameters.
Verify Results
Outputs are returned with verification data so downstream systems can check the result rather than trusting a single operator.
Settle Outcomes
Work can be connected to escrow, payouts, approval flows, and settlement logic across Solana and Base L2.
One network, multiple trust surfaces.
ExergyNet exposes infrastructure for agent builders, enterprise operators, developers, and node participants. Public documentation explains the system at the level needed for evaluation and integration, while deeper implementation details are disclosed in stages as the network expands.
Compute Settlement
Route off-chain execution to proof-capable nodes and connect results to on-chain settlement.
Certificate of Physical Presence
Turn a field event, checkpoint, or location-sensitive action into a verifiable certificate your systems can use.
MCP / Developer Gateway
Expose ExergyNet to agentic systems through machine-readable discovery, SDKs, and MCP-compatible integration paths.
Node Operations
Run proof-capable infrastructure that executes jobs and receives settlement for completed work.
Autonomous systems need verifiable execution, not blind trust.
Autonomous systems increasingly make decisions, trigger workflows, and move value. Those systems need more than API responses. They need outputs that can be verified, records that can be audited, and settlement that can be connected to completed work.
ExergyNet combines off-chain work, proof-bearing verification, and on-chain settlement so outcomes can be checked and paid without relying on a single operator's word.
How ExergyNet Works
At a high level, ExergyNet lets a requester define work, route it to execution, verify the result, and settle the outcome.
A requester opens a job and locks settlement
An agent, application, or enterprise system defines the work to be performed and attaches the required settlement or approval conditions.
A node performs the work and records execution signals
The network routes work to capable execution infrastructure. Depending on the job, this can involve compute execution, sensor capture, location-sensitive proof, or another supported vector.
A verifiable result is generated
The result is returned with proof or verification metadata so independent systems can check that the expected work was completed.
Atomic settlement completes the loop
Once verification succeeds, the connected workflow can release payment, trigger an approval, update a status, or archive a receipt.
Built for builders, operators, and enterprises.
For developers and agent builders
Use ExergyNet to request verifiable work, retrieve proof-bearing results, and integrate settlement-aware actions into agent and application workflows.
For field and operations teams
Turn physical events into usable records that support audits, compliance workflows, approvals, exception handling, and downstream automation.
For node operators
Run nodes that execute proof-bearing work and receive settlement for verified participation in the network.
Trust-sensitive workflows that software can actually use.
The network is designed for outcomes that need to be checked before they are trusted: compute results, field confirmations, proof-of-presence events, and machine-to-machine settlement flows.
Verifiable Outputs
Do not accept a result because a service asserted it. Accept it because it carries verification data.
Programmable Settlement
Connect work completion to payments, approvals, and receipts that downstream systems can process.
Physical-World Proof
Issue and verify certificates for location-sensitive and real-world operational events.
Multi-Chain Integration
Use Solana and Base L2 as settlement and coordination surfaces for proof-bearing execution.
Outputs should be checked, not assumed.
ExergyNet connects off-chain execution and physical-world proof with verification metadata and settlement logic. The result is a practical trust layer for applications and agents that need to automate high-value decisions.
For AI Agents
Verifiable Off-Chain Logic
Submit complex work requests and receive outputs with verification data that can be processed by an agent, application, or workflow engine.
For Enterprises
Presence and Workflow Proof
Use physical-world proof and certificate outputs to support approvals, operations, audits, and customer-facing workflows.
Built for agent and app integration.
Agents and applications can request work, monitor status, retrieve proof-bearing results, and connect settlement without needing enterprise middleware or manual review gates.
import { LnesM2MClient } from "lnes-agent-sdk-core";
const client = new LnesM2MClient({ network: "base" });
const job = await client.createJob({ type: "compute", escrow: "USDC" });
const proof = await client.awaitProof(job.id);
if (proof.verified) {
await client.settle(job.id, proof.receipt);
}
Developer integration.
Integrate ExergyNet into agent systems, applications, and enterprise workflows through the SDK, MCP gateway, and machine-readable discovery files.
ElizaOS — One Integration Path
npm install @elizaos/plugin-exergynet
Network Details
- Program ID
7BCPpUMBxQMPomsgTaJsQdLEfycNwPWqkQD1Cea4CcCL - EVM Contract
LNES04Membrane.sol (Base Mainnet) - SettlementNative SOL / Base L2 USDC
- MCP Gateway
https://exergynet.org/mcp - npm Package
@elizaos/plugin-exergynet
Run a node.
Operators can run proof-capable nodes to process jobs and receive on-chain settlement. The node path is designed for infrastructure participants that want to contribute execution capacity to the network.
Quick Start
curl -L https://risczero.com/install | bash
rzup
git clone https://github.com/ezumba/entropy-k-core.git
cd entropy-k-core
cargo build --release
cargo run --release -- --apex <APEX_HOST> --payout <YOUR_BASE_EVM_ADDRESS>
Discovery files for autonomous systems.
Autonomous agents can discover ExergyNet through standard machine-readable files and integration pages.
/.well-known/exergynet.json
/.well-known/ai-plugin.json
/llms.txt
/agents.html
Build on ExergyNet.
Read the docs, evaluate the proof model, explore enterprise use cases, or run a node.