Advertisement
Guest User

Untitled

a guest
Mar 18th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. [
  2. {
  3. "constant": false,
  4. "inputs": [
  5. {
  6. "name": "hfee",
  7. "type": "uint16"
  8. }
  9. ],
  10. "name": "SetHFee",
  11. "outputs": [],
  12. "payable": false,
  13. "stateMutability": "nonpayable",
  14. "type": "function"
  15. },
  16. {
  17. "constant": true,
  18. "inputs": [],
  19. "name": "HVAL",
  20. "outputs": [
  21. {
  22. "name": "",
  23. "type": "uint16"
  24. }
  25. ],
  26. "payable": false,
  27. "stateMutability": "view",
  28. "type": "function"
  29. },
  30. {
  31. "constant": false,
  32. "inputs": [],
  33. "name": "Payout",
  34. "outputs": [],
  35. "payable": false,
  36. "stateMutability": "nonpayable",
  37. "type": "function"
  38. },
  39. {
  40. "constant": true,
  41. "inputs": [],
  42. "name": "TimeFinish",
  43. "outputs": [
  44. {
  45. "name": "",
  46. "type": "uint256"
  47. }
  48. ],
  49. "payable": false,
  50. "stateMutability": "view",
  51. "type": "function"
  52. },
  53. {
  54. "constant": true,
  55. "inputs": [],
  56. "name": "PotOwner",
  57. "outputs": [
  58. {
  59. "name": "",
  60. "type": "address"
  61. }
  62. ],
  63. "payable": false,
  64. "stateMutability": "view",
  65. "type": "function"
  66. },
  67. {
  68. "constant": true,
  69. "inputs": [],
  70. "name": "DEVP",
  71. "outputs": [
  72. {
  73. "name": "",
  74. "type": "uint16"
  75. }
  76. ],
  77. "payable": false,
  78. "stateMutability": "view",
  79. "type": "function"
  80. },
  81. {
  82. "constant": true,
  83. "inputs": [
  84. {
  85. "name": "",
  86. "type": "uint256"
  87. }
  88. ],
  89. "name": "ItemList",
  90. "outputs": [
  91. {
  92. "name": "owner",
  93. "type": "address"
  94. },
  95. {
  96. "name": "CPrice",
  97. "type": "uint256"
  98. },
  99. {
  100. "name": "reset",
  101. "type": "bool"
  102. }
  103. ],
  104. "payable": false,
  105. "stateMutability": "view",
  106. "type": "function"
  107. },
  108. {
  109. "constant": true,
  110. "inputs": [],
  111. "name": "Pot",
  112. "outputs": [
  113. {
  114. "name": "",
  115. "type": "uint256"
  116. }
  117. ],
  118. "payable": false,
  119. "stateMutability": "view",
  120. "type": "function"
  121. },
  122. {
  123. "constant": false,
  124. "inputs": [
  125. {
  126. "name": "tfee",
  127. "type": "uint16"
  128. }
  129. ],
  130. "name": "SetDevFee",
  131. "outputs": [],
  132. "payable": false,
  133. "stateMutability": "nonpayable",
  134. "type": "function"
  135. },
  136. {
  137. "constant": false,
  138. "inputs": [
  139. {
  140. "name": "ID",
  141. "type": "uint8"
  142. },
  143. {
  144. "name": "says",
  145. "type": "string"
  146. }
  147. ],
  148. "name": "Buy",
  149. "outputs": [],
  150. "payable": true,
  151. "stateMutability": "payable",
  152. "type": "function"
  153. },
  154. {
  155. "inputs": [],
  156. "payable": false,
  157. "stateMutability": "nonpayable",
  158. "type": "constructor"
  159. },
  160. {
  161. "anonymous": false,
  162. "inputs": [
  163. {
  164. "indexed": false,
  165. "name": "owner",
  166. "type": "address"
  167. },
  168. {
  169. "indexed": false,
  170. "name": "newPrice",
  171. "type": "uint256"
  172. },
  173. {
  174. "indexed": false,
  175. "name": "newPot",
  176. "type": "uint256"
  177. },
  178. {
  179. "indexed": false,
  180. "name": "Timer",
  181. "type": "uint256"
  182. },
  183. {
  184. "indexed": false,
  185. "name": "says",
  186. "type": "string"
  187. },
  188. {
  189. "indexed": false,
  190. "name": "id",
  191. "type": "uint8"
  192. }
  193. ],
  194. "name": "ItemBought",
  195. "type": "event"
  196. },
  197. {
  198. "anonymous": false,
  199. "inputs": [
  200. {
  201. "indexed": false,
  202. "name": "owner",
  203. "type": "address"
  204. },
  205. {
  206. "indexed": false,
  207. "name": "paid",
  208. "type": "uint256"
  209. },
  210. {
  211. "indexed": false,
  212. "name": "npot",
  213. "type": "uint256"
  214. }
  215. ],
  216. "name": "GameWon",
  217. "type": "event"
  218. }
  219. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement