UNPKG

merkle-tree-lib

Version:

Merkle Tree implementation with BIP340 tagged hash support.

10 lines (9 loc) 209 B
/** * Merkle Tree Library * * A TypeScript library for creating and verifying Merkle trees with * configurable hash strategies. */ export * from './hash'; export * from './proof'; export * from './tree';