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
refactor: optimism superchain erc20 redesign #62
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9ed311d
refactor: use oz upgradeable erc20 as dependency
0xDiscotech 4d82716
Merge branch 'sc/superchain-erc20-redesign' into refactor/super-erc20
0xDiscotech ad46914
refactor: remove op as dependency
0xDiscotech aa4c505
chore: update stack vars name on test
0xDiscotech 4314369
chore: remove empty gitmodules file
0xDiscotech 9ef170d
chore: update superchain weth errors
0xDiscotech 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,25 @@ pragma solidity ^0.8.0; | |
// Interfaces | ||
import { IERC20Solady } from "src/vendor/interfaces/IERC20Solady.sol"; | ||
|
||
/// @title ISuperchainERC20Errors | ||
/// @notice Interface containing the errors added in the SuperchainERC20 implementation. | ||
interface ISuperchainERC20Errors { | ||
/// @notice Thrown when attempting to relay a message and the function caller (msg.sender) is not | ||
/// L2ToL2CrossDomainMessenger. | ||
error CallerNotL2ToL2CrossDomainMessenger(); | ||
|
||
/// @notice Thrown when attempting to relay a message and the cross domain message sender is not `address(this)` | ||
error InvalidCrossDomainSender(); | ||
|
||
/// @notice Thrown when attempting to perform an operation and the account is the zero address. | ||
error ZeroAddress(); | ||
} | ||
|
||
/// @title ISuperchainERC20Extensions | ||
/// @notice Interface for the extensions to the ERC20 standard that are used by SuperchainERC20. | ||
/// Exists in case developers are already importing the ERC20 interface separately and | ||
/// importing the full SuperchainERC20 interface would cause conflicting imports. | ||
interface ISuperchainERC20Extensions { | ||
interface ISuperchainERC20Extensions is ISuperchainERC20Errors { | ||
/// @notice Emitted when tokens are sent from one chain to another. | ||
/// @param from Address of the sender. | ||
/// @param to Address of the recipient. | ||
|
@@ -36,21 +50,6 @@ interface ISuperchainERC20Extensions { | |
function relayERC20(address _from, address _to, uint256 _amount) external; | ||
} | ||
|
||
/// @title ISuperchainERC20Errors | ||
/// @notice Interface containing the errors added in the SuperchainERC20 implementation. | ||
interface ISuperchainERC20Errors { | ||
/// @notice Thrown when attempting to relay a message and the function caller (msg.sender) is not | ||
/// L2ToL2CrossDomainMessenger. | ||
error CallerNotL2ToL2CrossDomainMessenger(); | ||
|
||
/// @notice Thrown when attempting to relay a message and the cross domain message sender is not this | ||
/// SuperchainERC20. | ||
error InvalidCrossDomainSender(); | ||
|
||
/// @notice Thrown when attempting to perform an operation and the account is the zero address. | ||
error ZeroAddress(); | ||
} | ||
|
||
/// @title ISuperchainERC20 | ||
/// @notice Combines Solady's ERC20 interface with the SuperchainERC20Extensions interface. | ||
interface ISuperchainERC20 is IERC20Solady, ISuperchainERC20Extensions, ISuperchainERC20Errors { } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here, but leaving it as it is because it uses solady |
||
interface ISuperchainERC20 is IERC20Solady, ISuperchainERC20Extensions { } |
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.
Hmm the weth contract does not use these errors
idk if there is a better way to omit them, or maybe replace the current ones with these because they are more explicit, wdyt?
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.
I'm up to replace them since they're way more explicit