ASSET-LEDGERBLAKE3 event-chain·Live
An append-only chain, sealed event by event.
A collection is a per-collection, append-only chain of events — Mint, Transfer, Burn and the rest. Each event carries a BLAKE3 hash of the one before it and a server signature in a crypto-agile envelope, so the whole history is verifiable without a blockchain and without gas.
01 · Event chain
Mint, Transfer, Burn — appended, never edited.
An item’s life is a sequence of events appended to its collection’s chain. Nothing is mutated in place; a correction is a new event, so the full provenance is always present.
Mechanism: append-only per-collection event log.
02 · Hash linkage
Each event hashes the one before it.
Every event includes a BLAKE3 hash of its predecessor, chaining them together. Altering any past event changes its hash and breaks every hash that follows — visibly, not silently.
Mechanism: BLAKE3 hash of the previous event.
03 · Signed envelope
Server-signed, crypto-agile, genesis-anchored.
Each event is signed in a crypto-agile envelope (a hybrid with ML-DSA-65), and the collection’s genesis page anchors the minimum trusted scheme — so signatures can be strengthened without losing verifiability or being negotiated down.
Mechanism: hybrid signature + genesis trust-anchor.