pub fn verify_proof(
commitment: G1Affine,
proof: G1Affine,
value_fr: Fr,
z_fr: Fr,
) -> Result<bool, KzgError>
Expand description
Ref: https://github.com/ethereum/consensus-specs/blob/master/specs/deneb/polynomial-commitments.md#verify_proof TODO(anupsv): Accept bytes instead of Fr element and Affine points. Ref: https://github.com/Layr-Labs/rust-kzg-bn254/issues/30