pull/5370/head
filip mertens 2 years ago
parent 1a0aba6c2d
commit 6aaea82657
  1. 4
      libs/remix-solidity/src/compiler/compiler-input.ts
  2. 2
      libs/remix-solidity/src/compiler/types.ts

@ -16,9 +16,9 @@ export default (sources: Source, opts: CompilerInputOptions): string => {
outputSelection: { outputSelection: {
'*': { '*': {
'': ['ast'], '': ['ast'],
'*': [] //'*': []
//'*' : ['abi', 'metadata'] //'*' : ['abi', 'metadata']
//'*': ['abi', 'metadata', 'devdoc', 'userdoc', 'storageLayout', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates', 'evm.assembly'] '*': ['abi', 'metadata', 'devdoc', 'userdoc', 'storageLayout', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates', 'evm.assembly']
} }
} }
} }

@ -124,7 +124,7 @@ export interface CompilerInput {
outputSelection?: { outputSelection?: {
'*': { '*': {
'': [ 'ast' ], '': [ 'ast' ],
'*': any '*': [ 'abi', 'metadata', 'devdoc', 'userdoc', 'storageLayout', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates', 'evm.assembly' ]
} }
} }
} }

Loading…
Cancel
Save