merkle-tree-lib
Version:
Merkle Tree implementation with BIP340 tagged hash support.
16 lines (12 loc) • 288 B
text/typescript
/**
* Merkle Tree Library
*
* A TypeScript library for creating and verifying Merkle trees with
* configurable hash strategies.
*/
// Re-export hash module
export * from './hash';
// Re-export proof module
export * from './proof';
// Re-export tree module
export * from './tree';