@lukso/lsp8-contracts 0.15.0-rc.0

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 (43) hide show
  1. package/README.md +3 -0
  2. package/artifacts/LSP8CappedSupply.json +959 -0
  3. package/artifacts/LSP8CappedSupplyInitAbstract.json +972 -0
  4. package/artifacts/LSP8IdentifiableDigitalAsset.json +936 -0
  5. package/artifacts/LSP8IdentifiableDigitalAssetInitAbstract.json +949 -0
  6. package/artifacts/LSP8Mintable.json +1006 -0
  7. package/artifacts/LSP8MintableInit.json +1026 -0
  8. package/contracts/ILSP8IdentifiableDigitalAsset.sol +328 -0
  9. package/contracts/LSP8Constants.sol +41 -0
  10. package/contracts/LSP8Errors.sol +118 -0
  11. package/contracts/LSP8IdentifiableDigitalAsset.sol +241 -0
  12. package/contracts/LSP8IdentifiableDigitalAssetCore.sol +806 -0
  13. package/contracts/LSP8IdentifiableDigitalAssetInitAbstract.sol +248 -0
  14. package/contracts/extensions/LSP8Burnable.sol +30 -0
  15. package/contracts/extensions/LSP8BurnableInitAbstract.sol +24 -0
  16. package/contracts/extensions/LSP8CappedSupply.sol +85 -0
  17. package/contracts/extensions/LSP8CappedSupplyInitAbstract.sol +88 -0
  18. package/contracts/extensions/LSP8Enumerable.sol +69 -0
  19. package/contracts/extensions/LSP8EnumerableInitAbstract.sol +64 -0
  20. package/contracts/presets/ILSP8Mintable.sol +33 -0
  21. package/contracts/presets/LSP8Mintable.sol +60 -0
  22. package/contracts/presets/LSP8MintableInit.sol +43 -0
  23. package/contracts/presets/LSP8MintableInitAbstract.sol +62 -0
  24. package/dist/index.cjs +33 -0
  25. package/dist/index.d.cts +29 -0
  26. package/dist/index.d.mts +29 -0
  27. package/dist/index.d.ts +29 -0
  28. package/dist/index.mjs +28 -0
  29. package/package.json +56 -0
  30. package/types/LSP8CappedSupply.ts +792 -0
  31. package/types/LSP8CappedSupplyInitAbstract.ts +824 -0
  32. package/types/LSP8IdentifiableDigitalAsset.ts +778 -0
  33. package/types/LSP8IdentifiableDigitalAssetInitAbstract.ts +813 -0
  34. package/types/LSP8Mintable.ts +797 -0
  35. package/types/LSP8MintableInit.ts +860 -0
  36. package/types/common.ts +131 -0
  37. package/types/contracts/LSP8IdentifiableDigitalAsset.ts +778 -0
  38. package/types/contracts/LSP8IdentifiableDigitalAssetInitAbstract.ts +813 -0
  39. package/types/contracts/extensions/LSP8CappedSupply.ts +792 -0
  40. package/types/contracts/extensions/LSP8CappedSupplyInitAbstract.ts +824 -0
  41. package/types/contracts/presets/LSP8Mintable.ts +797 -0
  42. package/types/contracts/presets/LSP8MintableInit.ts +860 -0
  43. package/types/index.ts +16 -0
@@ -0,0 +1,959 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "LSP8CappedSupply",
4
+ "sourceName": "contracts/extensions/LSP8CappedSupply.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "ERC725Y_DataKeysValuesEmptyArray",
9
+ "type": "error"
10
+ },
11
+ {
12
+ "inputs": [],
13
+ "name": "ERC725Y_DataKeysValuesLengthMismatch",
14
+ "type": "error"
15
+ },
16
+ {
17
+ "inputs": [],
18
+ "name": "ERC725Y_MsgValueDisallowed",
19
+ "type": "error"
20
+ },
21
+ {
22
+ "inputs": [
23
+ {
24
+ "internalType": "bytes",
25
+ "name": "storedData",
26
+ "type": "bytes"
27
+ }
28
+ ],
29
+ "name": "InvalidExtensionAddress",
30
+ "type": "error"
31
+ },
32
+ {
33
+ "inputs": [
34
+ {
35
+ "internalType": "bytes",
36
+ "name": "data",
37
+ "type": "bytes"
38
+ }
39
+ ],
40
+ "name": "InvalidFunctionSelector",
41
+ "type": "error"
42
+ },
43
+ {
44
+ "inputs": [],
45
+ "name": "LSP4TokenNameNotEditable",
46
+ "type": "error"
47
+ },
48
+ {
49
+ "inputs": [],
50
+ "name": "LSP4TokenSymbolNotEditable",
51
+ "type": "error"
52
+ },
53
+ {
54
+ "inputs": [],
55
+ "name": "LSP4TokenTypeNotEditable",
56
+ "type": "error"
57
+ },
58
+ {
59
+ "inputs": [
60
+ {
61
+ "internalType": "uint256",
62
+ "name": "callIndex",
63
+ "type": "uint256"
64
+ }
65
+ ],
66
+ "name": "LSP8BatchCallFailed",
67
+ "type": "error"
68
+ },
69
+ {
70
+ "inputs": [],
71
+ "name": "LSP8CannotSendToAddressZero",
72
+ "type": "error"
73
+ },
74
+ {
75
+ "inputs": [],
76
+ "name": "LSP8CannotUseAddressZeroAsOperator",
77
+ "type": "error"
78
+ },
79
+ {
80
+ "inputs": [],
81
+ "name": "LSP8CappedSupplyCannotMintOverCap",
82
+ "type": "error"
83
+ },
84
+ {
85
+ "inputs": [],
86
+ "name": "LSP8CappedSupplyRequired",
87
+ "type": "error"
88
+ },
89
+ {
90
+ "inputs": [],
91
+ "name": "LSP8InvalidTransferBatch",
92
+ "type": "error"
93
+ },
94
+ {
95
+ "inputs": [
96
+ {
97
+ "internalType": "bytes32",
98
+ "name": "tokenId",
99
+ "type": "bytes32"
100
+ }
101
+ ],
102
+ "name": "LSP8NonExistentTokenId",
103
+ "type": "error"
104
+ },
105
+ {
106
+ "inputs": [
107
+ {
108
+ "internalType": "address",
109
+ "name": "operator",
110
+ "type": "address"
111
+ },
112
+ {
113
+ "internalType": "bytes32",
114
+ "name": "tokenId",
115
+ "type": "bytes32"
116
+ }
117
+ ],
118
+ "name": "LSP8NonExistingOperator",
119
+ "type": "error"
120
+ },
121
+ {
122
+ "inputs": [
123
+ {
124
+ "internalType": "bytes32",
125
+ "name": "tokenId",
126
+ "type": "bytes32"
127
+ },
128
+ {
129
+ "internalType": "address",
130
+ "name": "caller",
131
+ "type": "address"
132
+ }
133
+ ],
134
+ "name": "LSP8NotTokenOperator",
135
+ "type": "error"
136
+ },
137
+ {
138
+ "inputs": [
139
+ {
140
+ "internalType": "address",
141
+ "name": "tokenOwner",
142
+ "type": "address"
143
+ },
144
+ {
145
+ "internalType": "bytes32",
146
+ "name": "tokenId",
147
+ "type": "bytes32"
148
+ },
149
+ {
150
+ "internalType": "address",
151
+ "name": "caller",
152
+ "type": "address"
153
+ }
154
+ ],
155
+ "name": "LSP8NotTokenOwner",
156
+ "type": "error"
157
+ },
158
+ {
159
+ "inputs": [
160
+ {
161
+ "internalType": "address",
162
+ "name": "tokenReceiver",
163
+ "type": "address"
164
+ }
165
+ ],
166
+ "name": "LSP8NotifyTokenReceiverContractMissingLSP1Interface",
167
+ "type": "error"
168
+ },
169
+ {
170
+ "inputs": [
171
+ {
172
+ "internalType": "address",
173
+ "name": "tokenReceiver",
174
+ "type": "address"
175
+ }
176
+ ],
177
+ "name": "LSP8NotifyTokenReceiverIsEOA",
178
+ "type": "error"
179
+ },
180
+ {
181
+ "inputs": [
182
+ {
183
+ "internalType": "address",
184
+ "name": "operator",
185
+ "type": "address"
186
+ },
187
+ {
188
+ "internalType": "bytes32",
189
+ "name": "tokenId",
190
+ "type": "bytes32"
191
+ }
192
+ ],
193
+ "name": "LSP8OperatorAlreadyAuthorized",
194
+ "type": "error"
195
+ },
196
+ {
197
+ "inputs": [
198
+ {
199
+ "internalType": "address",
200
+ "name": "caller",
201
+ "type": "address"
202
+ },
203
+ {
204
+ "internalType": "address",
205
+ "name": "tokenOwner",
206
+ "type": "address"
207
+ },
208
+ {
209
+ "internalType": "bytes32",
210
+ "name": "tokenId",
211
+ "type": "bytes32"
212
+ }
213
+ ],
214
+ "name": "LSP8RevokeOperatorNotAuthorized",
215
+ "type": "error"
216
+ },
217
+ {
218
+ "inputs": [],
219
+ "name": "LSP8TokenContractCannotHoldValue",
220
+ "type": "error"
221
+ },
222
+ {
223
+ "inputs": [],
224
+ "name": "LSP8TokenIdFormatNotEditable",
225
+ "type": "error"
226
+ },
227
+ {
228
+ "inputs": [],
229
+ "name": "LSP8TokenIdsDataEmptyArray",
230
+ "type": "error"
231
+ },
232
+ {
233
+ "inputs": [],
234
+ "name": "LSP8TokenIdsDataLengthMismatch",
235
+ "type": "error"
236
+ },
237
+ {
238
+ "inputs": [],
239
+ "name": "LSP8TokenOwnerCannotBeOperator",
240
+ "type": "error"
241
+ },
242
+ {
243
+ "inputs": [
244
+ {
245
+ "internalType": "bytes32",
246
+ "name": "tokenId",
247
+ "type": "bytes32"
248
+ },
249
+ {
250
+ "internalType": "address",
251
+ "name": "oldOwner",
252
+ "type": "address"
253
+ },
254
+ {
255
+ "internalType": "address",
256
+ "name": "newOwner",
257
+ "type": "address"
258
+ }
259
+ ],
260
+ "name": "LSP8TokenOwnerChanged",
261
+ "type": "error"
262
+ },
263
+ {
264
+ "inputs": [
265
+ {
266
+ "internalType": "bytes4",
267
+ "name": "functionSelector",
268
+ "type": "bytes4"
269
+ }
270
+ ],
271
+ "name": "NoExtensionFoundForFunctionSelector",
272
+ "type": "error"
273
+ },
274
+ {
275
+ "inputs": [
276
+ {
277
+ "internalType": "address",
278
+ "name": "callerAddress",
279
+ "type": "address"
280
+ }
281
+ ],
282
+ "name": "OwnableCallerNotTheOwner",
283
+ "type": "error"
284
+ },
285
+ {
286
+ "inputs": [],
287
+ "name": "OwnableCannotSetZeroAddressAsOwner",
288
+ "type": "error"
289
+ },
290
+ {
291
+ "anonymous": false,
292
+ "inputs": [
293
+ {
294
+ "indexed": true,
295
+ "internalType": "bytes32",
296
+ "name": "dataKey",
297
+ "type": "bytes32"
298
+ },
299
+ {
300
+ "indexed": false,
301
+ "internalType": "bytes",
302
+ "name": "dataValue",
303
+ "type": "bytes"
304
+ }
305
+ ],
306
+ "name": "DataChanged",
307
+ "type": "event"
308
+ },
309
+ {
310
+ "anonymous": false,
311
+ "inputs": [
312
+ {
313
+ "indexed": true,
314
+ "internalType": "address",
315
+ "name": "operator",
316
+ "type": "address"
317
+ },
318
+ {
319
+ "indexed": true,
320
+ "internalType": "address",
321
+ "name": "tokenOwner",
322
+ "type": "address"
323
+ },
324
+ {
325
+ "indexed": true,
326
+ "internalType": "bytes32",
327
+ "name": "tokenId",
328
+ "type": "bytes32"
329
+ },
330
+ {
331
+ "indexed": false,
332
+ "internalType": "bytes",
333
+ "name": "operatorNotificationData",
334
+ "type": "bytes"
335
+ }
336
+ ],
337
+ "name": "OperatorAuthorizationChanged",
338
+ "type": "event"
339
+ },
340
+ {
341
+ "anonymous": false,
342
+ "inputs": [
343
+ {
344
+ "indexed": true,
345
+ "internalType": "address",
346
+ "name": "operator",
347
+ "type": "address"
348
+ },
349
+ {
350
+ "indexed": true,
351
+ "internalType": "address",
352
+ "name": "tokenOwner",
353
+ "type": "address"
354
+ },
355
+ {
356
+ "indexed": true,
357
+ "internalType": "bytes32",
358
+ "name": "tokenId",
359
+ "type": "bytes32"
360
+ },
361
+ {
362
+ "indexed": false,
363
+ "internalType": "bool",
364
+ "name": "notified",
365
+ "type": "bool"
366
+ },
367
+ {
368
+ "indexed": false,
369
+ "internalType": "bytes",
370
+ "name": "operatorNotificationData",
371
+ "type": "bytes"
372
+ }
373
+ ],
374
+ "name": "OperatorRevoked",
375
+ "type": "event"
376
+ },
377
+ {
378
+ "anonymous": false,
379
+ "inputs": [
380
+ {
381
+ "indexed": true,
382
+ "internalType": "address",
383
+ "name": "previousOwner",
384
+ "type": "address"
385
+ },
386
+ {
387
+ "indexed": true,
388
+ "internalType": "address",
389
+ "name": "newOwner",
390
+ "type": "address"
391
+ }
392
+ ],
393
+ "name": "OwnershipTransferred",
394
+ "type": "event"
395
+ },
396
+ {
397
+ "anonymous": false,
398
+ "inputs": [
399
+ {
400
+ "indexed": true,
401
+ "internalType": "bytes32",
402
+ "name": "tokenId",
403
+ "type": "bytes32"
404
+ },
405
+ {
406
+ "indexed": true,
407
+ "internalType": "bytes32",
408
+ "name": "dataKey",
409
+ "type": "bytes32"
410
+ },
411
+ {
412
+ "indexed": false,
413
+ "internalType": "bytes",
414
+ "name": "dataValue",
415
+ "type": "bytes"
416
+ }
417
+ ],
418
+ "name": "TokenIdDataChanged",
419
+ "type": "event"
420
+ },
421
+ {
422
+ "anonymous": false,
423
+ "inputs": [
424
+ {
425
+ "indexed": false,
426
+ "internalType": "address",
427
+ "name": "operator",
428
+ "type": "address"
429
+ },
430
+ {
431
+ "indexed": true,
432
+ "internalType": "address",
433
+ "name": "from",
434
+ "type": "address"
435
+ },
436
+ {
437
+ "indexed": true,
438
+ "internalType": "address",
439
+ "name": "to",
440
+ "type": "address"
441
+ },
442
+ {
443
+ "indexed": true,
444
+ "internalType": "bytes32",
445
+ "name": "tokenId",
446
+ "type": "bytes32"
447
+ },
448
+ {
449
+ "indexed": false,
450
+ "internalType": "bool",
451
+ "name": "force",
452
+ "type": "bool"
453
+ },
454
+ {
455
+ "indexed": false,
456
+ "internalType": "bytes",
457
+ "name": "data",
458
+ "type": "bytes"
459
+ }
460
+ ],
461
+ "name": "Transfer",
462
+ "type": "event"
463
+ },
464
+ {
465
+ "stateMutability": "payable",
466
+ "type": "fallback"
467
+ },
468
+ {
469
+ "inputs": [
470
+ {
471
+ "internalType": "address",
472
+ "name": "operator",
473
+ "type": "address"
474
+ },
475
+ {
476
+ "internalType": "bytes32",
477
+ "name": "tokenId",
478
+ "type": "bytes32"
479
+ },
480
+ {
481
+ "internalType": "bytes",
482
+ "name": "operatorNotificationData",
483
+ "type": "bytes"
484
+ }
485
+ ],
486
+ "name": "authorizeOperator",
487
+ "outputs": [],
488
+ "stateMutability": "nonpayable",
489
+ "type": "function"
490
+ },
491
+ {
492
+ "inputs": [
493
+ {
494
+ "internalType": "address",
495
+ "name": "tokenOwner",
496
+ "type": "address"
497
+ }
498
+ ],
499
+ "name": "balanceOf",
500
+ "outputs": [
501
+ {
502
+ "internalType": "uint256",
503
+ "name": "",
504
+ "type": "uint256"
505
+ }
506
+ ],
507
+ "stateMutability": "view",
508
+ "type": "function"
509
+ },
510
+ {
511
+ "inputs": [
512
+ {
513
+ "internalType": "bytes[]",
514
+ "name": "data",
515
+ "type": "bytes[]"
516
+ }
517
+ ],
518
+ "name": "batchCalls",
519
+ "outputs": [
520
+ {
521
+ "internalType": "bytes[]",
522
+ "name": "results",
523
+ "type": "bytes[]"
524
+ }
525
+ ],
526
+ "stateMutability": "nonpayable",
527
+ "type": "function"
528
+ },
529
+ {
530
+ "inputs": [
531
+ {
532
+ "internalType": "bytes32",
533
+ "name": "dataKey",
534
+ "type": "bytes32"
535
+ }
536
+ ],
537
+ "name": "getData",
538
+ "outputs": [
539
+ {
540
+ "internalType": "bytes",
541
+ "name": "dataValue",
542
+ "type": "bytes"
543
+ }
544
+ ],
545
+ "stateMutability": "view",
546
+ "type": "function"
547
+ },
548
+ {
549
+ "inputs": [
550
+ {
551
+ "internalType": "bytes32[]",
552
+ "name": "dataKeys",
553
+ "type": "bytes32[]"
554
+ }
555
+ ],
556
+ "name": "getDataBatch",
557
+ "outputs": [
558
+ {
559
+ "internalType": "bytes[]",
560
+ "name": "dataValues",
561
+ "type": "bytes[]"
562
+ }
563
+ ],
564
+ "stateMutability": "view",
565
+ "type": "function"
566
+ },
567
+ {
568
+ "inputs": [
569
+ {
570
+ "internalType": "bytes32[]",
571
+ "name": "tokenIds",
572
+ "type": "bytes32[]"
573
+ },
574
+ {
575
+ "internalType": "bytes32[]",
576
+ "name": "dataKeys",
577
+ "type": "bytes32[]"
578
+ }
579
+ ],
580
+ "name": "getDataBatchForTokenIds",
581
+ "outputs": [
582
+ {
583
+ "internalType": "bytes[]",
584
+ "name": "dataValues",
585
+ "type": "bytes[]"
586
+ }
587
+ ],
588
+ "stateMutability": "view",
589
+ "type": "function"
590
+ },
591
+ {
592
+ "inputs": [
593
+ {
594
+ "internalType": "bytes32",
595
+ "name": "tokenId",
596
+ "type": "bytes32"
597
+ },
598
+ {
599
+ "internalType": "bytes32",
600
+ "name": "dataKey",
601
+ "type": "bytes32"
602
+ }
603
+ ],
604
+ "name": "getDataForTokenId",
605
+ "outputs": [
606
+ {
607
+ "internalType": "bytes",
608
+ "name": "dataValue",
609
+ "type": "bytes"
610
+ }
611
+ ],
612
+ "stateMutability": "view",
613
+ "type": "function"
614
+ },
615
+ {
616
+ "inputs": [
617
+ {
618
+ "internalType": "bytes32",
619
+ "name": "tokenId",
620
+ "type": "bytes32"
621
+ }
622
+ ],
623
+ "name": "getOperatorsOf",
624
+ "outputs": [
625
+ {
626
+ "internalType": "address[]",
627
+ "name": "",
628
+ "type": "address[]"
629
+ }
630
+ ],
631
+ "stateMutability": "view",
632
+ "type": "function"
633
+ },
634
+ {
635
+ "inputs": [
636
+ {
637
+ "internalType": "address",
638
+ "name": "operator",
639
+ "type": "address"
640
+ },
641
+ {
642
+ "internalType": "bytes32",
643
+ "name": "tokenId",
644
+ "type": "bytes32"
645
+ }
646
+ ],
647
+ "name": "isOperatorFor",
648
+ "outputs": [
649
+ {
650
+ "internalType": "bool",
651
+ "name": "",
652
+ "type": "bool"
653
+ }
654
+ ],
655
+ "stateMutability": "view",
656
+ "type": "function"
657
+ },
658
+ {
659
+ "inputs": [],
660
+ "name": "owner",
661
+ "outputs": [
662
+ {
663
+ "internalType": "address",
664
+ "name": "",
665
+ "type": "address"
666
+ }
667
+ ],
668
+ "stateMutability": "view",
669
+ "type": "function"
670
+ },
671
+ {
672
+ "inputs": [],
673
+ "name": "renounceOwnership",
674
+ "outputs": [],
675
+ "stateMutability": "nonpayable",
676
+ "type": "function"
677
+ },
678
+ {
679
+ "inputs": [
680
+ {
681
+ "internalType": "address",
682
+ "name": "operator",
683
+ "type": "address"
684
+ },
685
+ {
686
+ "internalType": "bytes32",
687
+ "name": "tokenId",
688
+ "type": "bytes32"
689
+ },
690
+ {
691
+ "internalType": "bool",
692
+ "name": "notify",
693
+ "type": "bool"
694
+ },
695
+ {
696
+ "internalType": "bytes",
697
+ "name": "operatorNotificationData",
698
+ "type": "bytes"
699
+ }
700
+ ],
701
+ "name": "revokeOperator",
702
+ "outputs": [],
703
+ "stateMutability": "nonpayable",
704
+ "type": "function"
705
+ },
706
+ {
707
+ "inputs": [
708
+ {
709
+ "internalType": "bytes32",
710
+ "name": "dataKey",
711
+ "type": "bytes32"
712
+ },
713
+ {
714
+ "internalType": "bytes",
715
+ "name": "dataValue",
716
+ "type": "bytes"
717
+ }
718
+ ],
719
+ "name": "setData",
720
+ "outputs": [],
721
+ "stateMutability": "payable",
722
+ "type": "function"
723
+ },
724
+ {
725
+ "inputs": [
726
+ {
727
+ "internalType": "bytes32[]",
728
+ "name": "dataKeys",
729
+ "type": "bytes32[]"
730
+ },
731
+ {
732
+ "internalType": "bytes[]",
733
+ "name": "dataValues",
734
+ "type": "bytes[]"
735
+ }
736
+ ],
737
+ "name": "setDataBatch",
738
+ "outputs": [],
739
+ "stateMutability": "payable",
740
+ "type": "function"
741
+ },
742
+ {
743
+ "inputs": [
744
+ {
745
+ "internalType": "bytes32[]",
746
+ "name": "tokenIds",
747
+ "type": "bytes32[]"
748
+ },
749
+ {
750
+ "internalType": "bytes32[]",
751
+ "name": "dataKeys",
752
+ "type": "bytes32[]"
753
+ },
754
+ {
755
+ "internalType": "bytes[]",
756
+ "name": "dataValues",
757
+ "type": "bytes[]"
758
+ }
759
+ ],
760
+ "name": "setDataBatchForTokenIds",
761
+ "outputs": [],
762
+ "stateMutability": "nonpayable",
763
+ "type": "function"
764
+ },
765
+ {
766
+ "inputs": [
767
+ {
768
+ "internalType": "bytes32",
769
+ "name": "tokenId",
770
+ "type": "bytes32"
771
+ },
772
+ {
773
+ "internalType": "bytes32",
774
+ "name": "dataKey",
775
+ "type": "bytes32"
776
+ },
777
+ {
778
+ "internalType": "bytes",
779
+ "name": "dataValue",
780
+ "type": "bytes"
781
+ }
782
+ ],
783
+ "name": "setDataForTokenId",
784
+ "outputs": [],
785
+ "stateMutability": "nonpayable",
786
+ "type": "function"
787
+ },
788
+ {
789
+ "inputs": [
790
+ {
791
+ "internalType": "bytes4",
792
+ "name": "interfaceId",
793
+ "type": "bytes4"
794
+ }
795
+ ],
796
+ "name": "supportsInterface",
797
+ "outputs": [
798
+ {
799
+ "internalType": "bool",
800
+ "name": "",
801
+ "type": "bool"
802
+ }
803
+ ],
804
+ "stateMutability": "view",
805
+ "type": "function"
806
+ },
807
+ {
808
+ "inputs": [
809
+ {
810
+ "internalType": "address",
811
+ "name": "tokenOwner",
812
+ "type": "address"
813
+ }
814
+ ],
815
+ "name": "tokenIdsOf",
816
+ "outputs": [
817
+ {
818
+ "internalType": "bytes32[]",
819
+ "name": "",
820
+ "type": "bytes32[]"
821
+ }
822
+ ],
823
+ "stateMutability": "view",
824
+ "type": "function"
825
+ },
826
+ {
827
+ "inputs": [
828
+ {
829
+ "internalType": "bytes32",
830
+ "name": "tokenId",
831
+ "type": "bytes32"
832
+ }
833
+ ],
834
+ "name": "tokenOwnerOf",
835
+ "outputs": [
836
+ {
837
+ "internalType": "address",
838
+ "name": "",
839
+ "type": "address"
840
+ }
841
+ ],
842
+ "stateMutability": "view",
843
+ "type": "function"
844
+ },
845
+ {
846
+ "inputs": [],
847
+ "name": "tokenSupplyCap",
848
+ "outputs": [
849
+ {
850
+ "internalType": "uint256",
851
+ "name": "",
852
+ "type": "uint256"
853
+ }
854
+ ],
855
+ "stateMutability": "view",
856
+ "type": "function"
857
+ },
858
+ {
859
+ "inputs": [],
860
+ "name": "totalSupply",
861
+ "outputs": [
862
+ {
863
+ "internalType": "uint256",
864
+ "name": "",
865
+ "type": "uint256"
866
+ }
867
+ ],
868
+ "stateMutability": "view",
869
+ "type": "function"
870
+ },
871
+ {
872
+ "inputs": [
873
+ {
874
+ "internalType": "address",
875
+ "name": "from",
876
+ "type": "address"
877
+ },
878
+ {
879
+ "internalType": "address",
880
+ "name": "to",
881
+ "type": "address"
882
+ },
883
+ {
884
+ "internalType": "bytes32",
885
+ "name": "tokenId",
886
+ "type": "bytes32"
887
+ },
888
+ {
889
+ "internalType": "bool",
890
+ "name": "force",
891
+ "type": "bool"
892
+ },
893
+ {
894
+ "internalType": "bytes",
895
+ "name": "data",
896
+ "type": "bytes"
897
+ }
898
+ ],
899
+ "name": "transfer",
900
+ "outputs": [],
901
+ "stateMutability": "nonpayable",
902
+ "type": "function"
903
+ },
904
+ {
905
+ "inputs": [
906
+ {
907
+ "internalType": "address[]",
908
+ "name": "from",
909
+ "type": "address[]"
910
+ },
911
+ {
912
+ "internalType": "address[]",
913
+ "name": "to",
914
+ "type": "address[]"
915
+ },
916
+ {
917
+ "internalType": "bytes32[]",
918
+ "name": "tokenId",
919
+ "type": "bytes32[]"
920
+ },
921
+ {
922
+ "internalType": "bool[]",
923
+ "name": "force",
924
+ "type": "bool[]"
925
+ },
926
+ {
927
+ "internalType": "bytes[]",
928
+ "name": "data",
929
+ "type": "bytes[]"
930
+ }
931
+ ],
932
+ "name": "transferBatch",
933
+ "outputs": [],
934
+ "stateMutability": "nonpayable",
935
+ "type": "function"
936
+ },
937
+ {
938
+ "inputs": [
939
+ {
940
+ "internalType": "address",
941
+ "name": "newOwner",
942
+ "type": "address"
943
+ }
944
+ ],
945
+ "name": "transferOwnership",
946
+ "outputs": [],
947
+ "stateMutability": "nonpayable",
948
+ "type": "function"
949
+ },
950
+ {
951
+ "stateMutability": "payable",
952
+ "type": "receive"
953
+ }
954
+ ],
955
+ "bytecode": "0x",
956
+ "deployedBytecode": "0x",
957
+ "linkReferences": {},
958
+ "deployedLinkReferences": {}
959
+ }