Advertisement
Guest User

erc20 abi

a guest
May 16th, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. [
  2. {
  3. "constant": true,
  4. "inputs": [
  5. {
  6. "name": "tokenOwner",
  7. "type": "address"
  8. }
  9. ],
  10. "name": "balanceOf",
  11. "outputs": [
  12. {
  13. "name": "balance",
  14. "type": "uint256"
  15. }
  16. ],
  17. "payable": false,
  18. "stateMutability": "view",
  19. "type": "function"
  20. },
  21. {
  22. "constant": false,
  23. "inputs": [
  24. {
  25. "name": "to",
  26. "type": "address"
  27. },
  28. {
  29. "name": "tokens",
  30. "type": "uint256"
  31. }
  32. ],
  33. "name": "transfer",
  34. "outputs": [
  35. {
  36. "name": "success",
  37. "type": "bool"
  38. }
  39. ],
  40. "payable": false,
  41. "stateMutability": "nonpayable",
  42. "type": "function"
  43. }
  44. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement