Commit 7bf918ec authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #4877 from ethereum-optimism/jm/fix-IERC165

fix(ctb): add is IERC165 to IOptimismMintableERC20
parents 17b02c5e 7c0a2cc3
---
'@eth-optimism/contracts-bedrock': patch
---
add is IERC165 to IOptimismMintableERC20
...@@ -9,7 +9,7 @@ import { IERC165 } from "@openzeppelin/contracts/utils/introspection/IERC165.sol ...@@ -9,7 +9,7 @@ import { IERC165 } from "@openzeppelin/contracts/utils/introspection/IERC165.sol
* separate interface so that it can be used in custom implementations of * separate interface so that it can be used in custom implementations of
* OptimismMintableERC20. * OptimismMintableERC20.
*/ */
interface IOptimismMintableERC20 { interface IOptimismMintableERC20 is IERC165 {
function remoteToken() external returns (address); function remoteToken() external returns (address);
function bridge() external returns (address); function bridge() external returns (address);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment