interface MerkleProof {
    leaf: string;
    pathIndices: number[];
    root: string;
    siblings: string[][];
}

Properties

leaf: string
pathIndices: number[]
root: string
siblings: string[][]