interface Receipt {
    cert: string;
    leaf?: string;
    leaf_components?: LeafComponents;
    node_id: string;
    proof: Proof;
    signature: string;
}

Properties

cert: string

Certificate of the node that signed the Merkle tree root hash.

leaf?: string

Hex-encoded Merkle tree leaf hash, for pre-2.x transactions.

leaf_components?: LeafComponents

Components of Merkle tree leaf hash, which digest together to replace leaf.

node_id: string

ID of the node that signed the Merkle tree root hash.

proof: Proof

Merkle tree inclusion proof as an array of ProofElement objects.

signature: string

Base64-encoded signature of the Merkle tree root hash.