From 9e01f4c9a30a0fd06c105222abfa1ab09e8fec3a Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Tue, 4 Dec 2018 15:40:25 +0100 Subject: Refactor out libs into @0x/contracts-libs --- contracts/libs/compiler.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 contracts/libs/compiler.json (limited to 'contracts/libs/compiler.json') diff --git a/contracts/libs/compiler.json b/contracts/libs/compiler.json new file mode 100644 index 000000000..cf7c52a73 --- /dev/null +++ b/contracts/libs/compiler.json @@ -0,0 +1,22 @@ +{ + "artifactsDir": "./generated-artifacts", + "contractsDir": "./contracts", + "compilerSettings": { + "optimizer": { + "enabled": true, + "runs": 1000000 + }, + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode.object", + "evm.bytecode.sourceMap", + "evm.deployedBytecode.object", + "evm.deployedBytecode.sourceMap" + ] + } + } + }, + "contracts": ["TestLibs", "LibOrder", "LibMath", "LibFillResults", "LibAbiEncoder", "LibEIP712"] +} -- cgit v1.2.3