Advertisement
Guest User

MiniMeToken.sol

a guest
Jan 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.60 KB | None | 0 0
  1. {
  2. "abi": [
  3. {
  4. "constant": true,
  5. "inputs": [],
  6. "name": "name",
  7. "outputs": [
  8. {
  9. "name": "",
  10. "type": "string"
  11. }
  12. ],
  13. "payable": false,
  14. "stateMutability": "view",
  15. "type": "function"
  16. },
  17. {
  18. "constant": true,
  19. "inputs": [],
  20. "name": "creationBlock",
  21. "outputs": [
  22. {
  23. "name": "",
  24. "type": "uint256"
  25. }
  26. ],
  27. "payable": false,
  28. "stateMutability": "view",
  29. "type": "function"
  30. },
  31. {
  32. "constant": true,
  33. "inputs": [],
  34. "name": "decimals",
  35. "outputs": [
  36. {
  37. "name": "",
  38. "type": "uint8"
  39. }
  40. ],
  41. "payable": false,
  42. "stateMutability": "view",
  43. "type": "function"
  44. },
  45. {
  46. "constant": false,
  47. "inputs": [
  48. {
  49. "name": "_newController",
  50. "type": "address"
  51. }
  52. ],
  53. "name": "changeController",
  54. "outputs": [],
  55. "payable": false,
  56. "stateMutability": "nonpayable",
  57. "type": "function"
  58. },
  59. {
  60. "constant": true,
  61. "inputs": [],
  62. "name": "version",
  63. "outputs": [
  64. {
  65. "name": "",
  66. "type": "string"
  67. }
  68. ],
  69. "payable": false,
  70. "stateMutability": "view",
  71. "type": "function"
  72. },
  73. {
  74. "constant": true,
  75. "inputs": [],
  76. "name": "parentToken",
  77. "outputs": [
  78. {
  79. "name": "",
  80. "type": "address"
  81. }
  82. ],
  83. "payable": false,
  84. "stateMutability": "view",
  85. "type": "function"
  86. },
  87. {
  88. "constant": true,
  89. "inputs": [],
  90. "name": "symbol",
  91. "outputs": [
  92. {
  93. "name": "",
  94. "type": "string"
  95. }
  96. ],
  97. "payable": false,
  98. "stateMutability": "view",
  99. "type": "function"
  100. },
  101. {
  102. "constant": true,
  103. "inputs": [],
  104. "name": "transfersEnabled",
  105. "outputs": [
  106. {
  107. "name": "",
  108. "type": "bool"
  109. }
  110. ],
  111. "payable": false,
  112. "stateMutability": "view",
  113. "type": "function"
  114. },
  115. {
  116. "constant": true,
  117. "inputs": [],
  118. "name": "parentSnapShotBlock",
  119. "outputs": [
  120. {
  121. "name": "",
  122. "type": "uint256"
  123. }
  124. ],
  125. "payable": false,
  126. "stateMutability": "view",
  127. "type": "function"
  128. },
  129. {
  130. "constant": true,
  131. "inputs": [],
  132. "name": "tokenFactory",
  133. "outputs": [
  134. {
  135. "name": "",
  136. "type": "address"
  137. }
  138. ],
  139. "payable": false,
  140. "stateMutability": "view",
  141. "type": "function"
  142. },
  143. {
  144. "constant": true,
  145. "inputs": [],
  146. "name": "controller",
  147. "outputs": [
  148. {
  149. "name": "",
  150. "type": "address"
  151. }
  152. ],
  153. "payable": false,
  154. "stateMutability": "view",
  155. "type": "function"
  156. },
  157. {
  158. "inputs": [
  159. {
  160. "name": "_tokenFactory",
  161. "type": "address"
  162. },
  163. {
  164. "name": "_parentToken",
  165. "type": "address"
  166. },
  167. {
  168. "name": "_parentSnapShotBlock",
  169. "type": "uint256"
  170. },
  171. {
  172. "name": "_tokenName",
  173. "type": "string"
  174. },
  175. {
  176. "name": "_decimalUnits",
  177. "type": "uint8"
  178. },
  179. {
  180. "name": "_tokenSymbol",
  181. "type": "string"
  182. },
  183. {
  184. "name": "_transfersEnabled",
  185. "type": "bool"
  186. }
  187. ],
  188. "payable": false,
  189. "stateMutability": "nonpayable",
  190. "type": "constructor"
  191. },
  192. {
  193. "payable": true,
  194. "stateMutability": "payable",
  195. "type": "fallback"
  196. },
  197. {
  198. "anonymous": false,
  199. "inputs": [
  200. {
  201. "indexed": true,
  202. "name": "_token",
  203. "type": "address"
  204. },
  205. {
  206. "indexed": true,
  207. "name": "_controller",
  208. "type": "address"
  209. },
  210. {
  211. "indexed": false,
  212. "name": "_amount",
  213. "type": "uint256"
  214. }
  215. ],
  216. "name": "ClaimedTokens",
  217. "type": "event"
  218. },
  219. {
  220. "anonymous": false,
  221. "inputs": [
  222. {
  223. "indexed": true,
  224. "name": "_from",
  225. "type": "address"
  226. },
  227. {
  228. "indexed": true,
  229. "name": "_to",
  230. "type": "address"
  231. },
  232. {
  233. "indexed": false,
  234. "name": "_amount",
  235. "type": "uint256"
  236. }
  237. ],
  238. "name": "Transfer",
  239. "type": "event"
  240. },
  241. {
  242. "anonymous": false,
  243. "inputs": [
  244. {
  245. "indexed": true,
  246. "name": "_cloneToken",
  247. "type": "address"
  248. },
  249. {
  250. "indexed": false,
  251. "name": "_snapshotBlock",
  252. "type": "uint256"
  253. }
  254. ],
  255. "name": "NewCloneToken",
  256. "type": "event"
  257. },
  258. {
  259. "anonymous": false,
  260. "inputs": [
  261. {
  262. "indexed": true,
  263. "name": "_owner",
  264. "type": "address"
  265. },
  266. {
  267. "indexed": true,
  268. "name": "_spender",
  269. "type": "address"
  270. },
  271. {
  272. "indexed": false,
  273. "name": "_amount",
  274. "type": "uint256"
  275. }
  276. ],
  277. "name": "Approval",
  278. "type": "event"
  279. },
  280. {
  281. "constant": false,
  282. "inputs": [
  283. {
  284. "name": "_to",
  285. "type": "address"
  286. },
  287. {
  288. "name": "_amount",
  289. "type": "uint256"
  290. }
  291. ],
  292. "name": "transfer",
  293. "outputs": [
  294. {
  295. "name": "success",
  296. "type": "bool"
  297. }
  298. ],
  299. "payable": false,
  300. "stateMutability": "nonpayable",
  301. "type": "function"
  302. },
  303. {
  304. "constant": false,
  305. "inputs": [
  306. {
  307. "name": "_from",
  308. "type": "address"
  309. },
  310. {
  311. "name": "_to",
  312. "type": "address"
  313. },
  314. {
  315. "name": "_amount",
  316. "type": "uint256"
  317. }
  318. ],
  319. "name": "transferFrom",
  320. "outputs": [
  321. {
  322. "name": "success",
  323. "type": "bool"
  324. }
  325. ],
  326. "payable": false,
  327. "stateMutability": "nonpayable",
  328. "type": "function"
  329. },
  330. {
  331. "constant": true,
  332. "inputs": [
  333. {
  334. "name": "_owner",
  335. "type": "address"
  336. }
  337. ],
  338. "name": "balanceOf",
  339. "outputs": [
  340. {
  341. "name": "balance",
  342. "type": "uint256"
  343. }
  344. ],
  345. "payable": false,
  346. "stateMutability": "view",
  347. "type": "function"
  348. },
  349. {
  350. "constant": false,
  351. "inputs": [
  352. {
  353. "name": "_spender",
  354. "type": "address"
  355. },
  356. {
  357. "name": "_amount",
  358. "type": "uint256"
  359. }
  360. ],
  361. "name": "approve",
  362. "outputs": [
  363. {
  364. "name": "success",
  365. "type": "bool"
  366. }
  367. ],
  368. "payable": false,
  369. "stateMutability": "nonpayable",
  370. "type": "function"
  371. },
  372. {
  373. "constant": true,
  374. "inputs": [
  375. {
  376. "name": "_owner",
  377. "type": "address"
  378. },
  379. {
  380. "name": "_spender",
  381. "type": "address"
  382. }
  383. ],
  384. "name": "allowance",
  385. "outputs": [
  386. {
  387. "name": "remaining",
  388. "type": "uint256"
  389. }
  390. ],
  391. "payable": false,
  392. "stateMutability": "view",
  393. "type": "function"
  394. },
  395. {
  396. "constant": false,
  397. "inputs": [
  398. {
  399. "name": "_spender",
  400. "type": "address"
  401. },
  402. {
  403. "name": "_amount",
  404. "type": "uint256"
  405. },
  406. {
  407. "name": "_extraData",
  408. "type": "bytes"
  409. }
  410. ],
  411. "name": "approveAndCall",
  412. "outputs": [
  413. {
  414. "name": "success",
  415. "type": "bool"
  416. }
  417. ],
  418. "payable": false,
  419. "stateMutability": "nonpayable",
  420. "type": "function"
  421. },
  422. {
  423. "constant": true,
  424. "inputs": [],
  425. "name": "totalSupply",
  426. "outputs": [
  427. {
  428. "name": "",
  429. "type": "uint256"
  430. }
  431. ],
  432. "payable": false,
  433. "stateMutability": "view",
  434. "type": "function"
  435. },
  436. {
  437. "constant": true,
  438. "inputs": [
  439. {
  440. "name": "_owner",
  441. "type": "address"
  442. },
  443. {
  444. "name": "_blockNumber",
  445. "type": "uint256"
  446. }
  447. ],
  448. "name": "balanceOfAt",
  449. "outputs": [
  450. {
  451. "name": "",
  452. "type": "uint256"
  453. }
  454. ],
  455. "payable": false,
  456. "stateMutability": "view",
  457. "type": "function"
  458. },
  459. {
  460. "constant": true,
  461. "inputs": [
  462. {
  463. "name": "_blockNumber",
  464. "type": "uint256"
  465. }
  466. ],
  467. "name": "totalSupplyAt",
  468. "outputs": [
  469. {
  470. "name": "",
  471. "type": "uint256"
  472. }
  473. ],
  474. "payable": false,
  475. "stateMutability": "view",
  476. "type": "function"
  477. },
  478. {
  479. "constant": false,
  480. "inputs": [
  481. {
  482. "name": "_cloneTokenName",
  483. "type": "string"
  484. },
  485. {
  486. "name": "_cloneDecimalUnits",
  487. "type": "uint8"
  488. },
  489. {
  490. "name": "_cloneTokenSymbol",
  491. "type": "string"
  492. },
  493. {
  494. "name": "_snapshotBlock",
  495. "type": "uint256"
  496. },
  497. {
  498. "name": "_transfersEnabled",
  499. "type": "bool"
  500. }
  501. ],
  502. "name": "createCloneToken",
  503. "outputs": [
  504. {
  505. "name": "",
  506. "type": "address"
  507. }
  508. ],
  509. "payable": false,
  510. "stateMutability": "nonpayable",
  511. "type": "function"
  512. },
  513. {
  514. "constant": false,
  515. "inputs": [
  516. {
  517. "name": "_owner",
  518. "type": "address"
  519. },
  520. {
  521. "name": "_amount",
  522. "type": "uint256"
  523. }
  524. ],
  525. "name": "generateTokens",
  526. "outputs": [
  527. {
  528. "name": "",
  529. "type": "bool"
  530. }
  531. ],
  532. "payable": false,
  533. "stateMutability": "nonpayable",
  534. "type": "function"
  535. },
  536. {
  537. "constant": false,
  538. "inputs": [
  539. {
  540. "name": "_owner",
  541. "type": "address"
  542. },
  543. {
  544. "name": "_amount",
  545. "type": "uint256"
  546. }
  547. ],
  548. "name": "destroyTokens",
  549. "outputs": [
  550. {
  551. "name": "",
  552. "type": "bool"
  553. }
  554. ],
  555. "payable": false,
  556. "stateMutability": "nonpayable",
  557. "type": "function"
  558. },
  559. {
  560. "constant": false,
  561. "inputs": [
  562. {
  563. "name": "_transfersEnabled",
  564. "type": "bool"
  565. }
  566. ],
  567. "name": "enableTransfers",
  568. "outputs": [],
  569. "payable": false,
  570. "stateMutability": "nonpayable",
  571. "type": "function"
  572. },
  573. {
  574. "constant": false,
  575. "inputs": [
  576. {
  577. "name": "_token",
  578. "type": "address"
  579. }
  580. ],
  581. "name": "claimTokens",
  582. "outputs": [],
  583. "payable": false,
  584. "stateMutability": "nonpayable",
  585. "type": "function"
  586. }
  587. ]
  588. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement