diff options
author | Fabio Berger <me@fabioberger.com> | 2019-02-07 20:33:44 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2019-02-07 20:33:44 +0800 |
commit | 7a9ff3846ecbfbdbe5ace374563deea50c15bc45 (patch) | |
tree | a44c30848e06af96b5e1ba1fea395d636e6693ae /contracts/exchange/compiler.json | |
parent | f118e86cfe478f95eb0450df351871e8278862c3 (diff) | |
parent | 2ef3af000378f66daa0212daaf23c807d018711e (diff) | |
download | dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.tar dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.tar.gz dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.tar.bz2 dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.tar.lz dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.tar.xz dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.tar.zst dexon-0x-contracts-7a9ff3846ecbfbdbe5ace374563deea50c15bc45.zip |
Merge development
Diffstat (limited to 'contracts/exchange/compiler.json')
-rw-r--r-- | contracts/exchange/compiler.json | 49 |
1 files changed, 27 insertions, 22 deletions
diff --git a/contracts/exchange/compiler.json b/contracts/exchange/compiler.json index 6a5f666d1..b7a94cd13 100644 --- a/contracts/exchange/compiler.json +++ b/contracts/exchange/compiler.json @@ -3,10 +3,7 @@ "contractsDir": "./contracts", "useDockerisedSolc": true, "compilerSettings": { - "optimizer": { - "enabled": true, - "runs": 1000000 - }, + "optimizer": { "enabled": true, "runs": 1000000 }, "outputSelection": { "*": { "*": [ @@ -20,23 +17,31 @@ } }, "contracts": [ - "Exchange", - "IAssetProxyDispatcher", - "IExchange", - "IExchangeCore", - "IMatchOrders", - "ISignatureValidator", - "ITransactions", - "IValidator", - "IWallet", - "IWrapperFunctions", - "TestAssetProxyDispatcher", - "TestExchangeInternals", - "TestSignatureValidator", - "TestStaticCallReceiver", - "ExchangeWrapper", - "Validator", - "Wallet", - "Whitelist" + "@0x/contracts-asset-proxy/contracts/src/ERC20Proxy.sol", + "@0x/contracts-asset-proxy/contracts/src/ERC721Proxy.sol", + "@0x/contracts-asset-proxy/contracts/src/MultiAssetProxy.sol", + "@0x/contracts-erc20/contracts/test/DummyERC20Token.sol", + "@0x/contracts-erc20/contracts/test/DummyNoReturnERC20Token.sol", + "@0x/contracts-erc20/contracts/test/ReentrantERC20Token.sol", + "@0x/contracts-erc721/contracts/test/DummyERC721Token.sol", + "@0x/contracts-exchange-libs/contracts/test/TestLibs.sol", + "examples/ExchangeWrapper.sol", + "examples/Validator.sol", + "examples/Wallet.sol", + "examples/Whitelist.sol", + "src/Exchange.sol", + "src/interfaces/IAssetProxyDispatcher.sol", + "src/interfaces/IExchange.sol", + "src/interfaces/IExchangeCore.sol", + "src/interfaces/IMatchOrders.sol", + "src/interfaces/ISignatureValidator.sol", + "src/interfaces/ITransactions.sol", + "src/interfaces/IValidator.sol", + "src/interfaces/IWallet.sol", + "src/interfaces/IWrapperFunctions.sol", + "test/TestAssetProxyDispatcher.sol", + "test/TestExchangeInternals.sol", + "test/TestSignatureValidator.sol", + "test/TestStaticCallReceiver.sol" ] } |