Package Exports
- merkle-patricia-tree
- merkle-patricia-tree/index
- merkle-patricia-tree/sha3.js
- merkle-patricia-tree/trieNode
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (merkle-patricia-tree) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
#modified merkle patricia tree
This is an implementation of the modified merkle patricia tree as specified in the Ethereum'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.
- Ethereum's yellow paper
Installation
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())
});
});API
new new Trie([db], [root])
new Trie([root])
Creates a new Trie object
db- A instance of levelup or compatiable API. If no db isnullor left undefined then the the trie will be stored in memory vai memdownroot- A hexStringorBufferfor the root of a prevously stored trie.
Trie Properties
root- The root of thetrieas aBufferisCheckpoint- ABooleandetermining if you are saving to a checkpoint or directly to the dbEMPTY_TRIE_ROOT- Abufferthat is a the Root for an empty trie.
Trie Methods
trie.put(key, value, cb)
Stores a give value at the give key
key- the key as aBufferorStringvalue- the value to be storedcb- a callbackFunctionwhich is given the argumneterr- for an errors that may have occured
trie.get(key, cb)
Retrieves a value stored at a key
key- the key as aBufferorStringcb- a callbackFunctionwhich is given the argumnetserr- for an errors that may have occured andvlue- The found value in aBufferor if no value was foundnull.
trie.delete(key, cb)
Removes a value
key- the key as aBufferorStringcb- a callbackFunctionwhich is given the argumneterr- for an errors that may have occured
trie.checkpoint()
Creates a checkpoint that can later be reverted to or commited. After this is called, no changes to the trie will be permanently saved until commit is called.
trie.commit(cb)
Commits a checkpoint to the trie
cb- a callbackFunction
trie.revert()
revets the trie to the state it was at when checkpoint was first called
trie.batch(operations)
Give an hash of operation adds them to the DB
- operations a hash of key/values to add to the trie.
example
javascript var ops = { 'dog': 'dogecoin', 'cat': 'meow', 'bird': '' //delete bird }
trie.deleteState([stateRoot], cb)
Deletes all the nodes of a given stateroot. If no stateroot is given then it will delete the current state.
cb- a callbackFunction
trie.createReadStream()
returns a read stream. The data event is given an Object hat has two propeties; the key and the value. Both should be Buffers.
examples
see this blog post
Testing
npm test
Test use mocha