-
Notifications
You must be signed in to change notification settings - Fork 330
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: plonk verification with .bytes()
#1753
Conversation
SP1 Performance Test Results Branch: yuwen/remove-raw-with-checksum
|
.bytes()
@@ -1,7 +1,7 @@ | |||
[package] | |||
name = "sp1-verifier" | |||
description = "Verifier for SP1 Groth16 and Plonk proofs." | |||
readme = "../../README.md" | |||
readme = "README.md" |
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.
on one hand, this crate is pretty independent, so by that logic it deserves its own readme.
on the other hand, i'm gonna write some docs in the mdbook, so i can just have this point to the workspace readme maybe?
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.
Doesn't matter
Verifies plonk proofs using .bytes() instead of .raw_with_checksum() in the verifier crate.
Preparing for crates.io release with 3.0.0 sdk -- so this PR also updates the verifier readme to point to the package readme instead of the workspace readme, does some better error handling, and adds some comments