Update README
This commit is contained in:
parent
14d5c8e6f8
commit
7b607aebab
|
@ -1,19 +1,13 @@
|
||||||
# C-KZG-4844: A minimal library for EIP-4844 Polynomial Commitments
|
# C-KZG-4844: A minimal library for EIP-4844 Polynomial Commitments
|
||||||
|
|
||||||
This is a copy of C-KZG stripped down to support the [Polynomial Commitments](https://github.com/ethereum/consensus-specs/blob/dev/specs/eip4844/polynomial-commitments.md) API:
|
This is a copy of C-KZG stripped down to support the [Polynomial Commitments](https://github.com/ethereum/consensus-specs/blob/dev/specs/eip4844/polynomial-commitments.md) API:
|
||||||
- `bytes_to_bls_field`
|
- `compute_aggregate_kzg_proof`
|
||||||
- `vector_lincomb`
|
- `verify_aggregate_kzg_proof`
|
||||||
- `g1_lincomb`
|
|
||||||
- `blob_to_kzg_commitment`
|
- `blob_to_kzg_commitment`
|
||||||
- `verify_kzg_proof`
|
|
||||||
- `compute_kzg_proof`
|
|
||||||
- `evaluate_polynomial_in_evaluation_form`
|
|
||||||
|
|
||||||
and `compute_powers` from the [Validator](https://github.com/ethereum/consensus-specs/blob/dev/specs/eip4844/validator.md) API.
|
|
||||||
|
|
||||||
We also provide `load_trusted_setup` and `free_trusted_setup` to load the
|
We also provide `load_trusted_setup` and `free_trusted_setup` to load the
|
||||||
trusted setup data from a file into an object that can be passed to the API
|
trusted setup data from a file into an object that can be passed to the API
|
||||||
functions.
|
functions, and conversions to/from byte arrays for the relevant types.
|
||||||
|
|
||||||
The only dependency is [blst](https://github.com/supranational/blst).
|
The only dependency is [blst](https://github.com/supranational/blst).
|
||||||
Ensure `blst.h` is provided at `../inc` and `libblst.a` at `../lib`.
|
Ensure `blst.h` is provided at `../inc` and `libblst.a` at `../lib`.
|
||||||
|
|
Loading…
Reference in New Issue