aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-05-31 05:08:58 +0800
committerFabio Berger <me@fabioberger.com>2018-05-31 05:08:58 +0800
commite1f7dd1372d2639a5f72705b089bb2250a2fe361 (patch)
tree48ce31621c3ec38d5929a7c22e532016e1ab3157 /packages
parent32833b7301ede19b3b80d95df32c0565efdd583a (diff)
downloaddexon-sol-tools-e1f7dd1372d2639a5f72705b089bb2250a2fe361.tar
dexon-sol-tools-e1f7dd1372d2639a5f72705b089bb2250a2fe361.tar.gz
dexon-sol-tools-e1f7dd1372d2639a5f72705b089bb2250a2fe361.tar.bz2
dexon-sol-tools-e1f7dd1372d2639a5f72705b089bb2250a2fe361.tar.lz
dexon-sol-tools-e1f7dd1372d2639a5f72705b089bb2250a2fe361.tar.xz
dexon-sol-tools-e1f7dd1372d2639a5f72705b089bb2250a2fe361.tar.zst
dexon-sol-tools-e1f7dd1372d2639a5f72705b089bb2250a2fe361.zip
Add ISigner artifacts
Diffstat (limited to 'packages')
-rw-r--r--packages/migrations/artifacts/2.0.0/ISigner.json76
1 files changed, 76 insertions, 0 deletions
diff --git a/packages/migrations/artifacts/2.0.0/ISigner.json b/packages/migrations/artifacts/2.0.0/ISigner.json
new file mode 100644
index 000000000..8a0a8e06a
--- /dev/null
+++ b/packages/migrations/artifacts/2.0.0/ISigner.json
@@ -0,0 +1,76 @@
+{
+ "schemaVersion": "2.0.0",
+ "contractName": "ISigner",
+ "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/ISigner.sol": {
+ "id": 0
+ }
+ },
+ "sourceCodes": {
+ "current/protocol/Exchange/interfaces/ISigner.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 ISigner {\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 external\n view\n returns (bool isValid);\n}\n"
+ },
+ "sourceTreeHashHex": "0x14f56e10a8ab94bb23561e6d2118d4ea6f68154b66e0833ebd915c0911073267",
+ "compiler": {
+ "name": "solc",
+ "version": "soljson-v0.4.24+commit.e67f0147.js",
+ "settings": {
+ "optimizer": {
+ "enabled": true,
+ "runs": 0
+ },
+ "outputSelection": {
+ "*": {
+ "*": [
+ "abi",
+ "evm.bytecode.object",
+ "evm.bytecode.sourceMap",
+ "evm.deployedBytecode.object",
+ "evm.deployedBytecode.sourceMap"
+ ]
+ }
+ }
+ }
+ },
+ "networks": {}
+} \ No newline at end of file