Proof Lab
StartEcosystem
Explore (579)Live Systems (52)Pricing
Log InGet API Key✓ Verify It Yourself
H33-74 / Architecture

Start Without a Chain

Related · tier-1 reading. For what a portable artifact actually is, see Portable Artifact.

Most architectures force the chain decision upfront. H33-74 does not. You can produce verifiable evidence before you have picked Bitcoin, Ethereum, Solana, Polygon, or anything else.

When a team starts building tokenization, AI governance, or a compliance system, the first question is almost always: which chain. The answer determines smart-contract language, tooling, custody integrations, gas economics, validator assumptions, and finality model. Wrong answer two years in is an expensive answer.

H33-74 inverts that. The proof comes first. The chain is a later decision, or no decision at all.

Definition. H33-74 is the portable 74-byte post-quantum proof primitive — a 32-byte on-chain commitment plus a 42-byte off-chain receipt, signed under three independent NIST families (ML-DSA, FALCON, SLH-DSA). The proof and its verification come from that cryptography, which is why you can start producing evidence before any chain exists in your architecture. A blockchain is one interchangeable anchoring substrate for the commitment — never the source of the proof or the trust.
The receipt exists. Anchoring is a separate decision. An H33-74 receipt commits to a computation result and signs it under three post-quantum families. None of that requires a chain. The chain only stores an anchor pointing to a receipt that already exists.

What this means operationally

You can:

Why this matters

The reason most architectures look the way they do is that traditional blockchain systems make the chain the place where evidence lives. If the chain is the storage layer, you cannot start without picking the storage layer.

H33-74 separates the two. The 74-byte receipt is the evidence. The chain is one of several optional storage and notarization surfaces. You pick the storage surface when it is useful, not as a prerequisite to operating.

Example: a tokenized fund waiting for chain selection

A fund manager wants to tokenize a private credit vehicle. The legal team needs three months to decide between two regulated chains in two jurisdictions. The technical team does not have to wait.

From day one, the fund can:

Once legal selects the chain, the fund anchors the entire historical corpus in one batched transaction and continues operating with future receipts anchored directly. No data was lost. No history needed to be reconstructed. The chain selection became a deployment decision, not a foundational one.

Example: an AI decision system that may never need a chain

An internal AI governance system at a bank produces millions of decisions per day (fraud scores, transaction approvals, compliance classifications). The bank wants cryptographic evidence of each decision for SOX, internal audit, and future regulatory inquiry.

Does it need a public blockchain? Almost certainly not. The bank needs verifiable evidence the regulator can independently check. H33-74 produces that without any chain at all. If the bank later wants to commit a quarterly root to a public chain for additional independence, it can. If not, the receipts and verifier tooling already provide auditability.

The architectural shift

Chain-first
Pick a chain. Architecture follows. If you need to change chains, redesign.
Proof-first
Issue receipts now. Pick storage surfaces (chains, archives, third-party notaries) as commercial and regulatory needs evolve.
If the proof comes first, the chain becomes a deployment decision. That is the architectural difference between H33-74 and every chain-centric attestation system.

And when you do pick a chain — or later change it — what differs between blockchains are their operational and integration characteristics. The H33-74 primitive and its cryptographic properties remain unchanged. Migrating from one blockchain to another changes the anchoring substrate and deployment environment. It does not change the H33-74 primitive, the cryptographic evidence, or the verification model.

What H33-74 does not do

H33-74 produces and anchors the portable proof primitive; starting without a chain is a property of that primitive. It does not monitor systems for control drift (that is HATS), it does not render the pass/fail verdict on an attestation (an independent verifier does — see Verification), and it does not govern agents or preserve decision authority (that is Agent-008).

Frequently asked

Can I produce verifiable evidence before choosing a chain?
Yes. An H33-74 receipt commits to a computation result and signs it under three post-quantum families with no chain involved. It is verifiable the moment it is signed; the chain only stores an anchor pointing to a receipt that already exists.
Is the trust from the chain or from H33-74?
From H33-74. Because a receipt is valid before any chain is chosen, trust cannot come from the chain — it comes from the three post-quantum signatures and an independent, open verifier. The chain is one optional notarization surface, never the source of the proof or the trust.
Does anchoring later change the proof?
No. When you eventually pick a chain and anchor, the receipt is unchanged. Anchoring adds an independent timestamp; it does not alter the receipt, its signatures, or what the verifier checks.
Can I move a receipt to another chain later?
Yes. Migrating chains changes the anchoring substrate and deployment environment; it does not change the H33-74 primitive, the cryptographic evidence, or the verification model.

Read what makes the receipt independent

Receipts are signed under a three-family post-quantum scheme and stay verifiable without H33's verifier infrastructure.

How H33-74 Works Delayed Anchoring

Related