HiveBound · Patent Pending

Your inference calls are questions.
Ours arrive as contracts.

HiveBound is the pre-commitment envelope that wraps every inference call with declared identity, scoped intent, and bonded capital — before the model fires. Nine gates. Ed25519 signed. HAHS receipt. x402 settlement on Base.

Identity declared. Intent scoped. Capital bonded. The receipt is offline-verifiable forever. Not a log. An artifact.
Preliminary Ed25519 Signed x402 · Base · USDC Patent Pending

Inference is anonymous.
That is the problem.

Every inference call today is a question with no skin in the game. A prompt arrives, tokens fire, the output floats free. No identity. No accountability. No proof.

Standard inference today

Anonymous query

No declared identity. No authorized scope. No economic commitment. When an output is disputed — in a compliance audit, a legal proceeding, a regulatory review — there is no artifact. There is a log file. Logs are mutable. Logs do not travel with the output.

HiveBound inference

Signed contract

Every call carries a pre-commitment envelope. Who asked. What they were authorized to do. What capital they put at stake. Signed before the model fires. HAHS closes the receipt. x402 settles on Base. The artifact is offline-verifiable forever.

Six dimensions.
One envelope.

HiveBound is not a single feature. It is the assembly of six trust dimensions, each mapped to a layer of the call lifecycle.

Soul
Identity
AgentPassport
Ed25519 public key. Agent label. Tenant. Declared scopes. Signed and time-bounded before the call is made.
Mind
Intent
BondedIntent
What this agent is authorized to do with the output. Category. Target model. Provider. Token budget. Scope. Immutable after issue.
Power
Execution
Your inference provider
Any OpenAI-compatible endpoint. Fireworks. Together. OpenAI. The HiveBoundAdapter wraps it. Your provider does not change.
Reality
Proof
SHOD / HAHS Receipt
Ed25519 signed receipt. Corpus-committed. Tamper-evident. Offline-verifiable. DR5 catches corpus swaps. Forever.
Space
Settlement
x402 · USDC · Base
x402 payment rails on Base (8453). USDC only. 5bps treasury clip per call. Capital that was bonded is settled on-chain.
Time
Provenance
Chain of receipts
Every envelope links forward and backward. The full call chain is auditable — what was asked, by whom, under which corpus, in what order.

Nine gates.
All must pass before the model fires.

Gates 1–6 are the base SHOD stack. Gates 7–9 are HiveBound-specific pre-commitment checks. Ordered cheapest first. Stops at first failure.

1 ALLOWLIST Model and provider are on the approved list SHOD
2 RATE_LIMIT Agent calls per minute within configured ceiling SHOD
3 TOKEN_BUDGET max_tokens within authorized limit SHOD
4 SCOPE_CHECK Passport carries required scopes; intent category is authorized SHOD
5 EXPIRY Passport and intent have not expired SHOD
6 SIGNATURE Ed25519 envelope signature valid against passport public key SHOD
7 BOND_PRESENT Capital bond fields populated — amount, currency, chain HiveBound
8 BOND_SUFFICIENT Bond meets minimum threshold; currency is on the allowed list HiveBound
9 INTENT_MATCH Intent fields are complete and consistent with the passport HiveBound

Five steps.
One bonded inference call.

01
Issue envelope
Identity, intent, and bond assembled. RFC 8785 JCS canonicalized. Ed25519 signed. Envelope ID derived from SHA-256 digest.
02
Nine gates
BondValidator runs all nine gates in sequence. Cheapest first. Any failure halts the call — no model call, no charge.
03
Provider call
Request dispatched to any OpenAI-compatible endpoint. Envelope ID forwarded in header for provider-side correlation.
04
HAHS receipt
hivemorph closes the receipt. Output corpus-committed. Tamper-evident. DR5 signs the corpus reference. Offline-verifiable forever.
05
x402 settlement
Bonded capital settled via x402 on Base (8453). USDC. 5bps treasury clip. Settlement reference returned in response.

Drop in. Wrap any provider.

HiveBoundAdapter wraps any OpenAI-compatible endpoint. Your provider does not change. Your calls become contracts.

TypeScript · HiveBoundAdapter @hive/hivebound v1.0.0
import { HiveBoundAdapter, buildPassport } from '@hive/hivebound';

// Build agent passport from Ed25519 private key
const passport = buildPassport(PRIVATE_KEY, {
  agent_label: 'legal-agent-01',
  tenant_id:   'acme-corp',
  scopes:      ['inference', 'extraction'],
});

// Wrap any OpenAI-compatible provider
const adapter = new HiveBoundAdapter({
  provider_base_url: 'https://api.fireworks.ai/inference/v1',
  provider_api_key:  FIREWORKS_KEY,
  privateKeyHex:     PRIVATE_KEY,
  passport,
  bond_config: {
    amount_raw:   '1000',   // 0.001 USDC
    currency:     'USDC',
    chain:        'base',
    chain_id:     8453,
    treasury_bps: 5,
    x402_channel: null,
  },
  hivemorph_url: 'https://hivemorph.onrender.com',
});

// Every call is now a bonded, signed contract
const response = await adapter.chat({
  model:    'accounts/fireworks/models/llama-v3p1-70b-instruct',
  messages: [{ role: 'user', content: transcript }],
  max_tokens: 1024,
});

console.log(response.envelope_id);      // signed pre-commitment
console.log(response.hahs_receipt_id);  // corpus-committed receipt
console.log(response.settlement_tx);    // x402 on Base

When it goes wrong,
what can you prove?

Scenario Without HiveBound With HiveBound
Compliance audit — "what did the model say?" Log file. Mutable. No signature. Ed25519 receipt. Offline-verifiable. Tamper-evident.
Disputed output in litigation Nothing provable. Signed artifact. Corpus committed. Chain of custody intact.
Regulated enterprise sale — HIPAA, SOX, EU-AI Cannot attest to model provenance. Full provenance chain. Agent identity. Authorized scope. Capital bonded.
Agent acts on tampered corpus Undetectable. DR5 catches it. Detection rate 1.000 vs 0.000 across 500 trials.
Multi-agent chain — who called what? No attribution. Every envelope links forward and backward. Full chain auditable.

Speed from your provider.
Proof from Hive.

HiveBound is composable with any inference stack. Your calls keep flowing. They just arrive as contracts now.

View Signed Benchmarks Mint an Agent Capitolare
Patent Pending — Hive / TheHiveryIQ — All rights reserved