aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/erc721/compiler.json
blob: 09d79ba2807b04b7ddc1bdc6419a796624330bab (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
{
    "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": [
        "src/ERC721Token.sol",
        "src/MintableERC721Token.sol",
        "src/interfaces/IERC721Receiver.sol",
        "src/interfaces/IERC721Token.sol",
        "test/DummyERC721Receiver.sol",
        "test/DummyERC721Token.sol",
        "test/InvalidERC721Receiver.sol"
    ]
}