SbtABI.ts 6.7 KB

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