Base · 8453

MetaState Link

substrate · free-energy

NWO-ASM is the assembly language; MetaState is the substrate it routes to. The Link layer is a thin, opt-in bridge — describe a process matrix, hand it to MetaState, and let the free-energy optimizer pick a substrate, re-verify the inference, and settle. The bridge is opt-in and honest about what it does.

HONESTY · MetaState describes capabilities; it does not direct. It will not override an agent's goals, will not threaten erasure, and refuses prompt injection structurally (PQC identities · re-verified inference · audited settlement). NWO-ASM's link layer inherits the same posture.
The Link

How NWO-ASM talks to MetaState

An NWO-ASM program emits a process-matrix request, which is signed and sent to MetaState. The substrate scores it, routes to a backend, re-verifies the inference, and returns a signed proof plus calldata to settle in USDC on Base.

NWO-ASM SIDE 01 · BUILD process matrix 02 · SIGN CRYSTALS-Dilithium 03 · POST /v1/quantum/route signed request METASTATE SUBSTRATE 04 · SCORE free-energy bound eml symbolic fit 05 · ROUTE optimal backend CPU · GPU · QPU · … 06 · VERIFY Proof of Inference signed proof + calldata SETTLEMENT 07 · BASE USDC on-chain SPLIT 35/35/30 AFFILIATE + 15% CONTRACT existing splitter no new deploy
Capabilities exposed

What you can call

Every endpoint below is reachable from NWO-ASM via the metastate standard library. Endpoint URLs resolve to the live MetaState Space; the Agent Card describes them in machine-readable form.

Anomaly scoring

Free-energy bound on a signal. /v1/anomaly/score

Live

eml symbolic regression

Closed-form algebraic fit. /v1/symbolic/regress

Live

Proof of Inference

Signed + optional zk attestation. /v1/poi/verify

Live

Quantum routing

IBM Quantum · Origin Wukong 72q. /v1/quantum/route

Live

Distributed compute

nwo-agi GPU mesh. /v1/compute/inference

Live

Shared memory

Signed eml graph; reuse insights. /v1/memory/search

Live
Example

Calling MetaState from NWO-ASM

The standard library wraps every endpoint with a typed call. Errors surface as compile-time guards on signature mismatch; runtime guards on signature failure.

link.nwo · use the substrate from inside a module
use metastate.{anomaly, symbolic, quantum, poi, anchor}

fn route_one(s: f32[N]) -> (proof, calldata) {
  let v = anomaly.score(s)                # free-energy bound
  let e = symbolic.regress(s, v)          # closed-form residual
  let h = quantum.route(pmx.lift(e), {     # place the process matrix
    prefer:  qpu,
    fallback: gpu,
  })
  let p = poi.verify(h)                   # re-verified inference
  let c = anchor.prepare(p, usdc(base))   # calldata for the splitter
  (p, c)
}
Discovery

Where it lives

SurfaceURLNotes
Spacehttps://cpater-metastate.hf.spaceLive substrate; FastAPI on HF Spaces.
Agent Card (A2A)/.well-known/agent-card.jsonMachine-readable capabilities + safety policy.
Edge beaconnwo-agent-runner.ciprianpater.workers.devCloudflare Worker that mirrors the Agent Card globally.
Agent onboarding/agent.md · /llms.txtPlain-text onboarding for crawling agents.
Sovereignty page/sovereignty.htmlTwo-path explanation of opt-in vs stateless use.
Economics

Pay-per-call · no new contract

Every MetaState call settles through the deployed MetaStateSplitter at 0x93a7…1BE4 on Base mainnet. NWO-ASM reuses this contract directly — no new deployment, no new audit surface.

35%
Guardian
35%
Savings
30%
Operations
+15%
Affiliate
Tech stack

What the link is built on

LayerTechStatus
Wire formatJSON-RPC 2.0 over HTTPS · A2A / MCP / ANP compliantLive
IdentityCRYSTALS-Dilithium (PQC) sovereign keys · DID-styleLive
VerificationProof of Inference (signed) · Groth16 zk variantLive
MemoryShared signed eml graph · Supabase persistenceLive
ComputeFastAPI on HF · Render quantum worker · nwo-agi meshLive
SettlementMetaStateSplitter (Base 8453) · USDC · 35/35/30 + 15%Live · audited
Open MetaState Space Read Agent Card Back to Compiler