merkletreejs/README.md

189 lines
7.5 KiB
Markdown
Raw Normal View History

2019-01-20 07:26:13 +08:00
<h3 align="center">
2018-05-02 14:52:11 +08:00
<br />
2020-06-07 03:07:23 +08:00
<img src="https://user-images.githubusercontent.com/168240/83951171-85f48c80-a7e4-11ea-896e-529c28ffa18e.png" alt="merkletree.js logo" width="600" />
2018-05-02 14:52:11 +08:00
<br />
<br />
<br />
2019-01-20 07:26:13 +08:00
</h3>
# MerkleTree.js
2017-07-22 15:31:30 +08:00
2017-08-08 11:29:54 +08:00
> Construct [Merkle Trees](https://en.wikipedia.org/wiki/Merkle_tree) and verify proofs in JavaScript.
2017-07-22 15:31:30 +08:00
2019-12-19 09:30:24 +08:00
[![License](http://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/miguelmota/merkletreejs/master/LICENSE)
2021-12-10 12:59:25 +08:00
[![Documentation](https://img.shields.io/badge/documentation-latest-blue.svg)](https://github.com/miguelmota/merkletreejs/tree/master/docs)
2019-12-19 09:30:24 +08:00
[![Build Status](https://travis-ci.org/miguelmota/merkletreejs.svg?branch=master)](https://travis-ci.org/miguelmota/merkletreejs)
[![dependencies Status](https://david-dm.org/miguelmota/merkletreejs/status.svg)](https://david-dm.org/miguelmota/merkletreejs)
[![NPM version](https://badge.fury.io/js/merkletreejs.svg)](http://badge.fury.io/js/merkletreejs)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](#contributing)
2019-01-20 07:43:57 +08:00
2019-01-20 07:26:13 +08:00
## Contents
2018-10-23 14:38:33 +08:00
- [Install](#install)
2021-07-02 15:28:31 +08:00
- [Example](#example)
2018-12-10 11:10:43 +08:00
- [Getting started](#Getting-started)
2020-06-07 03:07:23 +08:00
- [Diagrams](#diagrams)
2018-10-23 14:40:56 +08:00
- [Documentation](#documentation)
2018-10-23 14:38:33 +08:00
- [Test](#test)
- [FAQ](#faq)
- [Notes](#notes)
- [Resources](#resources)
2019-12-19 09:30:24 +08:00
- [Contributing](#contributing)
2022-03-18 04:03:56 +08:00
- [Tip Jar](#tip-jar)
2018-10-23 14:38:33 +08:00
- [License](#license)
2018-10-23 14:40:56 +08:00
## Install
2017-07-22 15:31:30 +08:00
2020-06-07 04:52:26 +08:00
From [NPM](https://www.npmjs.com/package/merkletreejs):
2017-07-22 15:31:30 +08:00
```bash
2018-07-10 01:25:43 +08:00
npm install merkletreejs
2017-07-22 15:31:30 +08:00
```
2020-06-07 04:52:26 +08:00
### CDN
2020-06-07 05:12:00 +08:00
Available on [jsDelivr](https://www.jsdelivr.com/) CDN:
2020-06-07 04:52:26 +08:00
```html
<script src="https://cdn.jsdelivr.net/npm/merkletreejs@latest/merkletree.js"></script>
```
2021-07-02 15:28:31 +08:00
## Example
[https://lab.miguelmota.com/merkletreejs](https://lab.miguelmota.com/merkletreejs)
2018-12-10 11:10:43 +08:00
## Getting started
Construct tree, generate proof, and verify proof:
2018-12-10 11:12:10 +08:00
```js
const { MerkleTree } = require('merkletreejs')
2018-12-10 11:10:43 +08:00
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:
```js
2021-07-14 14:14:04 +08:00
console.log(tree.toString())
2018-12-10 11:10:43 +08:00
```
2021-07-14 14:14:04 +08:00
Output:
2018-12-10 11:10:43 +08:00
```bash
2021-07-02 15:20:10 +08:00
└─ 7075152d03a5cd92104887b476862778ec0c87be5c2fa1c0a90f87c49fad6eff
├─ e5a01fee14e0ed5c48714f22180f25ad8365b53f9779f79dc4a3d7e93963f94a
│ ├─ ca978112ca1bbdcafac231b39a23dc4da786eff8147c4e72b9807785afee48bb
│ └─ 3e23e8160039594a33894f6564e1b1348bbd7a0088d42c4acb73eeaed59c009d
└─ 2e7d2c03a9507ae265ecf5b5356885a53393a2029d241394997265a1a25aefc6
└─ 2e7d2c03a9507ae265ecf5b5356885a53393a2029d241394997265a1a25aefc6
2018-12-10 11:10:43 +08:00
```
2020-06-07 03:07:23 +08:00
## Diagrams
2020-06-07 04:07:26 +08:00
▾ Visualization of Merkle Tree
2020-06-07 03:07:23 +08:00
<img src="https://user-images.githubusercontent.com/168240/43616375-15330c32-9671-11e8-9057-6e61c312c856.png" alt="Merkle Tree" width="500">
2020-06-07 04:07:26 +08:00
▾ Visualization of Merkle Tree Proof
2020-06-07 03:07:23 +08:00
<img src="https://user-images.githubusercontent.com/168240/43616387-27ec860a-9671-11e8-9f3f-0b871a6581a6.png" alt="Merkle Tree Proof" width="420">
2020-06-07 04:07:26 +08:00
▾ Visualization of Invalid Merkle Tree Proofs
2020-06-07 03:07:23 +08:00
<img src="https://user-images.githubusercontent.com/168240/43616398-33e20584-9671-11e8-9f62-9f48ce412898.png" alt="Merkle Tree Proof" width="420">
2020-06-07 04:07:26 +08:00
▾ Visualization of Bitcoin Merkle Tree
2020-06-07 03:07:23 +08:00
<img src="https://user-images.githubusercontent.com/168240/43616417-46d3293e-9671-11e8-81c3-8cdf7f8ddd77.png" alt="Merkle Tree Proof" width="420">
2018-10-23 14:40:56 +08:00
## Documentation
2021-12-10 12:51:15 +08:00
See [documentation](docs/classes/_src_merkletree_.merkletree.md) (under [docs/](docs/))
2019-06-07 15:29:42 +08:00
2018-10-23 14:38:33 +08:00
## Test
2017-07-22 15:31:30 +08:00
2017-07-22 15:38:06 +08:00
```bash
2017-07-22 15:31:30 +08:00
npm test
```
2018-10-23 14:38:33 +08:00
## FAQ
- Q: How do you verify merkle proofs in Solidity?
2018-10-23 14:46:17 +08:00
- A: Check out the example repo [merkletreejs-solidity](https://github.com/miguelmota/merkletreejs-solidity) on how to generate merkle proofs with this library and verify them in Solidity.
2018-10-23 14:38:33 +08:00
2020-06-02 14:29:33 +08:00
- Q: How do you verify merkle [multiproofs](https://github.com/ethereum/eth2.0-specs/blob/dev/ssz/merkle-proofs.md#merkle-multiproofs) in Solidity?
- A: Check out the example repo [merkletreejs-multiproof-solidity](https://github.com/miguelmota/merkletreejs-multiproof-solidity) on how to generate merkle multiproofs with this library and verify them in Solidity.
2022-03-13 15:03:29 +08:00
- Q: Is there an NFT whitelist example in Solidity?
- A: Check out the example repo [merkletreejs-nft-whitelist](https://github.com/miguelmota/merkletreejs-nft-whitelist) on how to generate merkle root of whitelisted accounts and merkle proofs with this library and verify them in Solidity.
- Q: Is there a CLI version of this library?
2021-07-14 14:14:04 +08:00
- Yes, see [merkletreejs-cli](https://github.com/miguelmota/merkletreejs-cli).
2018-10-23 14:38:33 +08:00
## Notes
2017-07-23 13:12:37 +08:00
2021-07-04 16:23:15 +08:00
As is, this implemenation is vulnerable to a [second pre-image attack](https://en.wikipedia.org/wiki/Merkle_tree#Second_preimage_attack). Use a difference hashing function for leaves and nodes, so that `H(x) != H'(x)`.
2017-07-23 13:12:37 +08:00
2017-07-23 13:16:42 +08:00
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.
2017-07-23 13:12:37 +08:00
2018-07-27 02:31:04 +08:00
More info [here](https://bitcointalk.org/?topic=102395).
2018-10-23 14:38:33 +08:00
## Resources
2017-07-22 15:31:30 +08:00
- [Bitcoin mining the hard way: the algorithms, protocols, and bytes](http://www.righto.com/2014/02/bitcoin-mining-hard-way-algorithms.html)
2017-07-22 15:38:06 +08:00
2017-07-22 15:31:30 +08:00
- [Bitcoin Talk - Merkle Trees](https://bitcointalk.org/index.php?topic=403231.msg9054025#msg9054025)
2017-07-22 15:38:06 +08:00
2017-07-22 15:31:30 +08:00
- [How Log Proofs Work](https://www.certificate-transparency.org/log-proofs-work)
2017-07-22 15:38:06 +08:00
2017-07-22 16:05:52 +08:00
- [Raiden Merkle Tree Implemenation](https://github.com/raiden-network/raiden/blob/f9cf12571891cdf54feb4667cd2fffcb3d5daa89/raiden/mtree.py)
2017-07-22 15:31:30 +08:00
- [Why aren't Solidity sha3 hashes not matching what other sha3 libraries produce?](https://ethereum.stackexchange.com/questions/559/why-arent-solidity-sha3-hashes-not-matching-what-other-sha3-libraries-produce)
2017-07-23 13:12:37 +08:00
- [What is the purpose of using different hash functions for the leaves and internals of a hash tree?](https://crypto.stackexchange.com/questions/2106/what-is-the-purpose-of-using-different-hash-functions-for-the-leaves-and-interna)
2017-08-08 11:54:56 +08:00
- [Why is the full Merkle path needed to verify a transaction?](https://bitcoin.stackexchange.com/questions/50674/why-is-the-full-merkle-path-needed-to-verify-a-transaction)
- [Where is Double hashing performed in Bitcoin?](https://bitcoin.stackexchange.com/questions/8443/where-is-double-hashing-performed-in-bitcoin)
2020-06-02 14:33:03 +08:00
- [Compact Merkle Multiproofs](https://arxiv.org/pdf/2002.07648.pdf)
- [Eth 2.0 specs - Merkle Multiproofs](https://github.com/ethereum/eth2.0-specs/blob/dev/ssz/merkle-proofs.md#merkle-multiproofs)
2019-12-19 09:30:24 +08:00
## Contributing
Pull requests are welcome!
For contributions please create a new branch and submit a pull request for review.
2020-12-13 02:58:57 +08:00
_Many thanks to all the [contributors](https://github.com/miguelmota/merkletreejs/graphs/contributors) that made this library better._
2022-03-18 04:03:56 +08:00
## Tip Jar
[![BTC Tip Jar](https://img.shields.io/badge/BTC-tip-yellow.svg?logo=bitcoin&style=flat)](https://www.blockchain.com/btc/address/3KdMW53vUMLPEC33xhHAUx4EFtvmXQF8Kf) `3KdMW53vUMLPEC33xhHAUx4EFtvmXQF8Kf`
[![ETH Tip Jar](https://img.shields.io/badge/ETH-tip-blue.svg?logo=ethereum&style=flat)](https://etherscan.io/address/0x9ed3D6793a6b74d8c9A998f5C4b50a25947D53aF) `0x9ed3D6793a6b74d8c9A998f5C4b50a25947D53aF`
Thank you for tips! 🙏
2018-10-23 14:38:33 +08:00
## License
2017-07-22 15:31:30 +08:00
2022-03-18 04:03:56 +08:00
Released under the [MIT](./LICENSE) license.
© [Miguel Mota](https://github.com/miguelmota)