merkle-tree-lib
Version:
Merkle Tree implementation with BIP340 tagged hash support.
15 lines (12 loc) • 341 B
text/typescript
/**
* Proof module for Merkle Tree Library
* Provides data structures and utilities for creating and verifying Merkle proofs
*/
// Export proof structures
export {
MerkleProof,
MerkleProofElement,
ProofDirection
} from './MerkleProof';
// Export verification utilities
export { MerkleProofVerifier } from './MerkleProofVerifier';