hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
22 lines (20 loc) • 624 B
text/typescript
import type { CompilerInput } from "../../../types/solidity.js";
export const DEFAULT_OUTPUT_SELECTION: CompilerInput["settings"]["outputSelection"] =
{
"*": {
"": ["ast"],
"*": [
"abi",
"evm.bytecode.linkReferences",
"evm.bytecode.object",
"evm.bytecode.opcodes",
"evm.bytecode.sourceMap",
"evm.deployedBytecode.immutableReferences",
"evm.deployedBytecode.linkReferences",
"evm.deployedBytecode.object",
"evm.deployedBytecode.opcodes",
"evm.deployedBytecode.sourceMap",
"evm.methodIdentifiers",
],
},
};