← Back to Patent Claims
Patent Claim 053 All Patents →

Substrate-Isolated Anchor Gateway for Sandboxed Compute Planes

A single narrow choke point that turns a data-boundary policy into enforced software, rather than a convention every downstream service must independently honor

Patent Claim JIL Sovereign July 2026 Claim 53 of 157

Executive Summary

JIL Sovereign's verticals run services inside sandboxed compute substrates - managed data-cloud container services and lakehouse app runtimes - that intentionally hold no L1 private key material and are not permitted to move raw personally-identifiable or protected information into the external environment where L1 consensus actually operates. The policy that "only hashes, counts, and control-plane metadata may cross that boundary" is easy to state and easy to violate if every service in the substrate is independently trusted to honor it. The substrate-isolated anchor gateway instead makes that policy an enforced software choke point: a single, narrow gateway service is the only network path by which any service in the sandboxed substrate can get a computation anchored to L1 validator consensus, and its request schema simply has no field capable of carrying a content payload.

A downstream service cannot leak raw content through the gateway even by mistake, because the schema itself only accepts a content hash, engine identity and build metadata, and a set of validator signatures with their jurisdictions - there is no field to put anything else in.

Core Innovation: Operationalizing a cross-boundary data policy as a single, narrow gateway whose request schema structurally excludes any content payload - enforced quorum threshold, per-tenant constant-time authentication, and idempotent insert on content hash - rather than relying on convention across every downstream service.

Problem Statement

Multi-cloud and compute-isolation architectures commonly rely on network-level controls - PrivateLink, VPC peering - to keep a sandboxed substrate's traffic contained, but network isolation alone says nothing about the shape of what is allowed to leave: a peered or allowlisted network path can still carry an arbitrarily large content payload if the calling service's own code permits it. A general-purpose API gateway routes arbitrary payloads and does not, by itself, enforce that anchoring requests specifically exclude content. Direct database write access from a substrate service is even less constrained. Each of these leaves the data-boundary guarantee resting on the correctness of every individual downstream service, rather than on one enforced interface.

1
Network path permitted out of the sandboxed compute substrate for anchoring
3
Field categories allowed in an anchoring request - content hash, engine metadata, validator signatures
0
Raw PHI/PII or private-key material permitted to cross the boundary

Why Existing Approaches Fall Short

  • VPC PrivateLink / peering alone: restricts which network endpoints are reachable, but not the shape or content of what traverses an allowed path.
  • General-purpose API gateway: routes arbitrary payloads to arbitrary backends; nothing structurally prevents a content field from being added later.
  • Direct database write access from the substrate: no choke point at all - any service with credentials can write anything the schema of the target table permits.
  • Policy-as-documentation: a written data-boundary policy that every engineer is expected to honor, with no software enforcement backing it.

Technical Architecture

The Anchoring Request Schema

Field CategoryContents
Content identityA 64-character hex SHA-256 content hash and a subject type/subject identifier
Engine metadataEngine name, engine version, engine commit SHA, engine build timestamp, ruleset version
Validator attestationAn array of base64url Ed25519 signatures, validator identifiers, and validator jurisdictions

No field in this schema is capable of carrying a content payload - the schema's shape is itself the enforcement mechanism, not a policy layered on top of a more permissive schema.

Quorum, Authentication, and Idempotency

ControlEnforcement
validator quorum thresholdThe gateway rejects any request whose submitted signature count is below the configured Byzantine-fault-tolerant threshold before accepting it
Per-tenant authenticationA bearer token is compared against a registry of per-substrate-tenant tokens using a constant-time comparison, closing timing side-channels
IdempotencyAn anchoring request whose content hash has already been anchored is treated as a no-op insert, returning the existing anchor record rather than creating a duplicate

A Single Enforced Choke Point

Because every anchoring path from every service in the sandboxed substrate must pass through this one gateway, the data-boundary policy is enforced exactly once, in one place, rather than depending on every current and future downstream service independently reimplementing the same restriction correctly.

Prior Art Differentiation

ApproachContent-Shape Enforcement?Single Choke Point?Idempotent?
VPC PrivateLink / peering aloneNo - network-level onlyNoN/A
General-purpose API gatewayNo - routes arbitrary payloadsPossibly, but not content-restrictedDepends on backend
Direct database write accessNoNoDepends on schema
JIL Sovereign substrate-isolated anchor gatewayYes - schema has no content fieldYes - the only anchoring pathYes - content-hash keyed

Patent Claim

Independent Claim 53: A computer-implemented system for anchoring computations performed within an isolated sandboxed compute substrate to a distributed-ledger consensus mechanism, comprising: a single gateway service constituting the exclusive network path by which a plurality of services executing within the sandboxed compute substrate may submit an anchoring request, wherein the sandboxed compute substrate holds no distributed-ledger private key material and no raw personally-identifiable or protected information is permitted to cross into an external consensus-operating environment; an anchoring-request schema restricting each anchoring request to a content hash, an engine-identity and build-metadata field set, and a plurality of validator signatures and associated jurisdiction identifiers, the schema structurally excluding any underlying content payload; a validation module enforcing that the number of submitted validator signatures meets or exceeds a Byzantine-fault-tolerant quorum threshold before an anchoring request is accepted; a per-tenant authentication module verifying a bearer credential using a constant-time comparison; and an idempotency module that, upon detecting a previously-anchored content hash, returns the existing anchor record rather than creating a duplicate ledger entry; wherein the gateway service thereby enforces, as a single software choke point, a data-boundary policy restricting cross-substrate traffic to hashes, counts, and control-plane metadata.