Fix build
This commit is contained in:
@@ -24,10 +24,13 @@
|
|||||||
"DummyERC721Receiver",
|
"DummyERC721Receiver",
|
||||||
"DummyERC721Token",
|
"DummyERC721Token",
|
||||||
"ERC20Proxy",
|
"ERC20Proxy",
|
||||||
|
"ERC20Token",
|
||||||
"ERC721Proxy",
|
"ERC721Proxy",
|
||||||
"Exchange",
|
"Exchange",
|
||||||
"ExchangeWrapper",
|
"ExchangeWrapper",
|
||||||
"IAssetData",
|
"IAssetData",
|
||||||
|
"IValidator",
|
||||||
|
"IWallet",
|
||||||
"MixinAuthorizable",
|
"MixinAuthorizable",
|
||||||
"MultiSigWallet",
|
"MultiSigWallet",
|
||||||
"MultiSigWalletWithTimeLock",
|
"MultiSigWalletWithTimeLock",
|
||||||
|
230
packages/migrations/artifacts/2.0.0/ERC20Token.json
vendored
Normal file
230
packages/migrations/artifacts/2.0.0/ERC20Token.json
vendored
Normal file
File diff suppressed because one or more lines are too long
80
packages/migrations/artifacts/2.0.0/IValidator.json
vendored
Normal file
80
packages/migrations/artifacts/2.0.0/IValidator.json
vendored
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
{
|
||||||
|
"schemaVersion": "2.0.0",
|
||||||
|
"contractName": "IValidator",
|
||||||
|
"compilerOutput": {
|
||||||
|
"abi": [
|
||||||
|
{
|
||||||
|
"constant": true,
|
||||||
|
"inputs": [
|
||||||
|
{
|
||||||
|
"name": "hash",
|
||||||
|
"type": "bytes32"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "signerAddress",
|
||||||
|
"type": "address"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "signature",
|
||||||
|
"type": "bytes"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"name": "isValidSignature",
|
||||||
|
"outputs": [
|
||||||
|
{
|
||||||
|
"name": "isValid",
|
||||||
|
"type": "bool"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"payable": false,
|
||||||
|
"stateMutability": "view",
|
||||||
|
"type": "function"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"evm": {
|
||||||
|
"bytecode": {
|
||||||
|
"linkReferences": {},
|
||||||
|
"object": "0x",
|
||||||
|
"opcodes": "",
|
||||||
|
"sourceMap": ""
|
||||||
|
},
|
||||||
|
"deployedBytecode": {
|
||||||
|
"linkReferences": {},
|
||||||
|
"object": "0x",
|
||||||
|
"opcodes": "",
|
||||||
|
"sourceMap": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sources": {
|
||||||
|
"current/protocol/Exchange/interfaces/IValidator.sol": {
|
||||||
|
"id": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sourceCodes": {
|
||||||
|
"current/protocol/Exchange/interfaces/IValidator.sol": "/*\n\n Copyright 2018 ZeroEx Intl.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n*/\n\npragma solidity ^0.4.23;\n\ncontract IValidator {\n\n /// @dev Verifies that a signature is valid.\n /// @param hash Message hash that is signed.\n /// @param signerAddress Address that should have signed the given hash.\n /// @param signature Proof of signing.\n /// @return Validity of order signature.\n function isValidSignature(\n bytes32 hash,\n address signerAddress,\n bytes signature\n )\n external\n view\n returns (bool isValid);\n}\n"
|
||||||
|
},
|
||||||
|
"sourceTreeHashHex": "0x8758ec813f96db27c00c4d79efb69f440b34062c5f298ed09863a2b697af0422",
|
||||||
|
"compiler": {
|
||||||
|
"name": "solc",
|
||||||
|
"version": "soljson-v0.4.24+commit.e67f0147.js",
|
||||||
|
"settings": {
|
||||||
|
"optimizer": {
|
||||||
|
"enabled": true,
|
||||||
|
"runs": 1000000
|
||||||
|
},
|
||||||
|
"outputSelection": {
|
||||||
|
"*": {
|
||||||
|
"*": [
|
||||||
|
"abi",
|
||||||
|
"evm.bytecode.object",
|
||||||
|
"evm.bytecode.sourceMap",
|
||||||
|
"evm.deployedBytecode.object",
|
||||||
|
"evm.deployedBytecode.sourceMap"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"networks": {}
|
||||||
|
}
|
76
packages/migrations/artifacts/2.0.0/IWallet.json
vendored
Normal file
76
packages/migrations/artifacts/2.0.0/IWallet.json
vendored
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
{
|
||||||
|
"schemaVersion": "2.0.0",
|
||||||
|
"contractName": "IWallet",
|
||||||
|
"compilerOutput": {
|
||||||
|
"abi": [
|
||||||
|
{
|
||||||
|
"constant": true,
|
||||||
|
"inputs": [
|
||||||
|
{
|
||||||
|
"name": "hash",
|
||||||
|
"type": "bytes32"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "signature",
|
||||||
|
"type": "bytes"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"name": "isValidSignature",
|
||||||
|
"outputs": [
|
||||||
|
{
|
||||||
|
"name": "isValid",
|
||||||
|
"type": "bool"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"payable": false,
|
||||||
|
"stateMutability": "view",
|
||||||
|
"type": "function"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"evm": {
|
||||||
|
"bytecode": {
|
||||||
|
"linkReferences": {},
|
||||||
|
"object": "0x",
|
||||||
|
"opcodes": "",
|
||||||
|
"sourceMap": ""
|
||||||
|
},
|
||||||
|
"deployedBytecode": {
|
||||||
|
"linkReferences": {},
|
||||||
|
"object": "0x",
|
||||||
|
"opcodes": "",
|
||||||
|
"sourceMap": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sources": {
|
||||||
|
"current/protocol/Exchange/interfaces/IWallet.sol": {
|
||||||
|
"id": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sourceCodes": {
|
||||||
|
"current/protocol/Exchange/interfaces/IWallet.sol": "/*\n\n Copyright 2018 ZeroEx Intl.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n*/\n\npragma solidity ^0.4.24;\n\ncontract IWallet {\n\n /// @dev Verifies that a signature is valid.\n /// @param hash Message hash that is signed.\n /// @param signature Proof of signing.\n /// @return Validity of order signature.\n function isValidSignature(\n bytes32 hash,\n bytes signature\n )\n external\n view\n returns (bool isValid);\n}\n"
|
||||||
|
},
|
||||||
|
"sourceTreeHashHex": "0x86b701eae05b54e6e83ae81e518db9b84b28a8d6c33c8b5ae8a89ff78c61f732",
|
||||||
|
"compiler": {
|
||||||
|
"name": "solc",
|
||||||
|
"version": "soljson-v0.4.24+commit.e67f0147.js",
|
||||||
|
"settings": {
|
||||||
|
"optimizer": {
|
||||||
|
"enabled": true,
|
||||||
|
"runs": 1000000
|
||||||
|
},
|
||||||
|
"outputSelection": {
|
||||||
|
"*": {
|
||||||
|
"*": [
|
||||||
|
"abi",
|
||||||
|
"evm.bytecode.object",
|
||||||
|
"evm.bytecode.sourceMap",
|
||||||
|
"evm.deployedBytecode.object",
|
||||||
|
"evm.deployedBytecode.sourceMap"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"networks": {}
|
||||||
|
}
|
@@ -4194,9 +4194,9 @@ ethereumjs-wallet@~0.6.0:
|
|||||||
utf8 "^2.1.1"
|
utf8 "^2.1.1"
|
||||||
uuid "^2.0.1"
|
uuid "^2.0.1"
|
||||||
|
|
||||||
ethers@3.0.22:
|
ethers@0xproject/ethers.js#eip-838-reasons, ethers@3.0.22:
|
||||||
version "3.0.22"
|
version "3.0.18"
|
||||||
resolved "https://registry.yarnpkg.com/ethers/-/ethers-3.0.22.tgz#7fab1ea16521705837aa43c15831877b2716b436"
|
resolved "https://codeload.github.com/0xproject/ethers.js/tar.gz/b91342bd200d142af0165d6befddf783c8ae8447"
|
||||||
dependencies:
|
dependencies:
|
||||||
aes-js "3.0.0"
|
aes-js "3.0.0"
|
||||||
bn.js "^4.4.0"
|
bn.js "^4.4.0"
|
||||||
|
Reference in New Issue
Block a user