parent
a22c77481c
commit
884f42c5af
@ -0,0 +1,26 @@ |
||||
module.exports = { |
||||
compilerInput: compilerInput |
||||
} |
||||
|
||||
function compilerInput (contracts) { |
||||
return JSON.stringify({ |
||||
language: 'Solidity', |
||||
sources: { |
||||
'test.sol': { |
||||
content: contracts |
||||
} |
||||
}, |
||||
settings: { |
||||
optimizer: { |
||||
enabled: false, |
||||
runs: 500 |
||||
} |
||||
}, |
||||
outputSelection: { |
||||
'*': { |
||||
'': [ 'legacyAST' ], |
||||
'*': [ 'abi', 'metadata', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates' ] |
||||
} |
||||
} |
||||
}) |
||||
} |
Loading…
Reference in new issue