merkle icon indicating copy to clipboard operation
merkle copied to clipboard

Node.js module implementing Merkle tree algorithm

Results 3 merkle issues
Sort by recently updated
recently updated
newest added

Hi, can you give an example how is the getProofPath function used to verify a hash in the tree? Thanks

just wanted to know if this is planned :)

The current implementation stores the hashes as hexadecimal strings and computes parent hashes doing something like this: ``` parentHashHex = hash(new Buffer(leftHex + rightHex, 'hex')).toString('hex') ``` I'm not sure if...