You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Various devs (e.g. zkpassport) want support for apps that contain UH recursive verifiers. This support can almost be taken for granted because in general we plan to support any app that can be written in noir but there are at least two caveats:
Requires support for goblinized EC operations in apps, i.e. apps can add ecc ops to the queue. This is not really an issue in terms of implementation (we already assume this at the time of writing. It should also be supported by default in the but likely adds a bit of cost to all transactions through the merge work even though most apps won't need to use it.
Requires logic for handling the pairing points output from the recursive verifier. This is a bit trickier because it likely means assuming that all apps contain public inputs associated with an optional set of pairing inputs. These public inputs will have to be passed along from circuit to circuit until they can be aggregated with the points output from the decider recursive verifier.
The text was updated successfully, but these errors were encountered:
Various devs (e.g. zkpassport) want support for apps that contain UH recursive verifiers. This support can almost be taken for granted because in general we plan to support any app that can be written in noir but there are at least two caveats:
The text was updated successfully, but these errors were encountered: