Commit 7c0a2cc3 authored by Maurelian's avatar Maurelian

fix(ctb): add is IERC165 to IOptimismMintableERC20

parent 911813cb
---
'@eth-optimism/contracts-bedrock': patch
---
add is IERC165 to IOptimismMintableERC20
......@@ -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
* OptimismMintableERC20.
*/
interface IOptimismMintableERC20 {
interface IOptimismMintableERC20 is IERC165 {
function remoteToken() 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