Canonical commitments
Compact UTF-8 JSON uses a closed value set. Transactions, blocks, state, and genesis are committed with domain-separated SHA-256.
Reference implementation · v0.1.0
AIMB-X Protocol is a minimal Python reference for canonical messages, atomic state transitions, resource metering, validator votes, quorum certificates, and block finalization.
Implemented in v0.1.0
The code is intentionally narrow. Its job is to make serialization, execution, and quorum rules reproducible—not to present an unfinished network as a live chain.
Compact UTF-8 JSON uses a closed value set. Transactions, blocks, state, and genesis are committed with domain-separated SHA-256.
Accounts carry nonces and balances. Gas is deterministic, batches are atomic, and invalid input cannot partially mutate the candidate state.
The reference runtime implements transfer, namespaced put, and delete operations with closed schemas and bounded keys and values.
Proposals are reproduced deterministically. Finalization checks unique vote objects representing at least two-thirds of active validator power; authentication is an integration-layer assumption.
Reference finalization path
This is deterministic proposal validation and certificate checking. It is not a live Byzantine-fault-tolerant round or timeout protocol.
An active validator proposes the next block over the finalized tip.
Validators reproduce the ordered transactions and compare the state commitment.
Unique vote objects, assumed to be authenticated by the integration layer, must reach weighted two-thirds power.
A valid block and quorum certificate become the in-memory finalized tip.
Explicit integration boundaries
These are engineering obligations, not hidden features. In particular, the core assumes that vote objects have already been authenticated by a networking and identity layer.
Machine-derived signals may rank admissible transactions, flag anomalies, or recommend timing. They do not determine validity, create validator authority, sign votes, or write committed state. Consensus must remain safe when an advisory system is unavailable, inconsistent, or hostile.
Read Draft RFC 0001 (opens in a new tab)Primary sources
Each link opens the corresponding document in the public v0.1.0 repository.
Separate technical proposal
The Autonomous Intelligence Market Bridge paper proposes agent registries, capital guardrails, market adapters, settlement, and reputation. Those components are a broader architecture proposal; they are not implemented by the v0.1.0 Layer-1 reference core described on this page.
Read the proposal with that distinction