@lukso/lsp8-contracts 0.15.0-rc.5 → 0.16.2

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 (50) hide show
  1. package/README.md +15 -1
  2. package/artifacts/ILSP8IdentifiableDigitalAsset.json +0 -112
  3. package/artifacts/LSP8Burnable.json +0 -11
  4. package/artifacts/LSP8BurnableInitAbstract.json +0 -16
  5. package/artifacts/LSP8CappedSupply.json +0 -11
  6. package/artifacts/LSP8CappedSupplyInitAbstract.json +0 -16
  7. package/artifacts/LSP8Enumerable.json +0 -11
  8. package/artifacts/LSP8EnumerableInitAbstract.json +0 -16
  9. package/artifacts/LSP8IdentifiableDigitalAsset.json +0 -11
  10. package/artifacts/LSP8IdentifiableDigitalAssetInitAbstract.json +0 -16
  11. package/artifacts/LSP8Mintable.json +2 -13
  12. package/artifacts/LSP8MintableInit.json +2 -13
  13. package/artifacts/LSP8Votes.json +1230 -0
  14. package/artifacts/LSP8VotesInitAbstract.json +1222 -0
  15. package/compatibility-abis/LSP8IdentifiableDigitalAsset-v0.12.0.json +739 -748
  16. package/compatibility-abis/LSP8IdentifiableDigitalAsset-v0.13.0.json +890 -899
  17. package/compatibility-abis/LSP8IdentifiableDigitalAsset-v0.14.0.json +890 -899
  18. package/compatibility-abis/LSP8IdentifiableDigitalAsset.json +927 -0
  19. package/compatibility-abis/README.md +34 -0
  20. package/contracts/ILSP8IdentifiableDigitalAsset.sol +2 -8
  21. package/contracts/LSP8Constants.sol +4 -0
  22. package/contracts/LSP8IdentifiableDigitalAsset.sol +796 -36
  23. package/contracts/LSP8IdentifiableDigitalAssetInitAbstract.sol +806 -36
  24. package/contracts/extensions/LSP8CappedSupply.sol +1 -1
  25. package/contracts/extensions/LSP8CappedSupplyInitAbstract.sol +1 -1
  26. package/contracts/extensions/LSP8Enumerable.sol +6 -5
  27. package/contracts/extensions/LSP8EnumerableInitAbstract.sol +5 -5
  28. package/contracts/extensions/LSP8Votes.sol +94 -0
  29. package/contracts/extensions/LSP8VotesConstants.sol +8 -0
  30. package/contracts/extensions/LSP8VotesInitAbstract.sol +116 -0
  31. package/dist/index.cjs +10 -1
  32. package/dist/index.d.cts +23 -17
  33. package/dist/index.d.mts +23 -17
  34. package/dist/index.d.ts +23 -17
  35. package/dist/index.mjs +10 -2
  36. package/package.json +7 -8
  37. package/types/index.ts +3958 -1854
  38. package/contracts/LSP8IdentifiableDigitalAssetCore.sol +0 -806
  39. package/types/common.ts +0 -131
  40. package/types/contracts/ILSP8IdentifiableDigitalAsset.ts +0 -706
  41. package/types/contracts/LSP8IdentifiableDigitalAsset.ts +0 -778
  42. package/types/contracts/LSP8IdentifiableDigitalAssetInitAbstract.ts +0 -813
  43. package/types/contracts/extensions/LSP8Burnable.ts +0 -797
  44. package/types/contracts/extensions/LSP8BurnableInitAbstract.ts +0 -829
  45. package/types/contracts/extensions/LSP8CappedSupply.ts +0 -792
  46. package/types/contracts/extensions/LSP8CappedSupplyInitAbstract.ts +0 -824
  47. package/types/contracts/extensions/LSP8Enumerable.ts +0 -790
  48. package/types/contracts/extensions/LSP8EnumerableInitAbstract.ts +0 -821
  49. package/types/contracts/presets/LSP8Mintable.ts +0 -797
  50. package/types/contracts/presets/LSP8MintableInit.ts +0 -860
