Skip to content

Instantly share code, notes, and snippets.

@syjcnss
Created March 21, 2022 11:25
Show Gist options
  • Save syjcnss/0412188c0df3db228cb98f7f5a740268 to your computer and use it in GitHub Desktop.
Save syjcnss/0412188c0df3db228cb98f7f5a740268 to your computer and use it in GitHub Desktop.
compilers: {
solc: {
version: "0.6.6",
settings: { // See the solidity docs for advice about optimization and evmVersion
optimizer: {
enabled: true,
runs: 999999
},
evmVersion: "istanbul",
outputSelection: {
"*": {
"": [
"ast"
],
"*": [
"evm.bytecode.object",
"evm.deployedBytecode.object",
"abi",
"evm.bytecode.sourceMap",
"evm.deployedBytecode.sourceMap",
"metadata"
]
},
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment