Commit 996e8b64 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #4881 from ethereum-optimism/ctb/mintable-721-version

contracts-bedrock: be explicit with mintable erc721 token version
parents 7bf918ec bad02886
...@@ -39,6 +39,20 @@ const config: HardhatUserConfig = { ...@@ -39,6 +39,20 @@ const config: HardhatUserConfig = {
}, },
}, },
}, },
{
version: '0.8.15',
settings: {
optimizer: { enabled: true, runs: 200 },
metadata: {
bytecodeHash: 'none',
},
outputSelection: {
'*': {
'*': ['storageLayout'],
},
},
},
},
], ],
}, },
gasReporter: { gasReporter: {
......
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0; pragma solidity 0.8.15;
import { import {
ERC721Enumerable 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