forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 1
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: superchain erc20 redesign #73
Closed
Closed
Changes from 11 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
ae024a5
feat: add superchain erc20 bridge (#61)
agusduha 2a22161
refactor: optimism superchain erc20 redesign (#62)
0xDiscotech 6aaf905
test: add superchain erc20 bridge tests (#65)
agusduha 11fda67
chore: update missing bridge on natspec (#69)
0xDiscotech 7a69a7e
fix: remove superchain erc20 base (#70)
agusduha 07c9c77
refactor: update isuperchainweth (#71)
0xDiscotech d9bdad1
feat: rename mint/burn and add SuperchainERC20 (#74)
agusduha 2e507b2
fix: refactor zero check (#76)
agusduha 7fcaf6c
Merge branch 'develop' into fix/redesign-merge-conflicts
agusduha 619f23c
fix: pre pr
agusduha 1981789
Merge pull request #77 from defi-wonderland/fix/redesign-merge-conflicts
agusduha ae019b8
fix: semver natspec check failure (#79)
agusduha 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
Submodule forge-std
updated
25 files
+1 −1 | README.md | |
+1 −1 | package.json | |
+1 −14 | src/StdChains.sol | |
+3 −3 | src/StdCheats.sol | |
+3 −18 | src/StdInvariant.sol | |
+0 −104 | src/StdJson.sol | |
+1 −1 | src/StdStorage.sol | |
+0 −104 | src/StdToml.sol | |
+60 −290 | src/Vm.sol | |
+608 −635 | src/console.sol | |
+1,555 −1 | src/console2.sol | |
+2 −2 | src/interfaces/IERC4626.sol | |
+5 −1 | src/mocks/MockERC721.sol | |
+4 −693 | src/safeconsole.sol | |
+1 −1 | test/StdAssertions.t.sol | |
+12 −19 | test/StdChains.t.sol | |
+10 −10 | test/StdCheats.t.sol | |
+12 −12 | test/StdError.t.sol | |
+1 −1 | test/StdJson.t.sol | |
+14 −4 | test/StdMath.t.sol | |
+5 −13 | test/StdStorage.t.sol | |
+1 −1 | test/StdStyle.t.sol | |
+1 −1 | test/StdToml.t.sol | |
+12 −12 | test/StdUtils.t.sol | |
+6 −9 | test/Vm.t.sol |
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.
why this change?
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.
Compiler error saying that the function uses
console.log
and it should beview