Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zanjeerplatform/csmt
Compact Sparse Merkle Trees (CSMT) with pluggable storage.
https://github.com/zanjeerplatform/csmt
blockchain elixir-lang erlang merkle-tree
Last synced: 1 day ago
JSON representation
Compact Sparse Merkle Trees (CSMT) with pluggable storage.
- Host: GitHub
- URL: https://github.com/zanjeerplatform/csmt
- Owner: ZanjeerPlatform
- License: other
- Created: 2018-10-11T11:51:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-13T19:44:16.000Z (over 6 years ago)
- Last Synced: 2025-02-14T08:48:53.354Z (2 days ago)
- Topics: blockchain, elixir-lang, erlang, merkle-tree
- Language: Elixir
- Homepage: https://hex.pm/packages/csmt
- Size: 14.6 KB
- Stars: 38
- Watchers: 7
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CSMT
CSMT package implements the [**Compact Sparse Merkle tree**](https://osf.io/8mcnh/download) whitepaper. It is used inside [**Bargad Framework**](https://github.com/ZanjeerPlatform/bargad) for its Verifiable Map mode of operation.
EthResearch discussion
https://ethresear.ch/t/compact-sparse-merkle-trees/3741CSMT
https://eprint.iacr.org/2018/955.pdf## Installation
The package can be installed by adding `csmt` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:csmt, "~> 1.0"}
]
end
```The docs can be found at [https://hexdocs.pm/csmt](https://hexdocs.pm/csmt).