-
Notifications
You must be signed in to change notification settings - Fork 607
feat(public kernel): add new_commitments, new_nullifiers, new_l2_to_l1_msgs aggregation #753
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
Merged
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
29ba730
fix: add array overflow composer error
Maddiaa0 0e4ed78
fix: add negative test case for array overflow
Maddiaa0 67beb49
fix: update ts tests
Maddiaa0 8c597f7
fix: snapshot
Maddiaa0 2fc0721
feat: add new_commitments aggregation to public kernel
Maddiaa0 855d7c8
fix: update ts gen
Maddiaa0 2d6dd13
fix: update snapshot
Maddiaa0 4f1807b
fix: hack cbind compiler output
Maddiaa0 53db311
fix: lint bindings a posteriori
Maddiaa0 21a712d
feat(): include l2 to l1 message propagation
Maddiaa0 ea6d959
fix: reduce init number of l2 to l1 messages in test prev kernel test
Maddiaa0 1fcde70
fix: lint
Maddiaa0 829c0a4
fix: dont create full public circuits for the tests
Maddiaa0 5364b22
fix: we appease the linter
Maddiaa0 34d0742
fix: update snapshot to be half full
Maddiaa0 2038413
fix: review nits
Maddiaa0 5c1606c
cleanup
Maddiaa0 caa9527
Merge branch 'master' of github.com:AztecProtocol/aztec-packages into…
Maddiaa0 4ed27be
fix: update merge snapshots
Maddiaa0 ff13b71
Merge branch 'md/array-push-assertions' into md/new-commitments-public
Maddiaa0 0faef39
Merge branch 'master' of github.com:AztecProtocol/aztec-packages into…
Maddiaa0 288748f
lint
Maddiaa0 314cd67
Merge branch 'master' into md/new-commitments-public
Maddiaa0 a609186
fix: drop stack from l2 to l1 messages
Maddiaa0 b58ee32
fix: add nullifiers
Maddiaa0 e2853f8
feat: add test for static call nullifier | commitment creation
Maddiaa0 cba25a1
fix: re-run generator
Maddiaa0 4d6c8ed
fix: update snapshot with new nullifiers
Maddiaa0 9a9eee1
fix: update private call stack item value
Maddiaa0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
187 changes: 169 additions & 18 deletions
187
circuits/cpp/src/aztec3/circuits/kernel/public/.test.cpp
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
in the private kernel, we have a check here to see if the call is static, since no changes are allowed. Is this also true for public?
https://github.com/AztecProtocol/aztec3-packages/blob/c6b68f7f05ba97d41d32d0eb3b016aa9ce670d04/circuits/cpp/src/aztec3/circuits/kernel/private/private_kernel_circuit.cpp#L101
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.
Great catch this looks like it should be here too!