@vaporyjs/merkle-patricia-tree

2.1.2 • Public • Published

SYNOPSIS

NPM Package Build Status Coverage Status Gitter or #vaporyjs on freenode

js-standard-style

This is an implementation of the modified merkle patricia tree as specified in the Vapory's yellow paper.

The modified Merkle Patricia tree (trie) provides a persistent data structure to map between arbitrary-length binary data (byte arrays). It is defined in terms of a mutable data structure to map between 256-bit binary fragments and arbitrary-length binary data. The core of the trie, and its sole requirement in terms of the protocol specification is to provide a single 32-byte value that identifies a given set of key-value pairs.
- Vapory's yellow paper

The only backing store supported is LevelDB through the levelup module.

INSTALL

npm install merkle-patricia-tree

USAGE

var Trie = require('merkle-patricia-tree'),
levelup = require('levelup'),
db = levelup('./testdb'),
trie = new Trie(db); 

trie.put('test', 'one', function () {
  trie.get('test', function (err, value) {
    if(value) console.log(value.toString())
  });
});

Also see this blog post.

API

./docs/

TESTING

npm test

LICENSE

MPL-2.0

Readme

Keywords

Package Sidebar

Install

npm i @vaporyjs/merkle-patricia-tree

Weekly Downloads

0

Version

2.1.2

License

MPL-2.0

Unpacked Size

327 MB

Total Files

820

Last publish

Collaborators

  • marlonhanks