UNPKG

merkle-t

Version:

Merkle Tree with Poseidon Hash in TypeScript

11 lines (10 loc) 191 B
export type Leaf = bigint; export interface LeafInputs { zeroHash: Leaf; hash(): Leaf; toInputs(): bigint[]; } export interface OrderedLeaf { index: number; leaf: Leaf; }