-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4be82be
commit 40f2538
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,36 @@ A cryptographic library that is compatible with the KZG commitment scheme used i | |
|
||
The cryptography implemented in this library is the prerequisite needed for Ethereum's version of Data Availability Sampling(DAS). The library has been implemented in a modular way, so one can also use the underlying polynomial commitment scheme, for a different purpose. | ||
|
||
## Installation | ||
|
||
### Rust | ||
|
||
``` | ||
cargo add rust_eth_kzg | ||
``` | ||
|
||
### Node | ||
|
||
``` | ||
npm i @crate-crypto/node-eth-kzg | ||
``` | ||
|
||
### Java | ||
|
||
``` | ||
pkg:maven/io.github.crate-crypto/[email protected] | ||
``` | ||
|
||
### CSharp | ||
|
||
``` | ||
dotnet add package EthKZG.Bindings | ||
``` | ||
|
||
### Nim | ||
|
||
> Use the github URL for Nim. | ||
## Building the source | ||
|
||
This library is written in Rust and offers bindings to C, C#, node.js, golang, Java and Nim. These bindings can be found in the `bindings` folder. The bindings expose an API that is compatible with the API needed for Ethereum. | ||
|