Skip to content

Commit

Permalink
fix: restore abi files
Browse files Browse the repository at this point in the history
  • Loading branch information
maestrow committed Jan 24, 2019
1 parent d818f3a commit 29a6850
Show file tree
Hide file tree
Showing 6 changed files with 2,023 additions and 0 deletions.
93 changes: 93 additions & 0 deletions contracts/addressRegistry.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
{
"contractName": "AddressHashMap",
"abi": [
{
"constant": true,
"inputs": [],
"name": "owner",
"outputs": [
{
"name": "",
"type": "address"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"constant": false,
"inputs": [
{
"name": "_key",
"type": "bytes32"
},
{
"name": "_value",
"type": "address"
}
],
"name": "write",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "_key",
"type": "bytes32"
}
],
"name": "read",
"outputs": [
{
"name": "",
"type": "address"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
}
]
}

0 comments on commit 29a6850

Please sign in to comment.