aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/libs/compiler.json
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-12-04 22:40:25 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-12-04 23:07:59 +0800
commit9e01f4c9a30a0fd06c105222abfa1ab09e8fec3a (patch)
tree4e484dfdb0aebc96ddb4cfd7154352144b92bd0a /contracts/libs/compiler.json
parent18489161c6871ad7e76967644f91cad2a9be1e85 (diff)
downloaddexon-sol-tools-9e01f4c9a30a0fd06c105222abfa1ab09e8fec3a.tar
dexon-sol-tools-9e01f4c9a30a0fd06c105222abfa1ab09e8fec3a.tar.gz
dexon-sol-tools-9e01f4c9a30a0fd06c105222abfa1ab09e8fec3a.tar.bz2
dexon-sol-tools-9e01f4c9a30a0fd06c105222abfa1ab09e8fec3a.tar.lz
dexon-sol-tools-9e01f4c9a30a0fd06c105222abfa1ab09e8fec3a.tar.xz
dexon-sol-tools-9e01f4c9a30a0fd06c105222abfa1ab09e8fec3a.tar.zst
dexon-sol-tools-9e01f4c9a30a0fd06c105222abfa1ab09e8fec3a.zip
Refactor out libs into @0x/contracts-libs
Diffstat (limited to 'contracts/libs/compiler.json')
-rw-r--r--contracts/libs/compiler.json22
1 files changed, 22 insertions, 0 deletions
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"]
+}