Skip to content

Commit

Permalink
fix: constants first
Browse files Browse the repository at this point in the history
  • Loading branch information
marktoda authored and tynes committed Sep 12, 2024
1 parent e7f3365 commit ea4970c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/contracts-bedrock/semver-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,4 @@
"initCodeHash": "0x00b8b883597e67e5c3548e7ba4139ed720893c0acb217dd170bec520cefdfab5",
"sourceCodeHash": "0xf63aff9c38f4c5e9cdbd1f910bc002e16008a592d26c0dcc67929e0024638edd"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ import { ISemver } from "src/universal/interfaces/ISemver.sol";
/// Designed to be backwards compatible with the older StandardL2ERC20 token which was only
/// meant for use on L2.
contract OptimismMintableERC20 is IOptimismMintableERC20, ILegacyMintableERC20, ERC20Permit, ISemver {
/// @notice Address of permit2 on this network.
address public constant PERMIT2 = 0x000000000022D473030F116dDEE9F6B43aC78BA3;

/// @notice Address of the corresponding version of this token on the remote chain.
address public immutable REMOTE_TOKEN;

/// @notice Address of the StandardBridge on this network.
address public immutable BRIDGE;

/// @notice Address of permit2 on this network..
address public constant PERMIT2 = 0x000000000022D473030F116dDEE9F6B43aC78BA3;

/// @notice Decimals of the token
uint8 private immutable DECIMALS;

Expand Down

0 comments on commit ea4970c

Please sign in to comment.