-
Notifications
You must be signed in to change notification settings - Fork 310
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: Token standard #2069
Merged
Merged
feat: Token standard #2069
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
91a5516
feat: add auth entrypoint collection
LHerskind 16637ed
feat: initial token standard ideas
LHerskind 3ee72ab
fix: minor fix on contract
LHerskind 582cfd1
fix: work around no public functions from constructor
LHerskind de7f1d9
test: add tests and minor fixes
LHerskind 642308e
feat: add designated caller
LHerskind 9e7bdd7
chore: add to ci
LHerskind b05032f
chore: rebase + rebuild noir
LHerskind 3b7d28a
feat: add nonces
LHerskind d36a526
refactor: Extend simulator to make checks concise
LHerskind 90a1823
chore: rebase goodies
LHerskind 2811d45
fix: Update code size log on deployment
LHerskind 2d52f0f
refactor: shared context and check response in `account_interface`
LHerskind 889669d
refactor: account contract cleanup for less code duplication
LHerskind 6bd380b
feat: add burn function + tests
LHerskind 64f7e1f
feat: Include contract address in message hash
LHerskind 37ac39a
chore: rebase
LHerskind 4221061
chore: update cli_docs list
LHerskind d0a97a7
fix: catch public nullifier double-spends early in sequencer
LHerskind 5dafcab
chore: address comments
LHerskind e368494
chore: fixing some rebase issues
LHerskind 3a70678
chore: address api changes
LHerskind 256d284
chore: fix maddia comments
LHerskind e225689
fix: remove builder stages from ypb
Maddiaa0 c337f89
chore: bump contracts
Maddiaa0 0249c80
Merge branch 'master' into lh/token-standard
Maddiaa0 d5c8fd0
Merge branch 'master' of github.com:AztecProtocol/aztec-packages into…
Maddiaa0 40dda48
Revert "fix: remove builder stages from ypb"
Maddiaa0 fe1e059
fix: add token contract to workspace
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 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 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 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 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
543 changes: 541 additions & 2 deletions
543
yarn-project/aztec.js/src/abis/schnorr_auth_witness_account_contract.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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 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 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 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.
This takes in the targetContractAddress, why is it called selector?
In
executor
this name is used again but with different fieldsThere 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.
Think I copied it a round because the 32byte strings tilted me on some error codes. Will fix it.