Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. [
  2. {
  3. "constant": true,
  4. "inputs": [
  5. {
  6. "name": "a",
  7. "type": "string"
  8. }
  9. ],
  10. "name": "check",
  11. "outputs": [
  12. {
  13. "name": "",
  14. "type": "string"
  15. }
  16. ],
  17. "payable": false,
  18. "stateMutability": "pure",
  19. "type": "function"
  20. }
  21. ]
  22.  
  23. contract Test {
  24. function check(string a) public pure returns(string);
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement