Interface MerkleProof

interface MerkleProof {
    entry: Entry | Node[];
    matchingEntry?: Entry | Node[];
    membership: boolean;
    root: Node;
    siblings: Siblings;
}

Hierarchy (view full)

Properties

entry: Entry | Node[]
matchingEntry?: Entry | Node[]
membership: boolean
root: Node
siblings: Siblings