diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-12-05 18:19:10 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-13 01:19:06 +0800 |
commit | 9365a3bc753a4351ead3159cdecc431096529a2b (patch) | |
tree | 451277b10db79a8ebb3f0263f8007822896997b9 /contracts/interfaces/compiler.json | |
parent | 363095f2fe3db4caad63790fb4b5c9ec8d64043f (diff) | |
download | dexon-sol-tools-9365a3bc753a4351ead3159cdecc431096529a2b.tar dexon-sol-tools-9365a3bc753a4351ead3159cdecc431096529a2b.tar.gz dexon-sol-tools-9365a3bc753a4351ead3159cdecc431096529a2b.tar.bz2 dexon-sol-tools-9365a3bc753a4351ead3159cdecc431096529a2b.tar.lz dexon-sol-tools-9365a3bc753a4351ead3159cdecc431096529a2b.tar.xz dexon-sol-tools-9365a3bc753a4351ead3159cdecc431096529a2b.tar.zst dexon-sol-tools-9365a3bc753a4351ead3159cdecc431096529a2b.zip |
Refactor our protocol interfaces into @0x/contracts-interfaces
Diffstat (limited to 'contracts/interfaces/compiler.json')
-rw-r--r-- | contracts/interfaces/compiler.json | 35 |
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" + ] +} |