Add Typescript types. Closes #13 and #12

This commit is contained in:
Miguel Mota 2019-03-29 19:53:32 -07:00
parent f94dd5fbac
commit 448cf47ae6
10 changed files with 466 additions and 37 deletions

View File

@ -54,7 +54,7 @@ npm install merkletreejs
Construct tree, generate proof, and verify proof:
```js
const MerkleTree = require('merkletreejs')
const { MerkleTree } = require('merkletreejs')
const SHA256 = require('crypto-js/sha256')
const leaves = ['a', 'b', 'c'].map(x => SHA256(x))
@ -139,7 +139,7 @@ Lonely leaf nodes are promoted to the next level up without being hashed again.
**Example**
```js
const MerkleTree = require('merkletreejs')
const { MerkleTree } = require('merkletreejs')
const crypto = require('crypto')
function sha256(data) {
@ -277,7 +277,7 @@ Lonely leaf nodes are promoted to the next level up without being hashed again.
**Example**
```js
const MerkleTree = require('merkletreejs')
const { MerkleTree } = require('merkletreejs')
const crypto = require('crypto')
function sha256(data) {

99
dist/index.d.ts vendored Normal file
View File

@ -0,0 +1,99 @@
/**
* Class reprensenting a Merkle Tree
* @namespace MerkleTree
*/
export declare class MerkleTree {
hashAlgo: any;
leaves: any;
layers: any;
isBitcoinTree: boolean;
/**
* @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.
* @param {Buffer[]} leaves - Array of hashed leaves. Each leaf must be a Buffer.
* @param {Function} hashAlgorithm - Algorithm used for hashing leaves and nodes
* @param {Object} options - Additional options
* @param {Boolean} options.isBitcoinTree - If set to `true`, constructs the Merkle
* Tree using the [Bitcoin Merkle Tree implementation](http://www.righto.com/2014/02/bitcoin-mining-hard-way-algorithms.html). 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.
* @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 => sha3(x))
*
* const tree = new MerkleTree(leaves, sha256)
*/
constructor(leaves: any, hashAlgorithm: any, options?: any);
createHashes(nodes: any): void;
/**
* getLeaves
* @desc Returns array of leaves of Merkle Tree.
* @return {Buffer[]}
* @example
* const leaves = tree.getLeaves()
*/
getLeaves(): any;
/**
* getLayers
* @desc Returns array of all layers of Merkle Tree, including leaves and root.
* @return {Buffer[]}
* @example
* const layers = tree.getLayers()
*/
getLayers(): any;
/**
* getRoot
* @desc Returns the Merkle root hash as a Buffer.
* @return {Buffer}
* @example
* const root = tree.getRoot()
*/
getRoot(): any;
/**
* getProof
* @desc Returns the proof for a target leaf.
* @param {Buffer} leaf - Target leaf
* @param {Number} [index] - Target leaf index in leaves array.
* Use if there are leaves containing duplicate data in order to distinguish it.
* @return {Object[]} - Array of objects containing a position property of type string
* with values of 'left' or 'right' and a data property of type Buffer.
* @example
* const proof = tree.getProof(leaves[2])
*
* @example
* const leaves = ['a', 'b', 'a'].map(x => sha3(x))
* const tree = new MerkleTree(leaves, sha3)
* const proof = tree.getProof(leaves[2], 2)
*/
getProof(leaf: any, index?: any): any[];
/**
* verify
* @desc Returns true if the proof path (array of hashes) can connect the target node
* to the Merkle root.
* @param {Object[]} proof - Array of proof objects that should connect
* target node to Merkle root.
* @param {Buffer} targetNode - Target node Buffer
* @param {Buffer} root - Merkle root Buffer
* @return {Boolean}
* @example
* const root = tree.getRoot()
* const proof = tree.getProof(leaves[2])
* const verified = tree.verify(proof, leaves[2], root)
*
*/
verify(proof: any, targetNode: any, root: any): boolean;
getLayersAsObject(): any;
print(): void;
toTreeString(): any;
toString(): any;
static bufferify(x: any): any;
static print(tree: any): void;
}
export default MerkleTree;

295
dist/index.js vendored Normal file
View File

@ -0,0 +1,295 @@
"use strict";
exports.__esModule = true;
var reverse = require("buffer-reverse");
var CryptoJS = require("crypto-js");
var treeify = require("treeify");
/**
* Class reprensenting a Merkle Tree
* @namespace MerkleTree
*/
var MerkleTree = /** @class */ (function () {
/**
* @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.
* @param {Buffer[]} leaves - Array of hashed leaves. Each leaf must be a Buffer.
* @param {Function} hashAlgorithm - Algorithm used for hashing leaves and nodes
* @param {Object} options - Additional options
* @param {Boolean} options.isBitcoinTree - If set to `true`, constructs the Merkle
* Tree using the [Bitcoin Merkle Tree implementation](http://www.righto.com/2014/02/bitcoin-mining-hard-way-algorithms.html). 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.
* @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 => sha3(x))
*
* const tree = new MerkleTree(leaves, sha256)
*/
function MerkleTree(leaves, hashAlgorithm, options) {
if (options === void 0) { options = {}; }
this.hashAlgo = bufferifyFn(hashAlgorithm);
this.leaves = leaves.map(bufferify);
this.layers = [this.leaves];
this.isBitcoinTree = !!options.isBitcoinTree;
this.createHashes(this.leaves);
}
// TODO: documentation
MerkleTree.prototype.createHashes = function (nodes) {
while (nodes.length > 1) {
var layerIndex = this.layers.length;
this.layers.push([]);
for (var i = 0; i < nodes.length - 1; i += 2) {
var left = nodes[i];
var right = nodes[i + 1];
var data = null;
if (this.isBitcoinTree) {
data = Buffer.concat([reverse(left), reverse(right)]);
}
else {
data = Buffer.concat([left, right]);
}
var hash = this.hashAlgo(data);
// double hash if bitcoin tree
if (this.isBitcoinTree) {
hash = reverse(this.hashAlgo(hash));
}
this.layers[layerIndex].push(hash);
}
// is odd number of nodes
if (nodes.length % 2 === 1) {
var data = nodes[nodes.length - 1];
var hash = data;
// is bitcoin tree
if (this.isBitcoinTree) {
// Bitcoin method of duplicating the odd ending nodes
data = Buffer.concat([reverse(data), reverse(data)]);
hash = this.hashAlgo(data);
hash = reverse(this.hashAlgo(hash));
}
this.layers[layerIndex].push(hash);
}
nodes = this.layers[layerIndex];
}
};
/**
* getLeaves
* @desc Returns array of leaves of Merkle Tree.
* @return {Buffer[]}
* @example
* const leaves = tree.getLeaves()
*/
MerkleTree.prototype.getLeaves = function () {
return this.leaves;
};
/**
* getLayers
* @desc Returns array of all layers of Merkle Tree, including leaves and root.
* @return {Buffer[]}
* @example
* const layers = tree.getLayers()
*/
MerkleTree.prototype.getLayers = function () {
return this.layers;
};
/**
* getRoot
* @desc Returns the Merkle root hash as a Buffer.
* @return {Buffer}
* @example
* const root = tree.getRoot()
*/
MerkleTree.prototype.getRoot = function () {
return this.layers[this.layers.length - 1][0] || Buffer.from([]);
};
/**
* getProof
* @desc Returns the proof for a target leaf.
* @param {Buffer} leaf - Target leaf
* @param {Number} [index] - Target leaf index in leaves array.
* Use if there are leaves containing duplicate data in order to distinguish it.
* @return {Object[]} - Array of objects containing a position property of type string
* with values of 'left' or 'right' and a data property of type Buffer.
* @example
* const proof = tree.getProof(leaves[2])
*
* @example
* const leaves = ['a', 'b', 'a'].map(x => sha3(x))
* const tree = new MerkleTree(leaves, sha3)
* const proof = tree.getProof(leaves[2], 2)
*/
MerkleTree.prototype.getProof = function (leaf, index) {
leaf = bufferify(leaf);
var proof = [];
if (typeof index !== 'number') {
index = -1;
for (var i = 0; i < this.leaves.length; i++) {
if (Buffer.compare(leaf, this.leaves[i]) === 0) {
index = i;
}
}
}
if (index <= -1) {
return [];
}
if (this.isBitcoinTree && index === (this.leaves.length - 1)) {
// Proof Generation for Bitcoin Trees
for (var i = 0; i < this.layers.length - 1; i++) {
var layer = this.layers[i];
var isRightNode = index % 2;
var pairIndex = (isRightNode ? index - 1 : index);
if (pairIndex < layer.length) {
proof.push({
position: isRightNode ? 'left' : 'right',
data: layer[pairIndex]
});
}
// set index to parent index
index = (index / 2) | 0;
}
return proof;
}
else {
// Proof Generation for Non-Bitcoin Trees
for (var i = 0; i < this.layers.length; i++) {
var layer = this.layers[i];
var isRightNode = index % 2;
var pairIndex = (isRightNode ? index - 1 : index + 1);
if (pairIndex < layer.length) {
proof.push({
position: isRightNode ? 'left' : 'right',
data: layer[pairIndex]
});
}
// set index to parent index
index = (index / 2) | 0;
}
return proof;
}
};
/**
* verify
* @desc Returns true if the proof path (array of hashes) can connect the target node
* to the Merkle root.
* @param {Object[]} proof - Array of proof objects that should connect
* target node to Merkle root.
* @param {Buffer} targetNode - Target node Buffer
* @param {Buffer} root - Merkle root Buffer
* @return {Boolean}
* @example
* const root = tree.getRoot()
* const proof = tree.getProof(leaves[2])
* const verified = tree.verify(proof, leaves[2], root)
*
*/
MerkleTree.prototype.verify = function (proof, targetNode, root) {
var hash = bufferify(targetNode);
root = bufferify(root);
if (!Array.isArray(proof) ||
!proof.length ||
!targetNode ||
!root) {
return false;
}
for (var i = 0; i < proof.length; i++) {
var node = proof[i];
var isLeftNode = (node.position === 'left');
var buffers = [];
if (this.isBitcoinTree) {
buffers.push(reverse(hash));
buffers[isLeftNode ? 'unshift' : 'push'](reverse(node.data));
hash = this.hashAlgo(Buffer.concat(buffers));
hash = reverse(this.hashAlgo(hash));
}
else {
buffers.push(hash);
buffers[isLeftNode ? 'unshift' : 'push'](node.data);
hash = this.hashAlgo(Buffer.concat(buffers));
}
}
return Buffer.compare(hash, root) === 0;
};
// TODO: documentation
MerkleTree.prototype.getLayersAsObject = function () {
var _a;
var layers = this.getLayers().map(function (x) { return x.map(function (x) { return x.toString('hex'); }); });
var objs = [];
for (var i = 0; i < layers.length; i++) {
var arr = [];
for (var j = 0; j < layers[i].length; j++) {
var obj = (_a = {}, _a[layers[i][j]] = null, _a);
if (objs.length) {
obj[layers[i][j]] = {};
var a = objs.shift();
var akey = Object.keys(a)[0];
obj[layers[i][j]][akey] = a[akey];
if (objs.length) {
var b = objs.shift();
var bkey = Object.keys(b)[0];
obj[layers[i][j]][bkey] = b[bkey];
}
}
arr.push(obj);
}
objs.push.apply(objs, arr);
}
return objs[0];
};
// TODO: documentation
MerkleTree.prototype.print = function () {
MerkleTree.print(this);
};
// TODO: documentation
MerkleTree.prototype.toTreeString = function () {
var obj = this.getLayersAsObject();
return treeify.asTree(obj, true);
};
// TODO: documentation
MerkleTree.prototype.toString = function () {
return this.toTreeString();
};
// TODO: documentation
MerkleTree.bufferify = function (x) {
return bufferify(x);
};
// TODO: documentation
MerkleTree.print = function (tree) {
console.log(tree.toString());
};
return MerkleTree;
}());
exports.MerkleTree = MerkleTree;
function bufferify(x) {
if (!Buffer.isBuffer(x)) {
// crypto-js support
if (typeof x === 'object' && x.words) {
return Buffer.from(x.toString(CryptoJS.enc.Hex), 'hex');
}
else if (isHexStr(x)) {
return Buffer.from(x, 'hex');
}
else if (typeof x === 'string') {
return Buffer.from(x);
}
}
return x;
}
function bufferifyFn(f) {
return function (x) {
var v = f(x);
if (Buffer.isBuffer(v)) {
return v;
}
// crypto-js support
return Buffer.from(f(CryptoJS.enc.Hex.parse(x.toString('hex'))).toString(CryptoJS.enc.Hex), 'hex');
};
}
function isHexStr(v) {
return (typeof v === 'string' && /^(0x)?[0-9A-Fa-f]*$/.test(v));
}
exports["default"] = MerkleTree;

23
index.d.ts vendored
View File

@ -1,23 +0,0 @@
declare module 'merkletreejs' {
interface IOptions {
isBitcoinTree: boolean
}
interface IProof {
position: 'left' | 'right'
data: Buffer
}
export default class MerkleTree {
getRoot: () => Buffer
getLeaves: () => Buffer[]
getLayers: () => Buffer[]
getProof: (leaf: Buffer, index?: number) => IProof[]
verify: (proof: IProof[], targetNode: Buffer, root: Buffer) => boolean
constructor(
leaves: Buffer[],
hashAlgorithm: (data: any) => Buffer,
options?: IOptions
)
}
}

View File

@ -1,12 +1,17 @@
const reverse = require('buffer-reverse')
const CryptoJS = require('crypto-js')
const treeify = require('treeify')
import * as reverse from 'buffer-reverse'
import * as CryptoJS from 'crypto-js'
import * as treeify from 'treeify'
/**
* Class reprensenting a Merkle Tree
* @namespace MerkleTree
*/
class MerkleTree {
export class MerkleTree {
hashAlgo: any
leaves: any
layers: any
isBitcoinTree: boolean
/**
* @desc Constructs a Merkle Tree.
* All nodes and leaves are stored as Buffers.
@ -30,7 +35,7 @@ class MerkleTree {
*
* const tree = new MerkleTree(leaves, sha256)
*/
constructor(leaves, hashAlgorithm, options={}) {
constructor(leaves, hashAlgorithm, options={} as any) {
this.hashAlgo = bufferifyFn(hashAlgorithm)
this.leaves = leaves.map(bufferify)
this.layers = [this.leaves]
@ -138,7 +143,7 @@ class MerkleTree {
* const tree = new MerkleTree(leaves, sha3)
* const proof = tree.getProof(leaves[2], 2)
*/
getProof(leaf, index) {
getProof(leaf, index?) {
leaf = bufferify(leaf)
const proof = []
@ -343,4 +348,4 @@ function isHexStr(v) {
return (typeof v === 'string' && /^(0x)?[0-9A-Fa-f]*$/.test(v))
}
module.exports = MerkleTree
export default MerkleTree

6
package-lock.json generated
View File

@ -4,6 +4,12 @@
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@types/node": {
"version": "11.12.1",
"resolved": "https://registry.npmjs.org/@types/node/-/node-11.12.1.tgz",
"integrity": "sha512-sKDlqv6COJrR7ar0+GqqhrXQDzQlMcqMnF2iEU6m9hLo8kxozoAGUazwPyELHlRVmjsbvlnGXjnzyptSXVmceA==",
"dev": true
},
"acorn": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz",

View File

@ -1,11 +1,12 @@
{
"name": "merkletreejs",
"version": "0.0.22",
"version": "0.0.23",
"description": "Construct Merkle Trees and verify proofs",
"main": "index.js",
"types": "index.d.ts",
"main": "dist/index.js",
"types": "typings/merkletreejs/*",
"scripts": {
"test": "tape test/*.js",
"build": "rm -rf dist/ && tsc",
"docs:md": "node jsdoc.js"
},
"repository": {
@ -36,6 +37,7 @@
},
"homepage": "https://github.com/miguelmota/merkletreejs",
"devDependencies": {
"@types/node": "^11.12.1",
"crypto": "0.0.3",
"ethereumjs-util": "^5.1.2",
"jsdoc-to-markdown": "^3.0.0",

View File

@ -5,7 +5,7 @@ const CryptoJS = require('crypto-js')
const SHA256 = require('crypto-js/sha256')
const SHA3 = require('crypto-js/sha3')
const MerkleTree = require('../')
const { MerkleTree } = require('../')
function sha256(data) {
return crypto.createHash('sha256').update(data).digest()

19
tsconfig.json Normal file
View File

@ -0,0 +1,19 @@
{
"compilerOptions": {
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"types": ["node"],
"baseUrl": "./",
"paths": {
"*": [
"node_modules/*",
"typings/*"
]
},
"outDir": "dist"
},
"exclude": [
"node_modules"
]
}

26
typings/merkletreejs/index.d.ts vendored Normal file
View File

@ -0,0 +1,26 @@
/// <reference types="node" />
declare const reverse: any;
declare const CryptoJS: any;
declare const treeify: any;
declare class merkletreejs {
constructor(leaves: any, hashAlgorithm: any, options?: {});
createHashes(nodes: any): void;
getLeaves(): any;
getRoot(): any;
getProof(leaf: any, index?: any): any[];
verify(proof: any, targetNode: any, root: any): boolean;
getLayersAsObject(): any;
print(): void;
toTreeString(): any;
toString(): any;
static bufferify(x: any): any;
static print(tree: any): void;
hashAlgo: any;
leaves: any;
layers: any;
isBitcoinTree: boolean;
}
declare function bufferify(x: any): any;
declare function bufferifyFn(f: any): (x: any) => Buffer;
declare function isHexStr(v: any): boolean;