Go to file
smart_ex 3da67b29ed update lib es2020 2022-04-04 18:44:15 +10:00
.github/workflows build failure notification 2020-08-19 11:35:14 +03:00
lib implement indexOf with fromIndex param 2022-03-28 18:21:32 +10:00
src implement indexOf with fromIndex param 2022-03-28 18:21:32 +10:00
test fix deserialize method 2022-03-28 17:44:50 +10:00
.editorconfig initial 2020-07-31 06:15:29 +03:00
.eslintrc initial typescript edit 2022-02-22 18:45:31 +10:00
.gitignore update tsconfig 2022-03-14 19:41:45 +10:00
.nvmrc add test coverage. more tests 2022-03-01 11:16:52 +10:00
.prettierrc fix trailingComma 2021-07-06 13:51:06 +03:00
README.md update Readme 2022-03-29 18:37:37 +10:00
package-lock.json fix deserialize method 2022-03-28 17:44:50 +10:00
package.json fix deserialize method 2022-03-28 17:44:50 +10:00
tsconfig.json update lib es2020 2022-04-04 18:44:15 +10:00

README.md

Merkle Tree GitHub Workflow Status npm

This is a fixed depth merkle tree implementation with sequential inserts

Usage

import { MerkleTree, PartialMerkleTree } from 'fixed-merkle-tree'

const tree = new MerkleTree(10, [1, 2, 3, 4, 5])
tree.insert(6)
tree.update(3, 42)
const path = tree.proof(3)
console.log(path)
// output
{
  pathElements: [
    42,
    '4027992409016347597424110157229339967488',
    '2008015086710634950773855228781840564224',
    '938972308169430750202858820582946897920',
    '3743880566844110745576746962917825445888',
    '2074434463882483178614385966084599578624',
    '2808856778596740691845240322870189490176',
    '4986731814143931240516913804278285467648',
    '1918547053077726613961101558405545328640',
    '5444383861051812288142814494928935059456'
  ],
  pathIndices: [
      0, 1, 0, 0, 0,
      0, 0, 0, 0, 0
    ],
  pathPositions: [
      3, 0, 1, 0, 0,
      0, 0, 0, 0, 0
    ],
  pathRoot: '3917789723822252567979048877718291611648'
}

const treeEdge = tree.getTreeEdge(2)
const partialTree = new PartialMerkleTree(10, treeEdge, tree.elements.slice(treeEdge.edgeIndex))
console.log(partialTree.elements)
//  [<2 empty items >, 3, 42, 5, 6]

const proofPath = partialTree.proof(3)
console.log(proofPath)
// output
{
  pathElements: [
    42,
    '4027992409016347597424110157229339967488',
    '2008015086710634950773855228781840564224',
    '938972308169430750202858820582946897920',
    '3743880566844110745576746962917825445888',
    '2074434463882483178614385966084599578624',
    '2808856778596740691845240322870189490176',
    '4986731814143931240516913804278285467648',
    '1918547053077726613961101558405545328640',
    '5444383861051812288142814494928935059456'
  ],
  pathIndices: [
    0, 1, 0, 0, 0,
    0, 0, 0, 0, 0
  ],
  pathPositions: [
    3, 0, 1, 0, 0,
    0, 0, 0, 0, 0
  ],
  pathRoot: '3917789723822252567979048877718291611648'
}