git ssb

0+

wanderer🌟 / js-dfinity-radix-tree



Commit ad9db87c1c97950a008f8f2e0ea3d81cf300cf06

Update README.md

wanderer authored on 8/4/2017, 10:31:26 PM
GitHub committed on 8/4/2017, 10:31:26 PM
Parent: 4143b5779d03c5527c674008885b39d94cfd76ec

Files changed

README.mdchanged
README.mdView
@@ -9,10 +9,12 @@
99
1010 # SYNOPSIS
1111 This implements a binary merkle radix tree. The point of using a binary radix
1212 tree is that it generates smaller proof size then trees with larger radixes.
13-This tree is well suited for storing large dictonaries of fairly random key. If
13 +This tree is well suited for storing large dictonaries of fairly random keys. If
1414 the keys are not random better performance can be achived by hashing them first.
15 +It builds on top of [ipld-graph-builder](https://github.com/ipld/js-ipld-graph-builder)
16 +and the resulting state and proofs are generated using it.
1517
1618 # INSTALL
1719 `npm install merkle-radix-tree`
1820
@@ -56,15 +58,15 @@
5658 # API
5759 ['./docs/'](./docs/index.md)
5860
5961 # SPEC
60-['./docs/spec.md']('./docs/spec.md')
62 +['./docs/spec.md'](./docs/spec.md)
6163
6264 # BENCHMARKS
6365 The result of the benchmarks show that the binary radix tree produces proofs on
64-average %67 small then Ethereum Trie with 100000 keys stored.
66 +average %67 small then the Ethereum Trie with 100000 keys stored.
6567
66-['./benchmarks/benchmarks.md']('./docs/spec.md')
68 +['./benchmarks/benchmarks.md']('./benchmarks/benchmarks.md')
6769
6870 # TESTS
6971 `npm run tests`
7072

Built with git-ssb-web