@ape.swap/bonds-sdk 1.0.470 → 1.0.474

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. package/dist/components/Modals/BondModal/BondModal.d.ts +6 -2
  2. package/dist/components/Modals/BondModal/BondModal.js +6 -7
  3. package/dist/components/YourBondsModal/YourBondsModal.d.ts +6 -2
  4. package/dist/components/YourBondsModal/YourBondsModal.js +8 -9
  5. package/dist/config/abi/bondNft.json +424 -0
  6. package/dist/config/abi/ens-public-resolver.json +816 -0
  7. package/dist/config/abi/ens-registrar.json +422 -0
  8. package/dist/config/abi/erc20_bytes32.json +30 -0
  9. package/dist/config/abi/jungleChef.json +291 -0
  10. package/dist/config/abi/launchBonds.json +2014 -0
  11. package/dist/config/abi/lockVeAbond.json +2198 -0
  12. package/dist/config/abi/migrationBond.json +1639 -0
  13. package/dist/config/abi/migrationFveAbond.json +160 -0
  14. package/dist/config/abi/multicallv3.json +92 -0
  15. package/dist/config/abi/sousChef.json +649 -0
  16. package/dist/config/abi/types/Banana.d.ts +417 -0
  17. package/dist/config/abi/types/Banana.js +1 -0
  18. package/dist/config/abi/types/Bond.d.ts +803 -0
  19. package/dist/config/abi/types/Bond.js +1 -0
  20. package/dist/config/abi/types/BondNft.d.ts +603 -0
  21. package/dist/config/abi/types/BondNft.js +1 -0
  22. package/dist/config/abi/types/EnsPublicResolver.d.ts +513 -0
  23. package/dist/config/abi/types/EnsPublicResolver.js +1 -0
  24. package/dist/config/abi/types/EnsRegistrar.d.ts +274 -0
  25. package/dist/config/abi/types/EnsRegistrar.js +1 -0
  26. package/dist/config/abi/types/Erc20.d.ts +168 -0
  27. package/dist/config/abi/types/Erc20.js +1 -0
  28. package/dist/config/abi/types/Erc20_bytes32.d.ts +50 -0
  29. package/dist/config/abi/types/Erc20_bytes32.js +1 -0
  30. package/dist/config/abi/types/JungleChef.d.ts +260 -0
  31. package/dist/config/abi/types/JungleChef.js +1 -0
  32. package/dist/config/abi/types/LaunchBonds.d.ts +1362 -0
  33. package/dist/config/abi/types/LaunchBonds.js +1 -0
  34. package/dist/config/abi/types/LensContract.d.ts +295 -0
  35. package/dist/config/abi/types/LensContract.js +1 -0
  36. package/dist/config/abi/types/LockVeAbond.d.ts +1279 -0
  37. package/dist/config/abi/types/LockVeAbond.js +1 -0
  38. package/dist/config/abi/types/MigrationBond.d.ts +1136 -0
  39. package/dist/config/abi/types/MigrationBond.js +1 -0
  40. package/dist/config/abi/types/MigrationFveAbond.d.ts +290 -0
  41. package/dist/config/abi/types/MigrationFveAbond.js +1 -0
  42. package/dist/config/abi/types/MiniComplexRewarder.d.ts +469 -0
  43. package/dist/config/abi/types/MiniComplexRewarder.js +1 -0
  44. package/dist/config/abi/types/Multicallv2.d.ts +150 -0
  45. package/dist/config/abi/types/Multicallv2.js +1 -0
  46. package/dist/config/abi/types/Multicallv3.d.ts +98 -0
  47. package/dist/config/abi/types/Multicallv3.js +1 -0
  48. package/dist/config/abi/types/NonFungibleApes.d.ts +532 -0
  49. package/dist/config/abi/types/NonFungibleApes.js +1 -0
  50. package/dist/config/abi/types/NonFungibleBananas.d.ts +505 -0
  51. package/dist/config/abi/types/NonFungibleBananas.js +1 -0
  52. package/dist/config/abi/types/PriceGetter.d.ts +713 -0
  53. package/dist/config/abi/types/PriceGetter.js +1 -0
  54. package/dist/config/abi/types/PriceGetterLinea.d.ts +789 -0
  55. package/dist/config/abi/types/PriceGetterLinea.js +1 -0
  56. package/dist/config/abi/types/PriceGetterV2.d.ts +729 -0
  57. package/dist/config/abi/types/PriceGetterV2.js +1 -0
  58. package/dist/config/abi/types/SousChef.d.ts +579 -0
  59. package/dist/config/abi/types/SousChef.js +1 -0
  60. package/dist/config/abi/types/Treasury.d.ts +277 -0
  61. package/dist/config/abi/types/Treasury.js +1 -0
  62. package/dist/config/abi/types/Weth.d.ts +221 -0
  63. package/dist/config/abi/types/Weth.js +1 -0
  64. package/dist/config/abi/types/Zap.d.ts +528 -0
  65. package/dist/config/abi/types/Zap.js +1 -0
  66. package/dist/config/abi/types/common.d.ts +22 -0
  67. package/dist/config/abi/types/common.js +1 -0
  68. package/dist/config/abi/types/factories/Banana__factory.d.ts +475 -0
  69. package/dist/config/abi/types/factories/Banana__factory.js +628 -0
  70. package/dist/config/abi/types/factories/BondNft__factory.d.ts +723 -0
  71. package/dist/config/abi/types/factories/BondNft__factory.js +951 -0
  72. package/dist/config/abi/types/factories/Bond__factory.d.ts +799 -0
  73. package/dist/config/abi/types/factories/Bond__factory.js +1042 -0
  74. package/dist/config/abi/types/factories/EnsPublicResolver__factory.d.ts +649 -0
  75. package/dist/config/abi/types/factories/EnsPublicResolver__factory.js +833 -0
  76. package/dist/config/abi/types/factories/EnsRegistrar__factory.d.ts +338 -0
  77. package/dist/config/abi/types/factories/EnsRegistrar__factory.js +439 -0
  78. package/dist/config/abi/types/factories/Erc20__factory.d.ts +175 -0
  79. package/dist/config/abi/types/factories/Erc20__factory.js +239 -0
  80. package/dist/config/abi/types/factories/Erc20_bytes32__factory.d.ts +30 -0
  81. package/dist/config/abi/types/factories/Erc20_bytes32__factory.js +47 -0
  82. package/dist/config/abi/types/factories/JungleChef__factory.d.ts +247 -0
  83. package/dist/config/abi/types/factories/JungleChef__factory.js +326 -0
  84. package/dist/config/abi/types/factories/LaunchBonds__factory.d.ts +1560 -0
  85. package/dist/config/abi/types/factories/LaunchBonds__factory.js +2031 -0
  86. package/dist/config/abi/types/factories/LensContract__factory.d.ts +254 -0
  87. package/dist/config/abi/types/factories/LensContract__factory.js +338 -0
  88. package/dist/config/abi/types/factories/LockVeAbond__factory.d.ts +1698 -0
  89. package/dist/config/abi/types/factories/LockVeAbond__factory.js +2215 -0
  90. package/dist/config/abi/types/factories/MigrationBond__factory.d.ts +1268 -0
  91. package/dist/config/abi/types/factories/MigrationBond__factory.js +1656 -0
  92. package/dist/config/abi/types/factories/MigrationFveAbond__factory.d.ts +262 -0
  93. package/dist/config/abi/types/factories/MigrationFveAbond__factory.js +346 -0
  94. package/dist/config/abi/types/factories/MiniComplexRewarder__factory.d.ts +448 -0
  95. package/dist/config/abi/types/factories/MiniComplexRewarder__factory.js +586 -0
  96. package/dist/config/abi/types/factories/Multicallv2__factory.d.ts +115 -0
  97. package/dist/config/abi/types/factories/Multicallv2__factory.js +160 -0
  98. package/dist/config/abi/types/factories/Multicallv3__factory.d.ts +76 -0
  99. package/dist/config/abi/types/factories/Multicallv3__factory.js +109 -0
  100. package/dist/config/abi/types/factories/NonFungibleApes__factory.d.ts +617 -0
  101. package/dist/config/abi/types/factories/NonFungibleApes__factory.js +810 -0
  102. package/dist/config/abi/types/factories/NonFungibleBananas__factory.d.ts +576 -0
  103. package/dist/config/abi/types/factories/NonFungibleBananas__factory.js +756 -0
  104. package/dist/config/abi/types/factories/PriceGetterLinea__factory.d.ts +1105 -0
  105. package/dist/config/abi/types/factories/PriceGetterLinea__factory.js +1465 -0
  106. package/dist/config/abi/types/factories/PriceGetterV2__factory.d.ts +1027 -0
  107. package/dist/config/abi/types/factories/PriceGetterV2__factory.js +1364 -0
  108. package/dist/config/abi/types/factories/PriceGetter__factory.d.ts +999 -0
  109. package/dist/config/abi/types/factories/PriceGetter__factory.js +1326 -0
  110. package/dist/config/abi/types/factories/SousChef__factory.d.ts +511 -0
  111. package/dist/config/abi/types/factories/SousChef__factory.js +666 -0
  112. package/dist/config/abi/types/factories/Treasury__factory.d.ts +235 -0
  113. package/dist/config/abi/types/factories/Treasury__factory.js +309 -0
  114. package/dist/config/abi/types/factories/Weth__factory.d.ts +220 -0
  115. package/dist/config/abi/types/factories/Weth__factory.js +296 -0
  116. package/dist/config/abi/types/factories/Zap__factory.d.ts +695 -0
  117. package/dist/config/abi/types/factories/Zap__factory.js +889 -0
  118. package/dist/config/abi/types/factories/index.d.ts +25 -0
  119. package/dist/config/abi/types/factories/index.js +28 -0
  120. package/dist/config/abi/types/index.d.ts +51 -0
  121. package/dist/config/abi/types/index.js +26 -0
  122. package/dist/config/abi/weth.json +279 -0
  123. package/dist/hooks/useClaimBill.d.ts +4 -0
  124. package/dist/hooks/useClaimBill.js +59 -0
  125. package/dist/hooks/useContract.d.ts +25 -0
  126. package/dist/hooks/useContract.js +107 -0
  127. package/dist/pages/Bonds/Bonds.d.ts +6 -1
  128. package/dist/pages/Bonds/Bonds.js +12 -13
  129. package/dist/pages/YourBonds/YourBonds.js +37 -10
  130. package/dist/utils/index.d.ts +16 -0
  131. package/dist/utils/index.js +127 -0
  132. package/dist/utils/track.d.ts +7 -0
  133. package/dist/utils/track.js +17 -0
  134. package/package.json +1 -1
@@ -0,0 +1,810 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import { Contract, utils } from "ethers";
5
+ var _abi = [
6
+ {
7
+ inputs: [
8
+ {
9
+ internalType: "string",
10
+ name: "name",
11
+ type: "string",
12
+ },
13
+ {
14
+ internalType: "string",
15
+ name: "symbol",
16
+ type: "string",
17
+ },
18
+ {
19
+ internalType: "string",
20
+ name: "baseTokenURI",
21
+ type: "string",
22
+ },
23
+ ],
24
+ stateMutability: "nonpayable",
25
+ type: "constructor",
26
+ },
27
+ {
28
+ anonymous: false,
29
+ inputs: [
30
+ {
31
+ indexed: true,
32
+ internalType: "address",
33
+ name: "owner",
34
+ type: "address",
35
+ },
36
+ {
37
+ indexed: true,
38
+ internalType: "address",
39
+ name: "approved",
40
+ type: "address",
41
+ },
42
+ {
43
+ indexed: true,
44
+ internalType: "uint256",
45
+ name: "tokenId",
46
+ type: "uint256",
47
+ },
48
+ ],
49
+ name: "Approval",
50
+ type: "event",
51
+ },
52
+ {
53
+ anonymous: false,
54
+ inputs: [
55
+ {
56
+ indexed: true,
57
+ internalType: "address",
58
+ name: "owner",
59
+ type: "address",
60
+ },
61
+ {
62
+ indexed: true,
63
+ internalType: "address",
64
+ name: "operator",
65
+ type: "address",
66
+ },
67
+ {
68
+ indexed: false,
69
+ internalType: "bool",
70
+ name: "approved",
71
+ type: "bool",
72
+ },
73
+ ],
74
+ name: "ApprovalForAll",
75
+ type: "event",
76
+ },
77
+ {
78
+ anonymous: false,
79
+ inputs: [
80
+ {
81
+ indexed: true,
82
+ internalType: "bytes32",
83
+ name: "role",
84
+ type: "bytes32",
85
+ },
86
+ {
87
+ indexed: true,
88
+ internalType: "bytes32",
89
+ name: "previousAdminRole",
90
+ type: "bytes32",
91
+ },
92
+ {
93
+ indexed: true,
94
+ internalType: "bytes32",
95
+ name: "newAdminRole",
96
+ type: "bytes32",
97
+ },
98
+ ],
99
+ name: "RoleAdminChanged",
100
+ type: "event",
101
+ },
102
+ {
103
+ anonymous: false,
104
+ inputs: [
105
+ {
106
+ indexed: true,
107
+ internalType: "bytes32",
108
+ name: "role",
109
+ type: "bytes32",
110
+ },
111
+ {
112
+ indexed: true,
113
+ internalType: "address",
114
+ name: "account",
115
+ type: "address",
116
+ },
117
+ {
118
+ indexed: true,
119
+ internalType: "address",
120
+ name: "sender",
121
+ type: "address",
122
+ },
123
+ ],
124
+ name: "RoleGranted",
125
+ type: "event",
126
+ },
127
+ {
128
+ anonymous: false,
129
+ inputs: [
130
+ {
131
+ indexed: true,
132
+ internalType: "bytes32",
133
+ name: "role",
134
+ type: "bytes32",
135
+ },
136
+ {
137
+ indexed: true,
138
+ internalType: "address",
139
+ name: "account",
140
+ type: "address",
141
+ },
142
+ {
143
+ indexed: true,
144
+ internalType: "address",
145
+ name: "sender",
146
+ type: "address",
147
+ },
148
+ ],
149
+ name: "RoleRevoked",
150
+ type: "event",
151
+ },
152
+ {
153
+ anonymous: false,
154
+ inputs: [
155
+ {
156
+ indexed: true,
157
+ internalType: "address",
158
+ name: "from",
159
+ type: "address",
160
+ },
161
+ {
162
+ indexed: true,
163
+ internalType: "address",
164
+ name: "to",
165
+ type: "address",
166
+ },
167
+ {
168
+ indexed: true,
169
+ internalType: "uint256",
170
+ name: "tokenId",
171
+ type: "uint256",
172
+ },
173
+ ],
174
+ name: "Transfer",
175
+ type: "event",
176
+ },
177
+ {
178
+ anonymous: false,
179
+ inputs: [
180
+ {
181
+ indexed: true,
182
+ internalType: "string",
183
+ name: "previousBaseUri",
184
+ type: "string",
185
+ },
186
+ {
187
+ indexed: true,
188
+ internalType: "string",
189
+ name: "newBaseUri",
190
+ type: "string",
191
+ },
192
+ ],
193
+ name: "UpdateBaseURI",
194
+ type: "event",
195
+ },
196
+ {
197
+ inputs: [],
198
+ name: "DEFAULT_ADMIN_ROLE",
199
+ outputs: [
200
+ {
201
+ internalType: "bytes32",
202
+ name: "",
203
+ type: "bytes32",
204
+ },
205
+ ],
206
+ stateMutability: "view",
207
+ type: "function",
208
+ },
209
+ {
210
+ inputs: [],
211
+ name: "MINTER_ROLE",
212
+ outputs: [
213
+ {
214
+ internalType: "bytes32",
215
+ name: "",
216
+ type: "bytes32",
217
+ },
218
+ ],
219
+ stateMutability: "view",
220
+ type: "function",
221
+ },
222
+ {
223
+ inputs: [
224
+ {
225
+ internalType: "address",
226
+ name: "to",
227
+ type: "address",
228
+ },
229
+ {
230
+ internalType: "uint256",
231
+ name: "tokenId",
232
+ type: "uint256",
233
+ },
234
+ ],
235
+ name: "approve",
236
+ outputs: [],
237
+ stateMutability: "nonpayable",
238
+ type: "function",
239
+ },
240
+ {
241
+ inputs: [
242
+ {
243
+ internalType: "address",
244
+ name: "owner",
245
+ type: "address",
246
+ },
247
+ ],
248
+ name: "balanceOf",
249
+ outputs: [
250
+ {
251
+ internalType: "uint256",
252
+ name: "",
253
+ type: "uint256",
254
+ },
255
+ ],
256
+ stateMutability: "view",
257
+ type: "function",
258
+ },
259
+ {
260
+ inputs: [
261
+ {
262
+ internalType: "uint256",
263
+ name: "tokenId",
264
+ type: "uint256",
265
+ },
266
+ ],
267
+ name: "getApproved",
268
+ outputs: [
269
+ {
270
+ internalType: "address",
271
+ name: "",
272
+ type: "address",
273
+ },
274
+ ],
275
+ stateMutability: "view",
276
+ type: "function",
277
+ },
278
+ {
279
+ inputs: [
280
+ {
281
+ internalType: "uint256",
282
+ name: "",
283
+ type: "uint256",
284
+ },
285
+ ],
286
+ name: "getNFADetailsById",
287
+ outputs: [
288
+ {
289
+ internalType: "uint128",
290
+ name: "rarityTier",
291
+ type: "uint128",
292
+ },
293
+ {
294
+ internalType: "uint128",
295
+ name: "rarityOverall",
296
+ type: "uint128",
297
+ },
298
+ {
299
+ internalType: "string",
300
+ name: "name",
301
+ type: "string",
302
+ },
303
+ {
304
+ internalType: "string",
305
+ name: "faceColor",
306
+ type: "string",
307
+ },
308
+ {
309
+ internalType: "string",
310
+ name: "baseColor",
311
+ type: "string",
312
+ },
313
+ {
314
+ internalType: "string",
315
+ name: "frame",
316
+ type: "string",
317
+ },
318
+ {
319
+ internalType: "string",
320
+ name: "mouth",
321
+ type: "string",
322
+ },
323
+ {
324
+ internalType: "string",
325
+ name: "eyes",
326
+ type: "string",
327
+ },
328
+ {
329
+ internalType: "string",
330
+ name: "hat",
331
+ type: "string",
332
+ },
333
+ ],
334
+ stateMutability: "view",
335
+ type: "function",
336
+ },
337
+ {
338
+ inputs: [
339
+ {
340
+ internalType: "bytes32",
341
+ name: "role",
342
+ type: "bytes32",
343
+ },
344
+ ],
345
+ name: "getRoleAdmin",
346
+ outputs: [
347
+ {
348
+ internalType: "bytes32",
349
+ name: "",
350
+ type: "bytes32",
351
+ },
352
+ ],
353
+ stateMutability: "view",
354
+ type: "function",
355
+ },
356
+ {
357
+ inputs: [
358
+ {
359
+ internalType: "bytes32",
360
+ name: "role",
361
+ type: "bytes32",
362
+ },
363
+ {
364
+ internalType: "uint256",
365
+ name: "index",
366
+ type: "uint256",
367
+ },
368
+ ],
369
+ name: "getRoleMember",
370
+ outputs: [
371
+ {
372
+ internalType: "address",
373
+ name: "",
374
+ type: "address",
375
+ },
376
+ ],
377
+ stateMutability: "view",
378
+ type: "function",
379
+ },
380
+ {
381
+ inputs: [
382
+ {
383
+ internalType: "bytes32",
384
+ name: "role",
385
+ type: "bytes32",
386
+ },
387
+ ],
388
+ name: "getRoleMemberCount",
389
+ outputs: [
390
+ {
391
+ internalType: "uint256",
392
+ name: "",
393
+ type: "uint256",
394
+ },
395
+ ],
396
+ stateMutability: "view",
397
+ type: "function",
398
+ },
399
+ {
400
+ inputs: [
401
+ {
402
+ internalType: "bytes32",
403
+ name: "role",
404
+ type: "bytes32",
405
+ },
406
+ {
407
+ internalType: "address",
408
+ name: "account",
409
+ type: "address",
410
+ },
411
+ ],
412
+ name: "grantRole",
413
+ outputs: [],
414
+ stateMutability: "nonpayable",
415
+ type: "function",
416
+ },
417
+ {
418
+ inputs: [
419
+ {
420
+ internalType: "bytes32",
421
+ name: "role",
422
+ type: "bytes32",
423
+ },
424
+ {
425
+ internalType: "address",
426
+ name: "account",
427
+ type: "address",
428
+ },
429
+ ],
430
+ name: "hasRole",
431
+ outputs: [
432
+ {
433
+ internalType: "bool",
434
+ name: "",
435
+ type: "bool",
436
+ },
437
+ ],
438
+ stateMutability: "view",
439
+ type: "function",
440
+ },
441
+ {
442
+ inputs: [
443
+ {
444
+ internalType: "address",
445
+ name: "owner",
446
+ type: "address",
447
+ },
448
+ {
449
+ internalType: "address",
450
+ name: "operator",
451
+ type: "address",
452
+ },
453
+ ],
454
+ name: "isApprovedForAll",
455
+ outputs: [
456
+ {
457
+ internalType: "bool",
458
+ name: "",
459
+ type: "bool",
460
+ },
461
+ ],
462
+ stateMutability: "view",
463
+ type: "function",
464
+ },
465
+ {
466
+ inputs: [
467
+ {
468
+ internalType: "uint256",
469
+ name: "tokenId",
470
+ type: "uint256",
471
+ },
472
+ {
473
+ internalType: "uint256",
474
+ name: "rarityTier",
475
+ type: "uint256",
476
+ },
477
+ ],
478
+ name: "isNfaOfRarityTier",
479
+ outputs: [
480
+ {
481
+ internalType: "bool",
482
+ name: "",
483
+ type: "bool",
484
+ },
485
+ ],
486
+ stateMutability: "view",
487
+ type: "function",
488
+ },
489
+ {
490
+ inputs: [
491
+ {
492
+ internalType: "address",
493
+ name: "to",
494
+ type: "address",
495
+ },
496
+ {
497
+ internalType: "string",
498
+ name: "name",
499
+ type: "string",
500
+ },
501
+ {
502
+ internalType: "uint128[2]",
503
+ name: "rarities",
504
+ type: "uint128[2]",
505
+ },
506
+ {
507
+ internalType: "string[6]",
508
+ name: "attributes",
509
+ type: "string[6]",
510
+ },
511
+ ],
512
+ name: "mint",
513
+ outputs: [],
514
+ stateMutability: "nonpayable",
515
+ type: "function",
516
+ },
517
+ {
518
+ inputs: [],
519
+ name: "name",
520
+ outputs: [
521
+ {
522
+ internalType: "string",
523
+ name: "",
524
+ type: "string",
525
+ },
526
+ ],
527
+ stateMutability: "view",
528
+ type: "function",
529
+ },
530
+ {
531
+ inputs: [
532
+ {
533
+ internalType: "uint256",
534
+ name: "tokenId",
535
+ type: "uint256",
536
+ },
537
+ ],
538
+ name: "ownerOf",
539
+ outputs: [
540
+ {
541
+ internalType: "address",
542
+ name: "",
543
+ type: "address",
544
+ },
545
+ ],
546
+ stateMutability: "view",
547
+ type: "function",
548
+ },
549
+ {
550
+ inputs: [
551
+ {
552
+ internalType: "bytes32",
553
+ name: "role",
554
+ type: "bytes32",
555
+ },
556
+ {
557
+ internalType: "address",
558
+ name: "account",
559
+ type: "address",
560
+ },
561
+ ],
562
+ name: "renounceRole",
563
+ outputs: [],
564
+ stateMutability: "nonpayable",
565
+ type: "function",
566
+ },
567
+ {
568
+ inputs: [
569
+ {
570
+ internalType: "bytes32",
571
+ name: "role",
572
+ type: "bytes32",
573
+ },
574
+ {
575
+ internalType: "address",
576
+ name: "account",
577
+ type: "address",
578
+ },
579
+ ],
580
+ name: "revokeRole",
581
+ outputs: [],
582
+ stateMutability: "nonpayable",
583
+ type: "function",
584
+ },
585
+ {
586
+ inputs: [
587
+ {
588
+ internalType: "address",
589
+ name: "from",
590
+ type: "address",
591
+ },
592
+ {
593
+ internalType: "address",
594
+ name: "to",
595
+ type: "address",
596
+ },
597
+ {
598
+ internalType: "uint256",
599
+ name: "tokenId",
600
+ type: "uint256",
601
+ },
602
+ ],
603
+ name: "safeTransferFrom",
604
+ outputs: [],
605
+ stateMutability: "nonpayable",
606
+ type: "function",
607
+ },
608
+ {
609
+ inputs: [
610
+ {
611
+ internalType: "address",
612
+ name: "from",
613
+ type: "address",
614
+ },
615
+ {
616
+ internalType: "address",
617
+ name: "to",
618
+ type: "address",
619
+ },
620
+ {
621
+ internalType: "uint256",
622
+ name: "tokenId",
623
+ type: "uint256",
624
+ },
625
+ {
626
+ internalType: "bytes",
627
+ name: "_data",
628
+ type: "bytes",
629
+ },
630
+ ],
631
+ name: "safeTransferFrom",
632
+ outputs: [],
633
+ stateMutability: "nonpayable",
634
+ type: "function",
635
+ },
636
+ {
637
+ inputs: [
638
+ {
639
+ internalType: "address",
640
+ name: "operator",
641
+ type: "address",
642
+ },
643
+ {
644
+ internalType: "bool",
645
+ name: "approved",
646
+ type: "bool",
647
+ },
648
+ ],
649
+ name: "setApprovalForAll",
650
+ outputs: [],
651
+ stateMutability: "nonpayable",
652
+ type: "function",
653
+ },
654
+ {
655
+ inputs: [
656
+ {
657
+ internalType: "bytes4",
658
+ name: "interfaceId",
659
+ type: "bytes4",
660
+ },
661
+ ],
662
+ name: "supportsInterface",
663
+ outputs: [
664
+ {
665
+ internalType: "bool",
666
+ name: "",
667
+ type: "bool",
668
+ },
669
+ ],
670
+ stateMutability: "view",
671
+ type: "function",
672
+ },
673
+ {
674
+ inputs: [],
675
+ name: "symbol",
676
+ outputs: [
677
+ {
678
+ internalType: "string",
679
+ name: "",
680
+ type: "string",
681
+ },
682
+ ],
683
+ stateMutability: "view",
684
+ type: "function",
685
+ },
686
+ {
687
+ inputs: [
688
+ {
689
+ internalType: "uint256",
690
+ name: "index",
691
+ type: "uint256",
692
+ },
693
+ ],
694
+ name: "tokenByIndex",
695
+ outputs: [
696
+ {
697
+ internalType: "uint256",
698
+ name: "",
699
+ type: "uint256",
700
+ },
701
+ ],
702
+ stateMutability: "view",
703
+ type: "function",
704
+ },
705
+ {
706
+ inputs: [
707
+ {
708
+ internalType: "address",
709
+ name: "owner",
710
+ type: "address",
711
+ },
712
+ {
713
+ internalType: "uint256",
714
+ name: "index",
715
+ type: "uint256",
716
+ },
717
+ ],
718
+ name: "tokenOfOwnerByIndex",
719
+ outputs: [
720
+ {
721
+ internalType: "uint256",
722
+ name: "",
723
+ type: "uint256",
724
+ },
725
+ ],
726
+ stateMutability: "view",
727
+ type: "function",
728
+ },
729
+ {
730
+ inputs: [
731
+ {
732
+ internalType: "uint256",
733
+ name: "tokenId",
734
+ type: "uint256",
735
+ },
736
+ ],
737
+ name: "tokenURI",
738
+ outputs: [
739
+ {
740
+ internalType: "string",
741
+ name: "",
742
+ type: "string",
743
+ },
744
+ ],
745
+ stateMutability: "view",
746
+ type: "function",
747
+ },
748
+ {
749
+ inputs: [],
750
+ name: "totalSupply",
751
+ outputs: [
752
+ {
753
+ internalType: "uint256",
754
+ name: "",
755
+ type: "uint256",
756
+ },
757
+ ],
758
+ stateMutability: "view",
759
+ type: "function",
760
+ },
761
+ {
762
+ inputs: [
763
+ {
764
+ internalType: "address",
765
+ name: "from",
766
+ type: "address",
767
+ },
768
+ {
769
+ internalType: "address",
770
+ name: "to",
771
+ type: "address",
772
+ },
773
+ {
774
+ internalType: "uint256",
775
+ name: "tokenId",
776
+ type: "uint256",
777
+ },
778
+ ],
779
+ name: "transferFrom",
780
+ outputs: [],
781
+ stateMutability: "nonpayable",
782
+ type: "function",
783
+ },
784
+ {
785
+ inputs: [
786
+ {
787
+ internalType: "string",
788
+ name: "baseTokenURI",
789
+ type: "string",
790
+ },
791
+ ],
792
+ name: "updateBaseTokenURI",
793
+ outputs: [],
794
+ stateMutability: "nonpayable",
795
+ type: "function",
796
+ },
797
+ ];
798
+ var NonFungibleApes__factory = /** @class */ (function () {
799
+ function NonFungibleApes__factory() {
800
+ }
801
+ NonFungibleApes__factory.createInterface = function () {
802
+ return new utils.Interface(_abi);
803
+ };
804
+ NonFungibleApes__factory.connect = function (address, signerOrProvider) {
805
+ return new Contract(address, _abi, signerOrProvider);
806
+ };
807
+ NonFungibleApes__factory.abi = _abi;
808
+ return NonFungibleApes__factory;
809
+ }());
810
+ export { NonFungibleApes__factory };