@@ -1,706 +0,0 @@
1
- /* Autogenerated file. Do not edit manually. */
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- import type {
5
- BaseContract,
6
- BytesLike,
7
- FunctionFragment,
8
- Result,
9
- Interface,
10
- EventFragment,
11
- AddressLike,
12
- ContractRunner,
13
- ContractMethod,
14
- Listener,
15
- } from "ethers";
16
- import type {
17
- TypedContractEvent,
18
- TypedDeferredTopicFilter,
19
- TypedEventLog,
20
- TypedLogDescription,
21
- TypedListener,
22
- TypedContractMethod,
23
- } from "../common";
24
-
25
- export interface ILSP8IdentifiableDigitalAssetInterface extends Interface {
26
- getFunction(
27
- nameOrSignature:
28
- | "authorizeOperator"
29
- | "balanceOf"
30
- | "batchCalls"
31
- | "getData"
32
- | "getDataBatch"
33
- | "getDataBatchForTokenIds"
34
- | "getDataForTokenId"
35
- | "getOperatorsOf"
36
- | "isOperatorFor"
37
- | "revokeOperator"
38
- | "setData"
39
- | "setDataBatch"
40
- | "setDataBatchForTokenIds"
41
- | "setDataForTokenId"
42
- | "supportsInterface"
43
- | "tokenIdsOf"
44
- | "tokenOwnerOf"
45
- | "totalSupply"
46
- | "transfer"
47
- | "transferBatch"
48
- ): FunctionFragment;
49
-
50
- getEvent(
51
- nameOrSignatureOrTopic:
52
- | "DataChanged"
53
- | "OperatorAuthorizationChanged"
54
- | "OperatorRevoked"
55
- | "TokenIdDataChanged"
56
- | "Transfer"
57
- ): EventFragment;
58
-
59
- encodeFunctionData(
60
- functionFragment: "authorizeOperator",
61
- values: [AddressLike, BytesLike, BytesLike]
62
- ): string;
63
- encodeFunctionData(
64
- functionFragment: "balanceOf",
65
- values: [AddressLike]
66
- ): string;
67
- encodeFunctionData(
68
- functionFragment: "batchCalls",
69
- values: [BytesLike[]]
70
- ): string;
71
- encodeFunctionData(functionFragment: "getData", values: [BytesLike]): string;
72
- encodeFunctionData(
73
- functionFragment: "getDataBatch",
74
- values: [BytesLike[]]
75
- ): string;
76
- encodeFunctionData(
77
- functionFragment: "getDataBatchForTokenIds",
78
- values: [BytesLike[], BytesLike[]]
79
- ): string;
80
- encodeFunctionData(
81
- functionFragment: "getDataForTokenId",
82
- values: [BytesLike, BytesLike]
83
- ): string;
84
- encodeFunctionData(
85
- functionFragment: "getOperatorsOf",
86
- values: [BytesLike]
87
- ): string;
88
- encodeFunctionData(
89
- functionFragment: "isOperatorFor",
90
- values: [AddressLike, BytesLike]
91
- ): string;
92
- encodeFunctionData(
93
- functionFragment: "revokeOperator",
94
- values: [AddressLike, BytesLike, boolean, BytesLike]
95
- ): string;
96
- encodeFunctionData(
97
- functionFragment: "setData",
98
- values: [BytesLike, BytesLike]
99
- ): string;
100
- encodeFunctionData(
101
- functionFragment: "setDataBatch",
102
- values: [BytesLike[], BytesLike[]]
103
- ): string;
104
- encodeFunctionData(
105
- functionFragment: "setDataBatchForTokenIds",
106
- values: [BytesLike[], BytesLike[], BytesLike[]]
107
- ): string;
108
- encodeFunctionData(
109
- functionFragment: "setDataForTokenId",
110
- values: [BytesLike, BytesLike, BytesLike]
111
- ): string;
112
- encodeFunctionData(
113
- functionFragment: "supportsInterface",
114
- values: [BytesLike]
115
- ): string;
116
- encodeFunctionData(
117
- functionFragment: "tokenIdsOf",
118
- values: [AddressLike]
119
- ): string;
120
- encodeFunctionData(
121
- functionFragment: "tokenOwnerOf",
122
- values: [BytesLike]
123
- ): string;
124
- encodeFunctionData(
125
- functionFragment: "totalSupply",
126
- values?: undefined
127
- ): string;
128
- encodeFunctionData(
129
- functionFragment: "transfer",
130
- values: [AddressLike, AddressLike, BytesLike, boolean, BytesLike]
131
- ): string;
132
- encodeFunctionData(
133
- functionFragment: "transferBatch",
134
- values: [AddressLike[], AddressLike[], BytesLike[], boolean[], BytesLike[]]
135
- ): string;
136
-
137
- decodeFunctionResult(
138
- functionFragment: "authorizeOperator",
139
- data: BytesLike
140
- ): Result;
141
- decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
142
- decodeFunctionResult(functionFragment: "batchCalls", data: BytesLike): Result;
143
- decodeFunctionResult(functionFragment: "getData", data: BytesLike): Result;
144
- decodeFunctionResult(
145
- functionFragment: "getDataBatch",
146
- data: BytesLike
147
- ): Result;
148
- decodeFunctionResult(
149
- functionFragment: "getDataBatchForTokenIds",
150
- data: BytesLike
151
- ): Result;
152
- decodeFunctionResult(
153
- functionFragment: "getDataForTokenId",
154
- data: BytesLike
155
- ): Result;
156
- decodeFunctionResult(
157
- functionFragment: "getOperatorsOf",
158
- data: BytesLike
159
- ): Result;
160
- decodeFunctionResult(
161
- functionFragment: "isOperatorFor",
162
- data: BytesLike
163
- ): Result;
164
- decodeFunctionResult(
165
- functionFragment: "revokeOperator",
166
- data: BytesLike
167
- ): Result;
168
- decodeFunctionResult(functionFragment: "setData", data: BytesLike): Result;
169
- decodeFunctionResult(
170
- functionFragment: "setDataBatch",
171
- data: BytesLike
172
- ): Result;
173
- decodeFunctionResult(
174
- functionFragment: "setDataBatchForTokenIds",
175
- data: BytesLike
176
- ): Result;
177
- decodeFunctionResult(
178
- functionFragment: "setDataForTokenId",
179
- data: BytesLike
180
- ): Result;
181
- decodeFunctionResult(
182
- functionFragment: "supportsInterface",
183
- data: BytesLike
184
- ): Result;
185
- decodeFunctionResult(functionFragment: "tokenIdsOf", data: BytesLike): Result;
186
- decodeFunctionResult(
187
- functionFragment: "tokenOwnerOf",
188
- data: BytesLike
189
- ): Result;
190
- decodeFunctionResult(
191
- functionFragment: "totalSupply",
192
- data: BytesLike
193
- ): Result;
194
- decodeFunctionResult(functionFragment: "transfer", data: BytesLike): Result;
195
- decodeFunctionResult(
196
- functionFragment: "transferBatch",
197
- data: BytesLike
198
- ): Result;
199
- }
200
-
201
- export namespace DataChangedEvent {
202
- export type InputTuple = [dataKey: BytesLike, dataValue: BytesLike];
203
- export type OutputTuple = [dataKey: string, dataValue: string];
204
- export interface OutputObject {
205
- dataKey: string;
206
- dataValue: string;
207
- }
208
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
209
- export type Filter = TypedDeferredTopicFilter<Event>;
210
- export type Log = TypedEventLog<Event>;
211
- export type LogDescription = TypedLogDescription<Event>;
212
- }
213
-
214
- export namespace OperatorAuthorizationChangedEvent {
215
- export type InputTuple = [
216
- operator: AddressLike,
217
- tokenOwner: AddressLike,
218
- tokenId: BytesLike,
219
- operatorNotificationData: BytesLike
220
- ];
221
- export type OutputTuple = [
222
- operator: string,
223
- tokenOwner: string,
224
- tokenId: string,
225
- operatorNotificationData: string
226
- ];
227
- export interface OutputObject {
228
- operator: string;
229
- tokenOwner: string;
230
- tokenId: string;
231
- operatorNotificationData: string;
232
- }
233
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
234
- export type Filter = TypedDeferredTopicFilter<Event>;
235
- export type Log = TypedEventLog<Event>;
236
- export type LogDescription = TypedLogDescription<Event>;
237
- }
238
-
239
- export namespace OperatorRevokedEvent {
240
- export type InputTuple = [
241
- operator: AddressLike,
242
- tokenOwner: AddressLike,
243
- tokenId: BytesLike,
244
- notified: boolean,
245
- operatorNotificationData: BytesLike
246
- ];
247
- export type OutputTuple = [
248
- operator: string,
249
- tokenOwner: string,
250
- tokenId: string,
251
- notified: boolean,
252
- operatorNotificationData: string
253
- ];
254
- export interface OutputObject {
255
- operator: string;
256
- tokenOwner: string;
257
- tokenId: string;
258
- notified: boolean;
259
- operatorNotificationData: string;
260
- }
261
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
262
- export type Filter = TypedDeferredTopicFilter<Event>;
263
- export type Log = TypedEventLog<Event>;
264
- export type LogDescription = TypedLogDescription<Event>;
265
- }
266
-
267
- export namespace TokenIdDataChangedEvent {
268
- export type InputTuple = [
269
- tokenId: BytesLike,
270
- dataKey: BytesLike,
271
- dataValue: BytesLike
272
- ];
273
- export type OutputTuple = [
274
- tokenId: string,
275
- dataKey: string,
276
- dataValue: string
277
- ];
278
- export interface OutputObject {
279
- tokenId: string;
280
- dataKey: string;
281
- dataValue: string;
282
- }
283
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
284
- export type Filter = TypedDeferredTopicFilter<Event>;
285
- export type Log = TypedEventLog<Event>;
286
- export type LogDescription = TypedLogDescription<Event>;
287
- }
288
-
289
- export namespace TransferEvent {
290
- export type InputTuple = [
291
- operator: AddressLike,
292
- from: AddressLike,
293
- to: AddressLike,
294
- tokenId: BytesLike,
295
- force: boolean,
296
- data: BytesLike
297
- ];
298
- export type OutputTuple = [
299
- operator: string,
300
- from: string,
301
- to: string,
302
- tokenId: string,
303
- force: boolean,
304
- data: string
305
- ];
306
- export interface OutputObject {
307
- operator: string;
308
- from: string;
309
- to: string;
310
- tokenId: string;
311
- force: boolean;
312
- data: string;
313
- }
314
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
315
- export type Filter = TypedDeferredTopicFilter<Event>;
316
- export type Log = TypedEventLog<Event>;
317
- export type LogDescription = TypedLogDescription<Event>;
318
- }
319
-
320
- export interface ILSP8IdentifiableDigitalAsset extends BaseContract {
321
- connect(runner?: ContractRunner | null): ILSP8IdentifiableDigitalAsset;
322
- waitForDeployment(): Promise<this>;
323
-
324
- interface: ILSP8IdentifiableDigitalAssetInterface;
325
-
326
- queryFilter<TCEvent extends TypedContractEvent>(
327
- event: TCEvent,
328
- fromBlockOrBlockhash?: string | number | undefined,
329
- toBlock?: string | number | undefined
330
- ): Promise<Array<TypedEventLog<TCEvent>>>;
331
- queryFilter<TCEvent extends TypedContractEvent>(
332
- filter: TypedDeferredTopicFilter<TCEvent>,
333
- fromBlockOrBlockhash?: string | number | undefined,
334
- toBlock?: string | number | undefined
335
- ): Promise<Array<TypedEventLog<TCEvent>>>;
336
-
337
- on<TCEvent extends TypedContractEvent>(
338
- event: TCEvent,
339
- listener: TypedListener<TCEvent>
340
- ): Promise<this>;
341
- on<TCEvent extends TypedContractEvent>(
342
- filter: TypedDeferredTopicFilter<TCEvent>,
343
- listener: TypedListener<TCEvent>
344
- ): Promise<this>;
345
-
346
- once<TCEvent extends TypedContractEvent>(
347
- event: TCEvent,
348
- listener: TypedListener<TCEvent>
349
- ): Promise<this>;
350
- once<TCEvent extends TypedContractEvent>(
351
- filter: TypedDeferredTopicFilter<TCEvent>,
352
- listener: TypedListener<TCEvent>
353
- ): Promise<this>;
354
-
355
- listeners<TCEvent extends TypedContractEvent>(
356
- event: TCEvent
357
- ): Promise<Array<TypedListener<TCEvent>>>;
358
- listeners(eventName?: string): Promise<Array<Listener>>;
359
- removeAllListeners<TCEvent extends TypedContractEvent>(
360
- event?: TCEvent
361
- ): Promise<this>;
362
-
363
- authorizeOperator: TypedContractMethod<
364
- [
365
- operator: AddressLike,
366
- tokenId: BytesLike,
367
- operatorNotificationData: BytesLike
368
- ],
369
- [void],
370
- "nonpayable"
371
- >;
372
-
373
- balanceOf: TypedContractMethod<[tokenOwner: AddressLike], [bigint], "view">;
374
-
375
- batchCalls: TypedContractMethod<
376
- [data: BytesLike[]],
377
- [string[]],
378
- "nonpayable"
379
- >;
380
-
381
- getData: TypedContractMethod<[dataKey: BytesLike], [string], "view">;
382
-
383
- getDataBatch: TypedContractMethod<
384
- [dataKeys: BytesLike[]],
385
- [string[]],
386
- "view"
387
- >;
388
-
389
- getDataBatchForTokenIds: TypedContractMethod<
390
- [tokenIds: BytesLike[], dataKeys: BytesLike[]],
391
- [string[]],
392
- "nonpayable"
393
- >;
394
-
395
- getDataForTokenId: TypedContractMethod<
396
- [tokenId: BytesLike, dataKey: BytesLike],
397
- [string],
398
- "nonpayable"
399
- >;
400
-
401
- getOperatorsOf: TypedContractMethod<[tokenId: BytesLike], [string[]], "view">;
402
-
403
- isOperatorFor: TypedContractMethod<
404
- [operator: AddressLike, tokenId: BytesLike],
405
- [boolean],
406
- "view"
407
- >;
408
-
409
- revokeOperator: TypedContractMethod<
410
- [
411
- operator: AddressLike,
412
- tokenId: BytesLike,
413
- notify: boolean,
414
- operatorNotificationData: BytesLike
415
- ],
416
- [void],
417
- "nonpayable"
418
- >;
419
-
420
- setData: TypedContractMethod<
421
- [dataKey: BytesLike, dataValue: BytesLike],
422
- [void],
423
- "payable"
424
- >;
425
-
426
- setDataBatch: TypedContractMethod<
427
- [dataKeys: BytesLike[], dataValues: BytesLike[]],
428
- [void],
429
- "payable"
430
- >;
431
-
432
- setDataBatchForTokenIds: TypedContractMethod<
433
- [tokenIds: BytesLike[], dataKeys: BytesLike[], dataValues: BytesLike[]],
434
- [void],
435
- "nonpayable"
436
- >;
437
-
438
- setDataForTokenId: TypedContractMethod<
439
- [tokenId: BytesLike, dataKey: BytesLike, dataValue: BytesLike],
440
- [void],
441
- "nonpayable"
442
- >;
443
-
444
- supportsInterface: TypedContractMethod<
445
- [interfaceId: BytesLike],
446
- [boolean],
447
- "view"
448
- >;
449
-
450
- tokenIdsOf: TypedContractMethod<
451
- [tokenOwner: AddressLike],
452
- [string[]],
453
- "view"
454
- >;
455
-
456
- tokenOwnerOf: TypedContractMethod<[tokenId: BytesLike], [string], "view">;
457
-
458
- totalSupply: TypedContractMethod<[], [bigint], "view">;
459
-
460
- transfer: TypedContractMethod<
461
- [
462
- from: AddressLike,
463
- to: AddressLike,
464
- tokenId: BytesLike,
465
- force: boolean,
466
- data: BytesLike
467
- ],
468
- [void],
469
- "nonpayable"
470
- >;
471
-
472
- transferBatch: TypedContractMethod<
473
- [
474
- from: AddressLike[],
475
- to: AddressLike[],
476
- tokenId: BytesLike[],
477
- force: boolean[],
478
- data: BytesLike[]
479
- ],
480
- [void],
481
- "nonpayable"
482
- >;
483
-
484
- getFunction<T extends ContractMethod = ContractMethod>(
485
- key: string | FunctionFragment
486
- ): T;
487
-
488
- getFunction(
489
- nameOrSignature: "authorizeOperator"
490
- ): TypedContractMethod<
491
- [
492
- operator: AddressLike,
493
- tokenId: BytesLike,
494
- operatorNotificationData: BytesLike
495
- ],
496
- [void],
497
- "nonpayable"
498
- >;
499
- getFunction(
500
- nameOrSignature: "balanceOf"
501
- ): TypedContractMethod<[tokenOwner: AddressLike], [bigint], "view">;
502
- getFunction(
503
- nameOrSignature: "batchCalls"
504
- ): TypedContractMethod<[data: BytesLike[]], [string[]], "nonpayable">;
505
- getFunction(
506
- nameOrSignature: "getData"
507
- ): TypedContractMethod<[dataKey: BytesLike], [string], "view">;
508
- getFunction(
509
- nameOrSignature: "getDataBatch"
510
- ): TypedContractMethod<[dataKeys: BytesLike[]], [string[]], "view">;
511
- getFunction(
512
- nameOrSignature: "getDataBatchForTokenIds"
513
- ): TypedContractMethod<
514
- [tokenIds: BytesLike[], dataKeys: BytesLike[]],
515
- [string[]],
516
- "nonpayable"
517
- >;
518
- getFunction(
519
- nameOrSignature: "getDataForTokenId"
520
- ): TypedContractMethod<
521
- [tokenId: BytesLike, dataKey: BytesLike],
522
- [string],
523
- "nonpayable"
524
- >;
525
- getFunction(
526
- nameOrSignature: "getOperatorsOf"
527
- ): TypedContractMethod<[tokenId: BytesLike], [string[]], "view">;
528
- getFunction(
529
- nameOrSignature: "isOperatorFor"
530
- ): TypedContractMethod<
531
- [operator: AddressLike, tokenId: BytesLike],
532
- [boolean],
533
- "view"
534
- >;
535
- getFunction(
536
- nameOrSignature: "revokeOperator"
537
- ): TypedContractMethod<
538
- [
539
- operator: AddressLike,
540
- tokenId: BytesLike,
541
- notify: boolean,
542
- operatorNotificationData: BytesLike
543
- ],
544
- [void],
545
- "nonpayable"
546
- >;
547
- getFunction(
548
- nameOrSignature: "setData"
549
- ): TypedContractMethod<
550
- [dataKey: BytesLike, dataValue: BytesLike],
551
- [void],
552
- "payable"
553
- >;
554
- getFunction(
555
- nameOrSignature: "setDataBatch"
556
- ): TypedContractMethod<
557
- [dataKeys: BytesLike[], dataValues: BytesLike[]],
558
- [void],
559
- "payable"
560
- >;
561
- getFunction(
562
- nameOrSignature: "setDataBatchForTokenIds"
563
- ): TypedContractMethod<
564
- [tokenIds: BytesLike[], dataKeys: BytesLike[], dataValues: BytesLike[]],
565
- [void],
566
- "nonpayable"
567
- >;
568
- getFunction(
569
- nameOrSignature: "setDataForTokenId"
570
- ): TypedContractMethod<
571
- [tokenId: BytesLike, dataKey: BytesLike, dataValue: BytesLike],
572
- [void],
573
- "nonpayable"
574
- >;
575
- getFunction(
576
- nameOrSignature: "supportsInterface"
577
- ): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
578
- getFunction(
579
- nameOrSignature: "tokenIdsOf"
580
- ): TypedContractMethod<[tokenOwner: AddressLike], [string[]], "view">;
581
- getFunction(
582
- nameOrSignature: "tokenOwnerOf"
583
- ): TypedContractMethod<[tokenId: BytesLike], [string], "view">;
584
- getFunction(
585
- nameOrSignature: "totalSupply"
586
- ): TypedContractMethod<[], [bigint], "view">;
587
- getFunction(
588
- nameOrSignature: "transfer"
589
- ): TypedContractMethod<
590
- [
591
- from: AddressLike,
592
- to: AddressLike,
593
- tokenId: BytesLike,
594
- force: boolean,
595
- data: BytesLike
596
- ],
597
- [void],
598
- "nonpayable"
599
- >;
600
- getFunction(
601
- nameOrSignature: "transferBatch"
602
- ): TypedContractMethod<
603
- [
604
- from: AddressLike[],
605
- to: AddressLike[],
606
- tokenId: BytesLike[],
607
- force: boolean[],
608
- data: BytesLike[]
609
- ],
610
- [void],
611
- "nonpayable"
612
- >;
613
-
614
- getEvent(
615
- key: "DataChanged"
616
- ): TypedContractEvent<
617
- DataChangedEvent.InputTuple,
618
- DataChangedEvent.OutputTuple,
619
- DataChangedEvent.OutputObject
620
- >;
621
- getEvent(
622
- key: "OperatorAuthorizationChanged"
623
- ): TypedContractEvent<
624
- OperatorAuthorizationChangedEvent.InputTuple,
625
- OperatorAuthorizationChangedEvent.OutputTuple,
626
- OperatorAuthorizationChangedEvent.OutputObject
627
- >;
628
- getEvent(
629
- key: "OperatorRevoked"
630
- ): TypedContractEvent<
631
- OperatorRevokedEvent.InputTuple,
632
- OperatorRevokedEvent.OutputTuple,
633
- OperatorRevokedEvent.OutputObject
634
- >;
635
- getEvent(
636
- key: "TokenIdDataChanged"
637
- ): TypedContractEvent<
638
- TokenIdDataChangedEvent.InputTuple,
639
- TokenIdDataChangedEvent.OutputTuple,
640
- TokenIdDataChangedEvent.OutputObject
641
- >;
642
- getEvent(
643
- key: "Transfer"
644
- ): TypedContractEvent<
645
- TransferEvent.InputTuple,
646
- TransferEvent.OutputTuple,
647
- TransferEvent.OutputObject
648
- >;
649
-
650
- filters: {
651
- "DataChanged(bytes32,bytes)": TypedContractEvent<
652
- DataChangedEvent.InputTuple,
653
- DataChangedEvent.OutputTuple,
654
- DataChangedEvent.OutputObject
655
- >;
656
- DataChanged: TypedContractEvent<
657
- DataChangedEvent.InputTuple,
658
- DataChangedEvent.OutputTuple,
659
- DataChangedEvent.OutputObject
660
- >;
661
-
662
- "OperatorAuthorizationChanged(address,address,bytes32,bytes)": TypedContractEvent<
663
- OperatorAuthorizationChangedEvent.InputTuple,
664
- OperatorAuthorizationChangedEvent.OutputTuple,
665
- OperatorAuthorizationChangedEvent.OutputObject
666
- >;
667
- OperatorAuthorizationChanged: TypedContractEvent<
668
- OperatorAuthorizationChangedEvent.InputTuple,
669
- OperatorAuthorizationChangedEvent.OutputTuple,
670
- OperatorAuthorizationChangedEvent.OutputObject
671
- >;
672
-
673
- "OperatorRevoked(address,address,bytes32,bool,bytes)": TypedContractEvent<
674
- OperatorRevokedEvent.InputTuple,
675
- OperatorRevokedEvent.OutputTuple,
676
- OperatorRevokedEvent.OutputObject
677
- >;
678
- OperatorRevoked: TypedContractEvent<
679
- OperatorRevokedEvent.InputTuple,
680
- OperatorRevokedEvent.OutputTuple,
681
- OperatorRevokedEvent.OutputObject
682
- >;
683
-
684
- "TokenIdDataChanged(bytes32,bytes32,bytes)": TypedContractEvent<
685
- TokenIdDataChangedEvent.InputTuple,
686
- TokenIdDataChangedEvent.OutputTuple,
687
- TokenIdDataChangedEvent.OutputObject
688
- >;
689
- TokenIdDataChanged: TypedContractEvent<
690
- TokenIdDataChangedEvent.InputTuple,
691
- TokenIdDataChangedEvent.OutputTuple,
692
- TokenIdDataChangedEvent.OutputObject
693
- >;
694
-
695
- "Transfer(address,address,address,bytes32,bool,bytes)": TypedContractEvent<
696
- TransferEvent.InputTuple,
697
- TransferEvent.OutputTuple,
698
- TransferEvent.OutputObject
699
- >;
700
- Transfer: TypedContractEvent<
701
- TransferEvent.InputTuple,
702
- TransferEvent.OutputTuple,
703
- TransferEvent.OutputObject
704
- >;
705
- };
706
- }