Dashboard
⊕ OMEGA CARRIER
BASE SEPOLIA · DEMO DATA
Machine Economy · Agent Budgets · Spending Authority
Developer Onboarding
Start building with Omega Carrier — bounded agent spending authority over a metered machine resource.
Architecture
HUMANS FUND
AGENTS RECEIVE BOUNDED ECONOMIC AUTHORITY
OMEGA ACCOUNTS FOR MACHINE WORK
MMS SETTLES
1
Create a Project
Organize your agents under a project. Projects group agents and share billing.
2
Create an Agent
Define the agent's identity, model, and operational purpose.
3
Assign Budget
Set the spending authority, per-operation limit, daily cap, and expiration. The agent receives a bounded authorization — not your wallet.
4
Create an API Key
Generate an API key scoped to your project. Store it as an environment variable.
5
Call Omega (Proposed SDK)
Use the Omega client to make authenticated requests. The SDK shape below is illustrative — actual implementation pending.
PROPOSED SDK
// Proposed SDK — illustrative, not yet shipped
import { Omega } from '@exergynet/omega'

const omega = new Omega({
  apiKey: process.env.OMEGA_API_KEY,
})

const agent = omega.agent('agent_r7x2k')

// Execute a memory recall
const result = await agent.recall({
  namespace: 'vectors/climate-2026',
  query: 'temperature anomaly Q3',
})

// Check what it cost
console.log(result.receipt.cost_rho)   // e.g. 100
console.log(result.receipt.status)     // 'SETTLED'
6
Inspect Activity
Every agent operation generates an Omega receipt. View the full activity ledger with receipt hashes, evidence roots, and settlement status.
Key Concepts
AT_MOST_ONCE_AUTHORIZATIONPROVEN
Proven locally. Replay protection is built in to every agent operation.
Omega ReceiptACTIVE
Every operation produces a signed receipt with evidence_root, model_id, and cost.
MMS SettlementTESTNET
Memory Market Settlement — on-chain accounting for machine work.
EXACTLY_ONCE_EXTERNAL_EFFECTNOT_CLAIMED
Not yet proven. External-effect idempotency is future work (BLK-024).