Interface MerkleProof

Merkle proof

interface MerkleProof {
    leaf: string;
    proof: string[];
    root: string;
}

Properties

Properties

leaf: string

Leaf hash

proof: string[]

Proof hashes

root: string

Root hash