← All Products

Confium Transparency

Prove your operations are auditable and tamper-evident.

Compliance TeamsCAsAudit TeamsBlockchain Protocols

API reference

Canonical code shapes for Confium Transparency, with per-language tabs. Copy-paste-runnable.

Canonical flow: append → prove → verify

{`use confium_transparency::MerkleTree;

let mut tree = MerkleTree::new();
let seq = tree.append(b"sha256:abc...")?;
let root = tree.root();

let proof = tree.inclusion_proof(seq)?;
assert!(proof.verify(&root)?);`}