Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dfinity-radix-tree

Package Overview
Dependencies
Maintainers
2
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dfinity-radix-tree

This implements a binary merkle radix tree

  • 0.2.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-71.43%
Maintainers
2
Weekly downloads
 
Created
Source

NPM Package Build Status Coverage Status

js-standard-style

Synopsis

:evergreen_tree: This implements a binary merkle radix tree. The point of using a binary radix tree is that it generates smaller proof size then trees with larger radixes. This tree is well suited for storing large dictionaries of fairly random keys. And is optimized for storing keys of the same length. If the keys are not random better performance can be archived by hashing them first. It builds on top of ipld-graph-builder and the resulting state and proofs are generated using it.

Install

npm install dfinity-radix-tree

Usage

const RadixTree = require('js-dfinity-radix-tree')
const level = require('level')
const db = level('./tempdb')

async function main () {
  const prover = new RadixTree({
    db: db
  })

  await prover.set('test', Buffer.from('value'))
  await prover.set('doge', Buffer.from('coin'))
  await prover.set('cat', Buffer.from('dog'))
  await prover.set('monkey', Buffer.from('wrench'))

  // create a merkle root and save the tree
  const merkleroot = await prover.flush()

  // start a new Instance with the root
  const verifier = new RadixTree({
    db: db,
    root: merkleroot
  })

  const result = await verifier.get('monkey')
  console.log(result.value.toString())
}

main()

API

'./docs/'

Specification

'./docs/spec.md'

Benchmarks

The result of the benchmarks show that the binary radix tree produces proofs on average 67% small then the Ethereum Trie with 100000 keys stored.

'./benchmarks/benchmarks.md'

License

(C) 2018 DFINITY STIFTUNG

All code and designs are open sourced under GPL V3.

image

Keywords

FAQs

Package last updated on 12 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc