Skip to content
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

fix: mock superchain version #75

Open
wants to merge 13 commits into
base: sc/superchain-erc20-redesign
Choose a base branch
from
4 changes: 4 additions & 0 deletions packages/contracts-bedrock/test/L2/SuperchainERC20.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ import { SuperchainERC20, ISuperchainERC20Extension } from "src/L2/SuperchainERC
import { ISuperchainERC20Errors } from "src/L2/interfaces/ISuperchainERC20.sol";

contract SuperchainERC20Implementation is SuperchainERC20 {
/// @notice Semantic version.
/// @custom:semver 1.0.0-mock
string public constant override version = "1.0.0-mock";

function name() public pure override returns (string memory) {
return "SuperchainERC20";
}
Expand Down