mintSquareAbi.json 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. [
  2. {
  3. "inputs": [],
  4. "stateMutability": "nonpayable",
  5. "type": "constructor"
  6. },
  7. {
  8. "anonymous": false,
  9. "inputs": [
  10. {
  11. "indexed": true,
  12. "internalType": "address",
  13. "name": "owner",
  14. "type": "address"
  15. },
  16. {
  17. "indexed": true,
  18. "internalType": "address",
  19. "name": "approved",
  20. "type": "address"
  21. },
  22. {
  23. "indexed": true,
  24. "internalType": "uint256",
  25. "name": "tokenId",
  26. "type": "uint256"
  27. }
  28. ],
  29. "name": "Approval",
  30. "type": "event"
  31. },
  32. {
  33. "anonymous": false,
  34. "inputs": [
  35. {
  36. "indexed": true,
  37. "internalType": "address",
  38. "name": "owner",
  39. "type": "address"
  40. },
  41. {
  42. "indexed": true,
  43. "internalType": "address",
  44. "name": "operator",
  45. "type": "address"
  46. },
  47. {
  48. "indexed": false,
  49. "internalType": "bool",
  50. "name": "approved",
  51. "type": "bool"
  52. }
  53. ],
  54. "name": "ApprovalForAll",
  55. "type": "event"
  56. },
  57. {
  58. "anonymous": false,
  59. "inputs": [
  60. {
  61. "indexed": true,
  62. "internalType": "address",
  63. "name": "previousOwner",
  64. "type": "address"
  65. },
  66. {
  67. "indexed": true,
  68. "internalType": "address",
  69. "name": "newOwner",
  70. "type": "address"
  71. }
  72. ],
  73. "name": "OwnershipTransferred",
  74. "type": "event"
  75. },
  76. {
  77. "anonymous": false,
  78. "inputs": [
  79. {
  80. "indexed": true,
  81. "internalType": "address",
  82. "name": "from",
  83. "type": "address"
  84. },
  85. {
  86. "indexed": true,
  87. "internalType": "address",
  88. "name": "to",
  89. "type": "address"
  90. },
  91. {
  92. "indexed": true,
  93. "internalType": "uint256",
  94. "name": "tokenId",
  95. "type": "uint256"
  96. }
  97. ],
  98. "name": "Transfer",
  99. "type": "event"
  100. },
  101. {
  102. "inputs": [
  103. {
  104. "internalType": "address",
  105. "name": "to",
  106. "type": "address"
  107. },
  108. {
  109. "internalType": "uint256",
  110. "name": "tokenId",
  111. "type": "uint256"
  112. }
  113. ],
  114. "name": "approve",
  115. "outputs": [],
  116. "stateMutability": "nonpayable",
  117. "type": "function"
  118. },
  119. {
  120. "inputs": [
  121. {
  122. "internalType": "address",
  123. "name": "owner",
  124. "type": "address"
  125. }
  126. ],
  127. "name": "balanceOf",
  128. "outputs": [
  129. {
  130. "internalType": "uint256",
  131. "name": "",
  132. "type": "uint256"
  133. }
  134. ],
  135. "stateMutability": "view",
  136. "type": "function"
  137. },
  138. {
  139. "inputs": [
  140. {
  141. "internalType": "uint256",
  142. "name": "tokenId",
  143. "type": "uint256"
  144. }
  145. ],
  146. "name": "getApproved",
  147. "outputs": [
  148. {
  149. "internalType": "address",
  150. "name": "",
  151. "type": "address"
  152. }
  153. ],
  154. "stateMutability": "view",
  155. "type": "function"
  156. },
  157. {
  158. "inputs": [
  159. {
  160. "internalType": "address",
  161. "name": "owner",
  162. "type": "address"
  163. },
  164. {
  165. "internalType": "address",
  166. "name": "operator",
  167. "type": "address"
  168. }
  169. ],
  170. "name": "isApprovedForAll",
  171. "outputs": [
  172. {
  173. "internalType": "bool",
  174. "name": "",
  175. "type": "bool"
  176. }
  177. ],
  178. "stateMutability": "view",
  179. "type": "function"
  180. },
  181. {
  182. "inputs": [
  183. {
  184. "internalType": "string",
  185. "name": "uri",
  186. "type": "string"
  187. }
  188. ],
  189. "name": "mint",
  190. "outputs": [],
  191. "stateMutability": "nonpayable",
  192. "type": "function"
  193. },
  194. {
  195. "inputs": [],
  196. "name": "name",
  197. "outputs": [
  198. {
  199. "internalType": "string",
  200. "name": "",
  201. "type": "string"
  202. }
  203. ],
  204. "stateMutability": "view",
  205. "type": "function"
  206. },
  207. {
  208. "inputs": [],
  209. "name": "owner",
  210. "outputs": [
  211. {
  212. "internalType": "address",
  213. "name": "",
  214. "type": "address"
  215. }
  216. ],
  217. "stateMutability": "view",
  218. "type": "function"
  219. },
  220. {
  221. "inputs": [
  222. {
  223. "internalType": "uint256",
  224. "name": "tokenId",
  225. "type": "uint256"
  226. }
  227. ],
  228. "name": "ownerOf",
  229. "outputs": [
  230. {
  231. "internalType": "address",
  232. "name": "",
  233. "type": "address"
  234. }
  235. ],
  236. "stateMutability": "view",
  237. "type": "function"
  238. },
  239. {
  240. "inputs": [],
  241. "name": "renounceOwnership",
  242. "outputs": [],
  243. "stateMutability": "nonpayable",
  244. "type": "function"
  245. },
  246. {
  247. "inputs": [
  248. {
  249. "internalType": "address",
  250. "name": "from",
  251. "type": "address"
  252. },
  253. {
  254. "internalType": "address",
  255. "name": "to",
  256. "type": "address"
  257. },
  258. {
  259. "internalType": "uint256",
  260. "name": "tokenId",
  261. "type": "uint256"
  262. }
  263. ],
  264. "name": "safeTransferFrom",
  265. "outputs": [],
  266. "stateMutability": "nonpayable",
  267. "type": "function"
  268. },
  269. {
  270. "inputs": [
  271. {
  272. "internalType": "address",
  273. "name": "from",
  274. "type": "address"
  275. },
  276. {
  277. "internalType": "address",
  278. "name": "to",
  279. "type": "address"
  280. },
  281. {
  282. "internalType": "uint256",
  283. "name": "tokenId",
  284. "type": "uint256"
  285. },
  286. {
  287. "internalType": "bytes",
  288. "name": "data",
  289. "type": "bytes"
  290. }
  291. ],
  292. "name": "safeTransferFrom",
  293. "outputs": [],
  294. "stateMutability": "nonpayable",
  295. "type": "function"
  296. },
  297. {
  298. "inputs": [
  299. {
  300. "internalType": "address",
  301. "name": "operator",
  302. "type": "address"
  303. },
  304. {
  305. "internalType": "bool",
  306. "name": "approved",
  307. "type": "bool"
  308. }
  309. ],
  310. "name": "setApprovalForAll",
  311. "outputs": [],
  312. "stateMutability": "nonpayable",
  313. "type": "function"
  314. },
  315. {
  316. "inputs": [
  317. {
  318. "internalType": "bytes4",
  319. "name": "interfaceId",
  320. "type": "bytes4"
  321. }
  322. ],
  323. "name": "supportsInterface",
  324. "outputs": [
  325. {
  326. "internalType": "bool",
  327. "name": "",
  328. "type": "bool"
  329. }
  330. ],
  331. "stateMutability": "view",
  332. "type": "function"
  333. },
  334. {
  335. "inputs": [],
  336. "name": "symbol",
  337. "outputs": [
  338. {
  339. "internalType": "string",
  340. "name": "",
  341. "type": "string"
  342. }
  343. ],
  344. "stateMutability": "view",
  345. "type": "function"
  346. },
  347. {
  348. "inputs": [
  349. {
  350. "internalType": "uint256",
  351. "name": "index",
  352. "type": "uint256"
  353. }
  354. ],
  355. "name": "tokenByIndex",
  356. "outputs": [
  357. {
  358. "internalType": "uint256",
  359. "name": "",
  360. "type": "uint256"
  361. }
  362. ],
  363. "stateMutability": "view",
  364. "type": "function"
  365. },
  366. {
  367. "inputs": [
  368. {
  369. "internalType": "address",
  370. "name": "owner",
  371. "type": "address"
  372. },
  373. {
  374. "internalType": "uint256",
  375. "name": "index",
  376. "type": "uint256"
  377. }
  378. ],
  379. "name": "tokenOfOwnerByIndex",
  380. "outputs": [
  381. {
  382. "internalType": "uint256",
  383. "name": "",
  384. "type": "uint256"
  385. }
  386. ],
  387. "stateMutability": "view",
  388. "type": "function"
  389. },
  390. {
  391. "inputs": [
  392. {
  393. "internalType": "uint256",
  394. "name": "tokenId",
  395. "type": "uint256"
  396. }
  397. ],
  398. "name": "tokenURI",
  399. "outputs": [
  400. {
  401. "internalType": "string",
  402. "name": "",
  403. "type": "string"
  404. }
  405. ],
  406. "stateMutability": "view",
  407. "type": "function"
  408. },
  409. {
  410. "inputs": [],
  411. "name": "totalSupply",
  412. "outputs": [
  413. {
  414. "internalType": "uint256",
  415. "name": "",
  416. "type": "uint256"
  417. }
  418. ],
  419. "stateMutability": "view",
  420. "type": "function"
  421. },
  422. {
  423. "inputs": [
  424. {
  425. "internalType": "address",
  426. "name": "from",
  427. "type": "address"
  428. },
  429. {
  430. "internalType": "address",
  431. "name": "to",
  432. "type": "address"
  433. },
  434. {
  435. "internalType": "uint256",
  436. "name": "tokenId",
  437. "type": "uint256"
  438. }
  439. ],
  440. "name": "transferFrom",
  441. "outputs": [],
  442. "stateMutability": "nonpayable",
  443. "type": "function"
  444. },
  445. {
  446. "inputs": [
  447. {
  448. "internalType": "address",
  449. "name": "newOwner",
  450. "type": "address"
  451. }
  452. ],
  453. "name": "transferOwnership",
  454. "outputs": [],
  455. "stateMutability": "nonpayable",
  456. "type": "function"
  457. }
  458. ]