diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-12-11 01:09:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-11 01:09:33 +0800 |
commit | 190d9244cc5544662effae508f94025a6f5de286 (patch) | |
tree | 0cfbf8a284db41ca16cceddc301badf50e9e1ee2 /contracts/interfaces/compiler.json | |
parent | a286228b2005c33cc4ca8e17772a9bd259eeb1ce (diff) | |
parent | 51b1de041e3ce2a03ba79614d9a3166fbcab6222 (diff) | |
download | dexon-sol-tools-190d9244cc5544662effae508f94025a6f5de286.tar dexon-sol-tools-190d9244cc5544662effae508f94025a6f5de286.tar.gz dexon-sol-tools-190d9244cc5544662effae508f94025a6f5de286.tar.bz2 dexon-sol-tools-190d9244cc5544662effae508f94025a6f5de286.tar.lz dexon-sol-tools-190d9244cc5544662effae508f94025a6f5de286.tar.xz dexon-sol-tools-190d9244cc5544662effae508f94025a6f5de286.tar.zst dexon-sol-tools-190d9244cc5544662effae508f94025a6f5de286.zip |
Merge pull request #1385 from 0xProject/feature/contracts-monorepo-5
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" + ] +} |