TxProof represents a Merkle proof of the presence of a transaction in the Merkle tree.

interface TxProof {
    data: Uint8Array;
    proof?: Proof;
    rootHash: Uint8Array;
}

Properties

Properties

data: Uint8Array
proof?: Proof
rootHash: Uint8Array

Generated using TypeDoc