aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/extensions/compiler.json
blob: 41fd582ad3671ae6199cef5e5d5b893be7dae2dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
    "artifactsDir": "./generated-artifacts",
    "contractsDir": "./contracts",
    "useDockerisedSolc": true,
    "compilerSettings": {
        "optimizer": { "enabled": true, "runs": 1000000 },
        "outputSelection": {
            "*": {
                "*": [
                    "abi",
                    "evm.bytecode.object",
                    "evm.bytecode.sourceMap",
                    "evm.deployedBytecode.object",
                    "evm.deployedBytecode.sourceMap"
                ]
            }
        }
    },
    "contracts": [
        "@0x/contracts-asset-proxy/contracts/src/ERC20Proxy.sol",
        "@0x/contracts-asset-proxy/contracts/src/ERC721Proxy.sol",
        "@0x/contracts-erc20/contracts/src/WETH9.sol",
        "@0x/contracts-erc20/contracts/test/DummyERC20Token.sol",
        "@0x/contracts-erc721/contracts/test/DummyERC721Token.sol",
        "@0x/contracts-exchange/contracts/examples/ExchangeWrapper.sol",
        "@0x/contracts-exchange/contracts/src/Exchange.sol",
        "src/BalanceThresholdFilter/BalanceThresholdFilter.sol",
        "src/DutchAuction/DutchAuction.sol",
        "src/OrderMatcher/OrderMatcher.sol",
        "src/OrderValidator/OrderValidator.sol"
    ]
}