UNPKG

@zk-kit/incremental-merkle-tree

Version:
11 lines (8 loc) 181 B
export type Node = any export type HashFunction = (values: Node[]) => Node export type MerkleProof = { root: any leaf: any siblings: any[] pathIndices: number[] }