Created
September 3, 2018 09:38
-
-
Save th3m477/14e9eac2e41e312cf825f06b97312509 to your computer and use it in GitHub Desktop.
HelloWorldKittens Ethereum Smart Contract ABI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"constant": true, | |
"inputs": [ | |
{ | |
"name": "_name", | |
"type": "string" | |
} | |
], | |
"name": "howManyKittensCalled", | |
"outputs": [ | |
{ | |
"name": "_num", | |
"type": "uint64" | |
} | |
], | |
"payable": false, | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"constant": false, | |
"inputs": [ | |
{ | |
"name": "_name", | |
"type": "string" | |
} | |
], | |
"name": "createKitten", | |
"outputs": [], | |
"payable": false, | |
"stateMutability": "nonpayable", | |
"type": "function" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment