diff options
Diffstat (limited to 'contracts/exchange-libs/compiler.json')
-rw-r--r-- | contracts/exchange-libs/compiler.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/contracts/exchange-libs/compiler.json b/contracts/exchange-libs/compiler.json new file mode 100644 index 000000000..349d3063b --- /dev/null +++ b/contracts/exchange-libs/compiler.json @@ -0,0 +1,31 @@ +{ + "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", + "LibAssetProxyErrors", + "LibConstants" + ] +} |