Commit 7bf81847 authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub

Merge branch 'develop' into...

Merge branch 'develop' into dependabot/go_modules/bss-core/github.com/prometheus/client_golang-1.11.1
parents 4d2391fe 996e8b64
---
'@eth-optimism/contracts-bedrock': patch
---
add is IERC165 to IOptimismMintableERC20
......@@ -39,6 +39,20 @@ const config: HardhatUserConfig = {
},
},
},
{
version: '0.8.15',
settings: {
optimizer: { enabled: true, runs: 200 },
metadata: {
bytecodeHash: 'none',
},
outputSelection: {
'*': {
'*': ['storageLayout'],
},
},
},
},
],
},
gasReporter: {
......
......@@ -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);
......
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
pragma solidity 0.8.15;
import {
ERC721Enumerable
......
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