Socket
Socket
Sign inDemoInstall

merkletreejs

Package Overview
Dependencies
5
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    merkletreejs

Construct Merkle Trees and verify proofs


Version published
Weekly downloads
118K
decreased by-6.08%
Maintainers
1
Created
Weekly downloads
 

Package description

What is merkletreejs?

The merkletreejs package is a JavaScript library for constructing and verifying Merkle Trees. Merkle Trees are a fundamental component in blockchain technology and cryptographic applications, providing a way to efficiently and securely verify the integrity of data. This package allows you to create Merkle Trees, generate proofs, and verify proofs.

What are merkletreejs's main functionalities?

Creating a Merkle Tree

This feature allows you to create a Merkle Tree from an array of data. The example uses the keccak256 hashing algorithm to hash the data and then constructs the tree. The root of the tree is then printed.

const { MerkleTree } = require('merkletreejs');
const keccak256 = require('keccak256');

const leaves = ['a', 'b', 'c'].map(x => keccak256(x));
const tree = new MerkleTree(leaves, keccak256, { sortPairs: true });
const root = tree.getRoot().toString('hex');
console.log(root);

Generating a Proof

This feature allows you to generate a proof for a specific leaf in the Merkle Tree. The proof can be used to verify that the leaf is part of the tree.

const leaf = keccak256('a');
const proof = tree.getProof(leaf);
console.log(proof);

Verifying a Proof

This feature allows you to verify a proof against the root of the Merkle Tree. It checks if the provided leaf and proof match the root, ensuring the integrity of the data.

const isValid = tree.verify(proof, leaf, root);
console.log(isValid);

Other packages similar to merkletreejs

Readme

Source


logo


MerkleTree.js

Construct Merkle Trees and verify proofs in JavaScript.

License Build Status dependencies Status NPM version

Contents

Diagrams

Diagram of Merkle Tree

Merkle Tree

Diagram of Merkle Tree Proof

Merkle Tree Proof

Diagram of Invalid Merkle Tree Proofs

Merkle Tree Proof

Diagram of Bitcoin Merkle Tree

Merkle Tree Proof

Install

npm install merkletreejs

Getting started

Construct tree, generate proof, and verify proof:

const { MerkleTree } = require('merkletreejs')
const SHA256 = require('crypto-js/sha256')

const leaves = ['a', 'b', 'c'].map(x => SHA256(x))
const tree = new MerkleTree(leaves, SHA256)
const root = tree.getRoot().toString('hex')
const leaf = SHA256('a')
const proof = tree.getProof(leaf)
console.log(tree.verify(proof, leaf, root)) // true


const badLeaves = ['a', 'x', 'c'].map(x => SHA256(x))
const badTree = new MerkleTree(badLeaves, SHA256)
const badLeaf = SHA256('x')
const badProof = tree.getProof(badLeaf)
console.log(tree.verify(badProof, leaf, root)) // false

Print tree to console:

MerkleTree.print(tree)

Output

└─ 311d2e46f49b15fff8b746b74ad57f2cc9e0d9939fda94387141a2d3fdf187ae
   ├─ 176f0f307632fdd5831875eb709e2f68d770b102262998b214ddeb3f04164ae1
   │  ├─ 3ac225168df54212a25c1c01fd35bebfea408fdac2e31ddd6f80a4bbf9a5f1cb
   │  └─ b5553de315e0edf504d9150af82dafa5c4667fa618ed0a6f19c69b41166c5510
   └─ 0b42b6393c1f53060fe3ddbfcd7aadcca894465a5a438f69c87d790b2299b9b2
      └─ 0b42b6393c1f53060fe3ddbfcd7aadcca894465a5a438f69c87d790b2299b9b2

Documentation

Class

Class reprensenting a Merkle Tree

namespace: MerkleTree

Hierarchy

MerkleTree

Constructors

Properties

Methods


Constructors

constructor

