aboutsummaryrefslogtreecommitdiffstats
path: root/packages/migrations/artifacts/2.0.0/IValidator.json
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2018-06-27 08:36:44 +0800
committerAmir Bandeali <abandeali1@gmail.com>2018-06-27 08:36:44 +0800
commitd5c389b7dc19ce392a97ad61cc2c03693be74873 (patch)
tree30265466382606ce6278def1bc00fbda2d548b88 /packages/migrations/artifacts/2.0.0/IValidator.json
parent7f233dcb15f897a4c7de29987e26143c9d192c01 (diff)
downloaddexon-0x-contracts-d5c389b7dc19ce392a97ad61cc2c03693be74873.tar
dexon-0x-contracts-d5c389b7dc19ce392a97ad61cc2c03693be74873.tar.gz
dexon-0x-contracts-d5c389b7dc19ce392a97ad61cc2c03693be74873.tar.bz2
dexon-0x-contracts-d5c389b7dc19ce392a97ad61cc2c03693be74873.tar.lz
dexon-0x-contracts-d5c389b7dc19ce392a97ad61cc2c03693be74873.tar.xz
dexon-0x-contracts-d5c389b7dc19ce392a97ad61cc2c03693be74873.tar.zst
dexon-0x-contracts-d5c389b7dc19ce392a97ad61cc2c03693be74873.zip
Update artifacts
Diffstat (limited to 'packages/migrations/artifacts/2.0.0/IValidator.json')
-rw-r--r--packages/migrations/artifacts/2.0.0/IValidator.json62
1 files changed, 0 insertions, 62 deletions
diff --git a/packages/migrations/artifacts/2.0.0/IValidator.json b/packages/migrations/artifacts/2.0.0/IValidator.json
deleted file mode 100644
index 67ade6343..000000000
--- a/packages/migrations/artifacts/2.0.0/IValidator.json
+++ /dev/null
@@ -1,62 +0,0 @@
-{
- "schemaVersion": "2.0.0",
- "contractName": "IValidator",
- "compilerOutput": {
- "abi": [
- {
- "constant": true,
- "inputs": [
- {
- "name": "hash",
- "type": "bytes32"
- },
- {
- "name": "signer",
- "type": "address"
- },
- {
- "name": "signature",
- "type": "bytes"
- }
- ],
- "name": "isValidSignature",
- "outputs": [
- {
- "name": "isValid",
- "type": "bool"
- }
- ],
- "payable": false,
- "stateMutability": "view",
- "type": "function"
- }
- ]
- },
- "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 signer 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 signer,\n bytes signature\n )\n external\n view\n returns (bool isValid);\n}\n"
- },
- "sourceTreeHashHex": "0x2db97becd6f94a55648dce974f3aa4cfa0cd2e3209d2ed1b75cc50dbe4bf35ae",
- "compiler": {
- "name": "solc",
- "version": "soljson-v0.4.24+commit.e67f0147.js",
- "settings": {
- "outputSelection": {
- "*": {
- "*": [
- "abi",
- "evm.bytecode.object",
- "evm.bytecode.sourceMap",
- "evm.deployedBytecode.object",
- "evm.deployedBytecode.sourceMap"
- ]
- }
- }
- }
- },
- "networks": {}
-}