Build on the control plane.

11/11 exposes a public governance API. Health and proof endpoints are open; the execute endpoint issues a signed authorization decision and requires an API key. Every response is Ed25519 signed and chained with SHA3-512 and BLAKE2b-512.

SDK · Live Verified

11/11 Execution Governance SDK

The 11/11 Execution Governance SDK has successfully completed live validation against the production Execution Governance control plane. It validates governance decisions before execution, generates execution evidence, verifies authorization artifacts, and produces cryptographically verifiable proof records for audit and compliance workflows.

CURRENT STATUS
LIVE VERIFIED
VERSION
v0.2.0-live-alpha
VERIFIED CAPABILITIES
  • Authorization Artifact Validation
  • Governance Decision Validation
  • Runtime Authorization Verification
  • Execution Receipt Generation
  • SHA3-512 Evidence Generation
  • BLAKE2b-512 Evidence Generation
  • Tenant Enforcement Validation
  • Governance Claim Verification

Verified Execution Path

01

Decision

02

Authorization Artifact

03

Execution

04

Evidence

05

Canonical Proof Ledger

Live Infrastructure Integration

The SDK is connected to the live 11/11 Execution Governance infrastructure.

From library to infrastructure

The SDK is no longer a standalone development library. It is now integrated into a functioning governance infrastructure capable of verifying authorization before execution and generating independently verifiable proof after execution.

Verify Before RuntimeEnforce During RuntimeProve After Runtime

Execution Governance™ · Governed Execution™ · EA-11™ · Execution Arithmetic™ · Execution Evidence State™ · Patent Pending

Endpoints

Base URL: control.11aiblockchain.com

Response format

Signed, hashed, typically in under 100ms.

Each decision returns the verdict, an Ed25519 authorization artifact, dual audit hashes, and the bound tenant. Both ALLOW and DENY are signed and persisted to the audit chain.

  • Submit identity, action, environment, and tenant
  • Receive a deterministic allow or deny verdict
  • Reproduce the result against the public proof endpoint
POST /v1/execute (authenticated: API key required)
# request
{
  "action": "payment.settle",
  "identity": "svc_42",
  "tenant_id": "t_8f21"
}
# response (signed)
{
  "decision": "ALLOW",
  "artifact": "ed25519:9b3a…c41",
  "sha3_512": "f4c1…7e2",
  "latency_ms": 41
}

Reference specifications

The protocol is published.