⊕ new MerkleTree(leaves: any, hashAlgorithm: any, options?: *Options

desc: Constructs a Merkle Tree. All nodes and leaves are stored as Buffers. Lonely leaf nodes are promoted to the next level up without being hashed again.

example:

const MerkleTree = require('merkletreejs')
const crypto = require('crypto')

function sha256(data) {
// returns Buffer
return crypto.createHash('sha256').update(data).digest()
}

const leaves = ['a', 'b', 'c'].map(x => keccak(x))

const tree = new MerkleTree(leaves, sha256)

Parameters:

NameTypeDefault valueDescription
leavesany-Array of hashed leaves. Each leaf must be a Buffer.
hashAlgorithmany-Algorithm used for hashing leaves and nodes
Default value optionsOptions{} as anyAdditional options

Returns: MerkleTree


Properties

duplicateOdd

● duplicateOdd: boolean


hashAlgo

● hashAlgo: function

Type declaration

▸(value: any): any

Parameters:

NameType
valueany

Returns: any


hashLeaves

● hashLeaves: boolean


isBitcoinTree

● isBitcoinTree: boolean


layers

● layers: any[]


leaves

● leaves: any[]


sortLeaves

● sortLeaves: boolean


sortPairs

● sortPairs: boolean


Methods

createHashes

▸ createHashes(nodes: any): void

Parameters:

NameType
nodesany

Returns: void


getLayers

▸ getLayers(): any[]

getLayers

desc: Returns array of all layers of Merkle Tree, including leaves and root.

example:

const layers = tree.getLayers()

Returns: any[]


getLayersAsObject

▸ getLayersAsObject(): any

Returns: any


getLeaves

▸ getLeaves(): any[]

getLeaves

desc: Returns array of leaves of Merkle Tree.

example:

const leaves = tree.getLeaves()

Returns: any[]


getProof

▸ getProof(leaf: any, index?: any): any[]

getProof

desc: Returns the proof for a target leaf.

example:

const proof = tree.getProof(leaves[2])

example:

const leaves = ['a', 'b', 'a'].map(x => keccak(x))
const tree = new MerkleTree(leaves, keccak)
const proof = tree.getProof(leaves[2], 2)

Parameters:

NameTypeDescription
leafanyTarget leaf
Optional indexany

Returns: any[]

  • Array of objects containing a position property of type string with values of 'left' or 'right' and a data property of type Buffer.

getRoot

▸ getRoot(): any

getRoot

desc: Returns the Merkle root hash as a Buffer.

example:

const root = tree.getRoot()

Returns: any


print

▸ print(): void

Returns: void


toString

▸ toString(): any

Returns: any


toTreeString

▸ toTreeString(): any

Returns: any


verify

▸ verify(proof: any, targetNode: any, root: any): boolean

verify

desc: Returns true if the proof path (array of hashes) can connect the target node to the Merkle root.

example:

const root = tree.getRoot()
const proof = tree.getProof(leaves[2])
const verified = tree.verify(proof, leaves[2], root)

Parameters:

NameTypeDescription
proofanyArray of proof objects that should connect target node to Merkle root.
targetNodeanyTarget node Buffer
rootanyMerkle root Buffer

Returns: boolean


<Static> bufferify

▸ bufferify(x: any): any

Parameters:

NameType
xany

Returns: any


<Static> print

▸ print(tree: any): void

Parameters:

NameType
treeany

Returns: void

Interface

Options

Properties


Properties

duplicateOdd

● duplicateOdd: boolean

If set to true, an odd node will be duplicated and combined to make a pair to generate the layer hash.


hashLeaves

● hashLeaves: boolean

If set to true, the leaves will hashed using the set hashing algorithms.


isBitcoinTree

● isBitcoinTree: boolean

If set to true, constructs the Merkle Tree using the Bitcoin Merkle Tree implementation. Enable it when you need to replicate Bitcoin constructed Merkle Trees. In Bitcoin Merkle Trees, single nodes are combined with themselves, and each output hash is hashed again.


sort

● sort: boolean

If set to true, the leaves and hashing pairs will be sorted.

sortLeaves

● sortLeaves: boolean

If set to true, the leaves will be sorted.


sortPairs

● sortPairs: boolean

If set to true, the hashing pairs will be sorted.

Test

npm test

FAQ

  • Q: How do you verify merkle proofs in Solidity?
    • A: Check out the example repo merkletreejs-solidity on how to generate merkle proofs with this library and verify them in Solidity.

Notes

As is, this implemenation is vulnerable to a second pre-image attack. Use a difference hashing algorithm function for leaves and nodes, so that H(x) != H'(x).

Also, as is, this implementation is vulnerable to a forgery attack for an unbalanced tree, where the last leaf node can be duplicated to create an artificial balanced tree, resulting in the same Merkle root hash. Do not accept unbalanced tree to prevent this.

More info here.

Resources

License

MIT

Keywords

FAQs

Last updated on 28 Jul 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc