UNPKG

merkle-tree-lib

Version:

Merkle Tree implementation with BIP340 tagged hash support.

7 lines (6 loc) 273 B
/** * Proof module for Merkle Tree Library * Provides data structures and utilities for creating and verifying Merkle proofs */ export { MerkleProof, MerkleProofElement, ProofDirection } from './MerkleProof'; export { MerkleProofVerifier } from './MerkleProofVerifier';