Interface CompactMerkleProofJSON

A type used to support serialization to json for CompactMerkleProof.

CompactMerkleProofJSON

interface CompactMerkleProofJSON {
    bitMask: string;
    height: number;
    root: string;
    sideNodes: string[];
}

Properties

bitMask: string
height: number
root: string
sideNodes: string[]