UNPKG

@iden3/js-merkletree

Version:

javascript sparse merkle tree library

12 lines (9 loc) 219 B
import { Hash } from '../lib/hash/hash'; import { Bytes } from './bytes'; export interface IHash { value: Bytes; string: () => string; hex: () => string; equals: (hash: Hash) => boolean; bigInt(): bigint; }