8907fbcfe2
* Expose computeKzgProof * Revert changes to bytes_to/from_bls_field * Update comments * Revert changes to bytes_from_bls_field * Revert change to parameter name * Add compute_kzg_proof to readme * Refactor in support of asn's PR * Clean up a little * Fix param name doc * Introduce Bytes32 type * Update bindings * Replaces bytes with b to match spec |
||
---|---|---|
.. | ||
gradle/wrapper | ||
src | ||
.gitignore | ||
Makefile | ||
README.md | ||
build.gradle | ||
c_kzg_4844_jni.c | ||
c_kzg_4844_jni.h | ||
gradlew | ||
gradlew.bat | ||
settings.gradle |
README.md
Java binding
Build shared library
Prerequisites
- Follow the instructions in the README.md to build blst.
JAVA_HOME
environment variable is set to a JDK with aninclude
folder containing ajni.h
file.
Build
make build
This will install the shared library in src/main/resources/ethereum/ckzg4844/lib
with a folder
structure
and name according to the preset selected (mainnet or minimal) and your OS.
All variables which could be passed to the make
command and the defaults can be found in
the Makefile.
Test
make test
Benchmark
JMH is used for benchmarking. See CKZG4844JNIBenchmark.java for more information.
make benchmark
Library
The library which uses this binding and publishes a package to a public maven repo is jc-kzg-4844.