aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/interfaces/compiler.json
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-12-05 18:19:10 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-13 01:19:06 +0800
commit9365a3bc753a4351ead3159cdecc431096529a2b (patch)
tree451277b10db79a8ebb3f0263f8007822896997b9 /contracts/interfaces/compiler.json
parent363095f2fe3db4caad63790fb4b5c9ec8d64043f (diff)
downloaddexon-0x-contracts-9365a3bc753a4351ead3159cdecc431096529a2b.tar.gz
dexon-0x-contracts-9365a3bc753a4351ead3159cdecc431096529a2b.tar.zst
dexon-0x-contracts-9365a3bc753a4351ead3159cdecc431096529a2b.zip
Refactor our protocol interfaces into @0x/contracts-interfaces
Diffstat (limited to 'contracts/interfaces/compiler.json')
-rw-r--r--contracts/interfaces/compiler.json35
1 files changed, 35 insertions, 0 deletions
diff --git a/contracts/interfaces/compiler.json b/contracts/interfaces/compiler.json
new file mode 100644
index 000000000..38a232541
--- /dev/null
+++ b/contracts/interfaces/compiler.json
@@ -0,0 +1,35 @@
+{
+ "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": [
+ "IAssetData",
+ "IAssetProxy",
+ "IAuthorizable",
+ "IAssetProxyDispatcher",
+ "IExchange",
+ "IExchangeCore",
+ "IMatchOrders",
+ "ISignatureValidator",
+ "ITransactions",
+ "IValidator",
+ "IWallet",
+ "IWrapperFunctions"
+ ]
+}