Giter VIP home page Giter VIP logo

fixed-merkle-tree's Introduction

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'
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.