-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: use kzg-rs for kzg point evaluation #1018
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd like to keep c-kzg as "kzg" for now so we don't break anything just yet
crates/eips/src/eip4844/sidecar.rs
Outdated
#[cfg(feature = "c-kzg")] | ||
pub fn validate( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there a kzg-rs equivalent to this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, but I'm on it.
[patch.crates-io] | ||
kzg-rs = { git = "https://github.com/leruaa/kzg-rs", branch = "verify_blobs" } | ||
bls12_381 = { git = "https://github.com/leruaa/bls12_381", branch = "msm_variable_base" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These patches may be removed once succinctlabs/kzg-rs#3 is merged.
Motivation
Closes #1017
Solution
PR Checklist