Recursive Proof with v0.9.1 #1034
stephanfeb
started this conversation in
General
Replies: 1 comment 2 replies
-
Have a look at the examples: https://pkg.go.dev/github.com/consensys/gnark@v0.9.2-0.20240205220526-e043c9fe9585/std/recursion/groth16#pkg-overview Please note that the Groth16 verifier is not complete. Notably due to #987 it is not possible to verify all proofs (which use commitments). |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I noted that the gnark playground has a recursive example using the older API from version 0.8.x.
The newer 0.9.x APIs use generics, and it was non-obvious to me how I would reconstruct the "Public Inputs" needed to verify the Inner Circuit using the new APIs.
I have settled on the following bit of code which basically attempts to reconstructs the public portion of the InnerWitness.
Am I doing this correctly ?
Beta Was this translation helpful? Give feedback.
All reactions