@gitmyabi/cc 1.0.1 → 1.0.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.
@@ -1,13 +1,82 @@
1
1
  import type { Address, PublicClient, WalletClient } from 'viem';
2
2
  /**
3
- * UltimateTokenOwnable_json ABI
3
+ * IERC721AUpgradeable.TokenOwnership struct type
4
+ */
5
+ export type IERC721AUpgradeable_TokenOwnership = {
6
+ addr: `0x${string}`;
7
+ startTimestamp: bigint;
8
+ burned: boolean;
9
+ extraData: bigint;
10
+ };
11
+ /**
12
+ * EmblemVault721AUpgradeable_json ABI
4
13
  *
5
14
  * This ABI is typed using viem's type system for full type safety.
6
15
  */
7
- export declare const UltimateTokenOwnable_jsonAbi: readonly [{
16
+ export declare const EmblemVault721AUpgradeable_jsonAbi: readonly [{
8
17
  readonly inputs: readonly [];
9
- readonly stateMutability: "nonpayable";
10
- readonly type: "constructor";
18
+ readonly name: "ApprovalCallerNotOwnerNorApproved";
19
+ readonly type: "error";
20
+ }, {
21
+ readonly inputs: readonly [];
22
+ readonly name: "ApprovalQueryForNonexistentToken";
23
+ readonly type: "error";
24
+ }, {
25
+ readonly inputs: readonly [];
26
+ readonly name: "BalanceQueryForZeroAddress";
27
+ readonly type: "error";
28
+ }, {
29
+ readonly inputs: readonly [];
30
+ readonly name: "InvalidQueryRange";
31
+ readonly type: "error";
32
+ }, {
33
+ readonly inputs: readonly [];
34
+ readonly name: "MintERC2309QuantityExceedsLimit";
35
+ readonly type: "error";
36
+ }, {
37
+ readonly inputs: readonly [];
38
+ readonly name: "MintToZeroAddress";
39
+ readonly type: "error";
40
+ }, {
41
+ readonly inputs: readonly [];
42
+ readonly name: "MintZeroQuantity";
43
+ readonly type: "error";
44
+ }, {
45
+ readonly inputs: readonly [{
46
+ readonly internalType: "address";
47
+ readonly name: "operator";
48
+ readonly type: "address";
49
+ }];
50
+ readonly name: "OperatorNotAllowed";
51
+ readonly type: "error";
52
+ }, {
53
+ readonly inputs: readonly [];
54
+ readonly name: "OwnerQueryForNonexistentToken";
55
+ readonly type: "error";
56
+ }, {
57
+ readonly inputs: readonly [];
58
+ readonly name: "OwnershipNotInitializedForExtraData";
59
+ readonly type: "error";
60
+ }, {
61
+ readonly inputs: readonly [];
62
+ readonly name: "TransferCallerNotOwnerNorApproved";
63
+ readonly type: "error";
64
+ }, {
65
+ readonly inputs: readonly [];
66
+ readonly name: "TransferFromIncorrectOwner";
67
+ readonly type: "error";
68
+ }, {
69
+ readonly inputs: readonly [];
70
+ readonly name: "TransferToNonERC721ReceiverImplementer";
71
+ readonly type: "error";
72
+ }, {
73
+ readonly inputs: readonly [];
74
+ readonly name: "TransferToZeroAddress";
75
+ readonly type: "error";
76
+ }, {
77
+ readonly inputs: readonly [];
78
+ readonly name: "URIQueryForNonexistentToken";
79
+ readonly type: "error";
11
80
  }, {
12
81
  readonly anonymous: false;
13
82
  readonly inputs: readonly [{
@@ -18,12 +87,12 @@ export declare const UltimateTokenOwnable_jsonAbi: readonly [{
18
87
  }, {
19
88
  readonly indexed: true;
20
89
  readonly internalType: "address";
21
- readonly name: "spender";
90
+ readonly name: "approved";
22
91
  readonly type: "address";
23
92
  }, {
24
- readonly indexed: false;
93
+ readonly indexed: true;
25
94
  readonly internalType: "uint256";
26
- readonly name: "value";
95
+ readonly name: "tokenId";
27
96
  readonly type: "uint256";
28
97
  }];
29
98
  readonly name: "Approval";
@@ -31,37 +100,72 @@ export declare const UltimateTokenOwnable_jsonAbi: readonly [{
31
100
  }, {
32
101
  readonly anonymous: false;
33
102
  readonly inputs: readonly [{
103
+ readonly indexed: true;
104
+ readonly internalType: "address";
105
+ readonly name: "owner";
106
+ readonly type: "address";
107
+ }, {
108
+ readonly indexed: true;
109
+ readonly internalType: "address";
110
+ readonly name: "operator";
111
+ readonly type: "address";
112
+ }, {
34
113
  readonly indexed: false;
35
- readonly internalType: "uint8";
36
- readonly name: "version";
37
- readonly type: "uint8";
114
+ readonly internalType: "bool";
115
+ readonly name: "approved";
116
+ readonly type: "bool";
38
117
  }];
39
- readonly name: "Initialized";
118
+ readonly name: "ApprovalForAll";
40
119
  readonly type: "event";
41
120
  }, {
42
121
  readonly anonymous: false;
43
122
  readonly inputs: readonly [{
123
+ readonly indexed: true;
124
+ readonly internalType: "uint256";
125
+ readonly name: "fromTokenId";
126
+ readonly type: "uint256";
127
+ }, {
128
+ readonly indexed: false;
129
+ readonly internalType: "uint256";
130
+ readonly name: "toTokenId";
131
+ readonly type: "uint256";
132
+ }, {
44
133
  readonly indexed: true;
45
134
  readonly internalType: "address";
46
- readonly name: "previousOwner";
135
+ readonly name: "from";
47
136
  readonly type: "address";
48
137
  }, {
49
138
  readonly indexed: true;
50
139
  readonly internalType: "address";
51
- readonly name: "newOwner";
140
+ readonly name: "to";
52
141
  readonly type: "address";
53
142
  }];
54
- readonly name: "OwnershipTransferred";
143
+ readonly name: "ConsecutiveTransfer";
55
144
  readonly type: "event";
56
145
  }, {
57
146
  readonly anonymous: false;
58
147
  readonly inputs: readonly [{
59
148
  readonly indexed: false;
149
+ readonly internalType: "uint8";
150
+ readonly name: "version";
151
+ readonly type: "uint8";
152
+ }];
153
+ readonly name: "Initialized";
154
+ readonly type: "event";
155
+ }, {
156
+ readonly anonymous: false;
157
+ readonly inputs: readonly [{
158
+ readonly indexed: true;
159
+ readonly internalType: "address";
160
+ readonly name: "previousOwner";
161
+ readonly type: "address";
162
+ }, {
163
+ readonly indexed: true;
60
164
  readonly internalType: "address";
61
- readonly name: "account";
165
+ readonly name: "newOwner";
62
166
  readonly type: "address";
63
167
  }];
64
- readonly name: "Paused";
168
+ readonly name: "OwnershipTransferred";
65
169
  readonly type: "event";
66
170
  }, {
67
171
  readonly anonymous: false;
@@ -76,34 +180,52 @@ export declare const UltimateTokenOwnable_jsonAbi: readonly [{
76
180
  readonly name: "to";
77
181
  readonly type: "address";
78
182
  }, {
79
- readonly indexed: false;
183
+ readonly indexed: true;
80
184
  readonly internalType: "uint256";
81
- readonly name: "value";
185
+ readonly name: "tokenId";
82
186
  readonly type: "uint256";
83
187
  }];
84
188
  readonly name: "Transfer";
85
189
  readonly type: "event";
86
190
  }, {
87
- readonly anonymous: false;
88
191
  readonly inputs: readonly [{
89
- readonly indexed: false;
90
192
  readonly internalType: "address";
91
- readonly name: "account";
193
+ readonly name: "who";
92
194
  readonly type: "address";
195
+ }, {
196
+ readonly internalType: "bytes4";
197
+ readonly name: "functionSig";
198
+ readonly type: "bytes4";
199
+ }, {
200
+ readonly internalType: "uint256";
201
+ readonly name: "id";
202
+ readonly type: "uint256";
93
203
  }];
94
- readonly name: "Unpaused";
95
- readonly type: "event";
204
+ readonly name: "addBypassRule";
205
+ readonly outputs: readonly [];
206
+ readonly stateMutability: "nonpayable";
207
+ readonly type: "function";
96
208
  }, {
97
209
  readonly inputs: readonly [{
98
210
  readonly internalType: "address";
99
- readonly name: "owner";
211
+ readonly name: "operator";
100
212
  readonly type: "address";
101
213
  }, {
214
+ readonly internalType: "uint256";
215
+ readonly name: "tokenId";
216
+ readonly type: "uint256";
217
+ }];
218
+ readonly name: "approve";
219
+ readonly outputs: readonly [];
220
+ readonly stateMutability: "payable";
221
+ readonly type: "function";
222
+ }, {
223
+ readonly inputs: readonly [{
102
224
  readonly internalType: "address";
103
- readonly name: "spender";
225
+ readonly name: "owner";
104
226
  readonly type: "address";
105
227
  }];
106
- readonly name: "allowance";
228
+ readonly name: "balanceOf";
107
229
  readonly outputs: readonly [{
108
230
  readonly internalType: "uint256";
109
231
  readonly name: "";
@@ -113,143 +235,299 @@ export declare const UltimateTokenOwnable_jsonAbi: readonly [{
113
235
  readonly type: "function";
114
236
  }, {
115
237
  readonly inputs: readonly [{
116
- readonly internalType: "address";
117
- readonly name: "spender";
118
- readonly type: "address";
119
- }, {
120
238
  readonly internalType: "uint256";
121
- readonly name: "amount";
239
+ readonly name: "tokenId";
122
240
  readonly type: "uint256";
123
241
  }];
124
- readonly name: "approve";
242
+ readonly name: "burn";
243
+ readonly outputs: readonly [];
244
+ readonly stateMutability: "nonpayable";
245
+ readonly type: "function";
246
+ }, {
247
+ readonly inputs: readonly [];
248
+ readonly name: "byPassable";
125
249
  readonly outputs: readonly [{
126
250
  readonly internalType: "bool";
127
251
  readonly name: "";
128
252
  readonly type: "bool";
129
253
  }];
130
- readonly stateMutability: "nonpayable";
254
+ readonly stateMutability: "view";
131
255
  readonly type: "function";
132
256
  }, {
133
257
  readonly inputs: readonly [{
134
258
  readonly internalType: "address";
135
- readonly name: "account";
259
+ readonly name: "";
136
260
  readonly type: "address";
261
+ }, {
262
+ readonly internalType: "bytes4";
263
+ readonly name: "";
264
+ readonly type: "bytes4";
137
265
  }];
138
- readonly name: "balanceOf";
266
+ readonly name: "byPassableFunction";
139
267
  readonly outputs: readonly [{
140
- readonly internalType: "uint256";
268
+ readonly internalType: "bool";
141
269
  readonly name: "";
270
+ readonly type: "bool";
271
+ }];
272
+ readonly stateMutability: "view";
273
+ readonly type: "function";
274
+ }, {
275
+ readonly inputs: readonly [{
276
+ readonly internalType: "uint256";
277
+ readonly name: "tokenId";
142
278
  readonly type: "uint256";
143
279
  }];
280
+ readonly name: "explicitOwnershipOf";
281
+ readonly outputs: readonly [{
282
+ readonly components: readonly [{
283
+ readonly internalType: "address";
284
+ readonly name: "addr";
285
+ readonly type: "address";
286
+ }, {
287
+ readonly internalType: "uint64";
288
+ readonly name: "startTimestamp";
289
+ readonly type: "uint64";
290
+ }, {
291
+ readonly internalType: "bool";
292
+ readonly name: "burned";
293
+ readonly type: "bool";
294
+ }, {
295
+ readonly internalType: "uint24";
296
+ readonly name: "extraData";
297
+ readonly type: "uint24";
298
+ }];
299
+ readonly internalType: "struct IERC721AUpgradeable.TokenOwnership";
300
+ readonly name: "ownership";
301
+ readonly type: "tuple";
302
+ }];
303
+ readonly stateMutability: "view";
304
+ readonly type: "function";
305
+ }, {
306
+ readonly inputs: readonly [{
307
+ readonly internalType: "uint256[]";
308
+ readonly name: "tokenIds";
309
+ readonly type: "uint256[]";
310
+ }];
311
+ readonly name: "explicitOwnershipsOf";
312
+ readonly outputs: readonly [{
313
+ readonly components: readonly [{
314
+ readonly internalType: "address";
315
+ readonly name: "addr";
316
+ readonly type: "address";
317
+ }, {
318
+ readonly internalType: "uint64";
319
+ readonly name: "startTimestamp";
320
+ readonly type: "uint64";
321
+ }, {
322
+ readonly internalType: "bool";
323
+ readonly name: "burned";
324
+ readonly type: "bool";
325
+ }, {
326
+ readonly internalType: "uint24";
327
+ readonly name: "extraData";
328
+ readonly type: "uint24";
329
+ }];
330
+ readonly internalType: "struct IERC721AUpgradeable.TokenOwnership[]";
331
+ readonly name: "";
332
+ readonly type: "tuple[]";
333
+ }];
144
334
  readonly stateMutability: "view";
145
335
  readonly type: "function";
146
336
  }, {
147
337
  readonly inputs: readonly [{
148
338
  readonly internalType: "uint256";
149
- readonly name: "amount";
339
+ readonly name: "_type";
150
340
  readonly type: "uint256";
151
341
  }];
152
- readonly name: "burn";
153
- readonly outputs: readonly [];
154
- readonly stateMutability: "nonpayable";
342
+ readonly name: "getAllRegisteredContractsOfType";
343
+ readonly outputs: readonly [{
344
+ readonly internalType: "address[]";
345
+ readonly name: "";
346
+ readonly type: "address[]";
347
+ }];
348
+ readonly stateMutability: "view";
155
349
  readonly type: "function";
156
350
  }, {
157
351
  readonly inputs: readonly [{
352
+ readonly internalType: "uint256";
353
+ readonly name: "tokenId";
354
+ readonly type: "uint256";
355
+ }];
356
+ readonly name: "getApproved";
357
+ readonly outputs: readonly [{
158
358
  readonly internalType: "address";
159
- readonly name: "account";
359
+ readonly name: "";
160
360
  readonly type: "address";
161
- }, {
361
+ }];
362
+ readonly stateMutability: "view";
363
+ readonly type: "function";
364
+ }, {
365
+ readonly inputs: readonly [{
162
366
  readonly internalType: "uint256";
163
- readonly name: "amount";
367
+ readonly name: "tokenId";
368
+ readonly type: "uint256";
369
+ }];
370
+ readonly name: "getInternalTokenId";
371
+ readonly outputs: readonly [{
372
+ readonly internalType: "uint256";
373
+ readonly name: "";
164
374
  readonly type: "uint256";
165
375
  }];
166
- readonly name: "burnFrom";
376
+ readonly stateMutability: "view";
377
+ readonly type: "function";
378
+ }, {
379
+ readonly inputs: readonly [{
380
+ readonly internalType: "string";
381
+ readonly name: "name_";
382
+ readonly type: "string";
383
+ }, {
384
+ readonly internalType: "string";
385
+ readonly name: "symbol_";
386
+ readonly type: "string";
387
+ }];
388
+ readonly name: "initialize";
167
389
  readonly outputs: readonly [];
168
390
  readonly stateMutability: "nonpayable";
169
391
  readonly type: "function";
170
392
  }, {
171
393
  readonly inputs: readonly [];
172
- readonly name: "decimals";
394
+ readonly name: "interfaceId";
173
395
  readonly outputs: readonly [{
174
- readonly internalType: "uint8";
396
+ readonly internalType: "bytes4";
175
397
  readonly name: "";
176
- readonly type: "uint8";
398
+ readonly type: "bytes4";
177
399
  }];
178
- readonly stateMutability: "view";
400
+ readonly stateMutability: "pure";
179
401
  readonly type: "function";
180
402
  }, {
181
403
  readonly inputs: readonly [{
182
404
  readonly internalType: "address";
183
- readonly name: "spender";
405
+ readonly name: "owner";
184
406
  readonly type: "address";
185
407
  }, {
186
- readonly internalType: "uint256";
187
- readonly name: "subtractedValue";
188
- readonly type: "uint256";
408
+ readonly internalType: "address";
409
+ readonly name: "operator";
410
+ readonly type: "address";
189
411
  }];
190
- readonly name: "decreaseAllowance";
412
+ readonly name: "isApprovedForAll";
191
413
  readonly outputs: readonly [{
192
414
  readonly internalType: "bool";
193
415
  readonly name: "";
194
416
  readonly type: "bool";
195
417
  }];
196
- readonly stateMutability: "nonpayable";
418
+ readonly stateMutability: "view";
419
+ readonly type: "function";
420
+ }, {
421
+ readonly inputs: readonly [];
422
+ readonly name: "isClaimable";
423
+ readonly outputs: readonly [{
424
+ readonly internalType: "bool";
425
+ readonly name: "";
426
+ readonly type: "bool";
427
+ }];
428
+ readonly stateMutability: "view";
197
429
  readonly type: "function";
198
430
  }, {
199
431
  readonly inputs: readonly [{
200
432
  readonly internalType: "address";
201
- readonly name: "spender";
433
+ readonly name: "_contract";
202
434
  readonly type: "address";
203
435
  }, {
204
436
  readonly internalType: "uint256";
205
- readonly name: "addedValue";
437
+ readonly name: "_type";
206
438
  readonly type: "uint256";
207
439
  }];
208
- readonly name: "increaseAllowance";
440
+ readonly name: "isRegistered";
209
441
  readonly outputs: readonly [{
210
442
  readonly internalType: "bool";
211
443
  readonly name: "";
212
444
  readonly type: "bool";
213
445
  }];
214
- readonly stateMutability: "nonpayable";
446
+ readonly stateMutability: "view";
215
447
  readonly type: "function";
216
448
  }, {
217
449
  readonly inputs: readonly [{
218
450
  readonly internalType: "address";
219
- readonly name: "_owner";
220
- readonly type: "address";
221
- }, {
222
- readonly internalType: "address";
223
- readonly name: "_mintTarget";
451
+ readonly name: "to";
224
452
  readonly type: "address";
225
453
  }, {
226
- readonly internalType: "string";
227
- readonly name: "_name";
228
- readonly type: "string";
454
+ readonly internalType: "uint256";
455
+ readonly name: "externalTokenId";
456
+ readonly type: "uint256";
457
+ }];
458
+ readonly name: "mint";
459
+ readonly outputs: readonly [];
460
+ readonly stateMutability: "nonpayable";
461
+ readonly type: "function";
462
+ }, {
463
+ readonly inputs: readonly [{
464
+ readonly internalType: "address[]";
465
+ readonly name: "to";
466
+ readonly type: "address[]";
229
467
  }, {
468
+ readonly internalType: "uint256[]";
469
+ readonly name: "externalTokenId";
470
+ readonly type: "uint256[]";
471
+ }];
472
+ readonly name: "mintMany";
473
+ readonly outputs: readonly [];
474
+ readonly stateMutability: "nonpayable";
475
+ readonly type: "function";
476
+ }, {
477
+ readonly inputs: readonly [];
478
+ readonly name: "name";
479
+ readonly outputs: readonly [{
230
480
  readonly internalType: "string";
231
- readonly name: "_symbol";
481
+ readonly name: "";
232
482
  readonly type: "string";
233
- }, {
234
- readonly internalType: "uint8";
235
- readonly name: "_decimals";
236
- readonly type: "uint8";
237
- }, {
483
+ }];
484
+ readonly stateMutability: "view";
485
+ readonly type: "function";
486
+ }, {
487
+ readonly inputs: readonly [];
488
+ readonly name: "owner";
489
+ readonly outputs: readonly [{
490
+ readonly internalType: "address";
491
+ readonly name: "";
492
+ readonly type: "address";
493
+ }];
494
+ readonly stateMutability: "view";
495
+ readonly type: "function";
496
+ }, {
497
+ readonly inputs: readonly [{
238
498
  readonly internalType: "uint256";
239
- readonly name: "_initialSupply";
499
+ readonly name: "tokenId";
240
500
  readonly type: "uint256";
501
+ }];
502
+ readonly name: "ownerOf";
503
+ readonly outputs: readonly [{
504
+ readonly internalType: "address";
505
+ readonly name: "";
506
+ readonly type: "address";
507
+ }];
508
+ readonly stateMutability: "view";
509
+ readonly type: "function";
510
+ }, {
511
+ readonly inputs: readonly [{
512
+ readonly internalType: "address";
513
+ readonly name: "_contract";
514
+ readonly type: "address";
241
515
  }, {
242
516
  readonly internalType: "uint256";
243
- readonly name: "_maxSupply";
517
+ readonly name: "_type";
244
518
  readonly type: "uint256";
245
519
  }];
246
- readonly name: "initialize";
520
+ readonly name: "registerContract";
247
521
  readonly outputs: readonly [];
248
522
  readonly stateMutability: "nonpayable";
249
523
  readonly type: "function";
250
524
  }, {
251
- readonly inputs: readonly [];
252
- readonly name: "maxSupply";
525
+ readonly inputs: readonly [{
526
+ readonly internalType: "address";
527
+ readonly name: "";
528
+ readonly type: "address";
529
+ }];
530
+ readonly name: "registeredContracts";
253
531
  readonly outputs: readonly [{
254
532
  readonly internalType: "uint256";
255
533
  readonly name: "";
@@ -260,46 +538,152 @@ export declare const UltimateTokenOwnable_jsonAbi: readonly [{
260
538
  }, {
261
539
  readonly inputs: readonly [{
262
540
  readonly internalType: "address";
263
- readonly name: "to";
541
+ readonly name: "who";
264
542
  readonly type: "address";
543
+ }, {
544
+ readonly internalType: "bytes4";
545
+ readonly name: "functionSig";
546
+ readonly type: "bytes4";
265
547
  }, {
266
548
  readonly internalType: "uint256";
267
- readonly name: "amount";
549
+ readonly name: "id";
268
550
  readonly type: "uint256";
269
551
  }];
270
- readonly name: "mint";
552
+ readonly name: "removeBypassRule";
271
553
  readonly outputs: readonly [];
272
554
  readonly stateMutability: "nonpayable";
273
555
  readonly type: "function";
274
556
  }, {
275
557
  readonly inputs: readonly [];
276
- readonly name: "name";
558
+ readonly name: "renounceOwnership";
559
+ readonly outputs: readonly [];
560
+ readonly stateMutability: "nonpayable";
561
+ readonly type: "function";
562
+ }, {
563
+ readonly inputs: readonly [{
564
+ readonly internalType: "uint256";
565
+ readonly name: "tokenId";
566
+ readonly type: "uint256";
567
+ }, {
568
+ readonly internalType: "uint256";
569
+ readonly name: "value";
570
+ readonly type: "uint256";
571
+ }];
572
+ readonly name: "royaltyInfo";
277
573
  readonly outputs: readonly [{
278
- readonly internalType: "string";
279
- readonly name: "";
280
- readonly type: "string";
574
+ readonly internalType: "address";
575
+ readonly name: "receiver";
576
+ readonly type: "address";
577
+ }, {
578
+ readonly internalType: "uint256";
579
+ readonly name: "royaltyAmount";
580
+ readonly type: "uint256";
281
581
  }];
282
582
  readonly stateMutability: "view";
283
583
  readonly type: "function";
284
584
  }, {
285
- readonly inputs: readonly [];
286
- readonly name: "owner";
287
- readonly outputs: readonly [{
585
+ readonly inputs: readonly [{
288
586
  readonly internalType: "address";
289
- readonly name: "";
587
+ readonly name: "from";
588
+ readonly type: "address";
589
+ }, {
590
+ readonly internalType: "address";
591
+ readonly name: "to";
290
592
  readonly type: "address";
593
+ }, {
594
+ readonly internalType: "uint256";
595
+ readonly name: "tokenId";
596
+ readonly type: "uint256";
291
597
  }];
292
- readonly stateMutability: "view";
598
+ readonly name: "safeTransferFrom";
599
+ readonly outputs: readonly [];
600
+ readonly stateMutability: "payable";
293
601
  readonly type: "function";
294
602
  }, {
295
- readonly inputs: readonly [];
296
- readonly name: "pause";
603
+ readonly inputs: readonly [{
604
+ readonly internalType: "address";
605
+ readonly name: "from";
606
+ readonly type: "address";
607
+ }, {
608
+ readonly internalType: "address";
609
+ readonly name: "to";
610
+ readonly type: "address";
611
+ }, {
612
+ readonly internalType: "uint256";
613
+ readonly name: "tokenId";
614
+ readonly type: "uint256";
615
+ }, {
616
+ readonly internalType: "bytes";
617
+ readonly name: "data";
618
+ readonly type: "bytes";
619
+ }];
620
+ readonly name: "safeTransferFrom";
621
+ readonly outputs: readonly [];
622
+ readonly stateMutability: "payable";
623
+ readonly type: "function";
624
+ }, {
625
+ readonly inputs: readonly [{
626
+ readonly internalType: "address";
627
+ readonly name: "operator";
628
+ readonly type: "address";
629
+ }, {
630
+ readonly internalType: "bool";
631
+ readonly name: "approved";
632
+ readonly type: "bool";
633
+ }];
634
+ readonly name: "setApprovalForAll";
297
635
  readonly outputs: readonly [];
298
636
  readonly stateMutability: "nonpayable";
299
637
  readonly type: "function";
300
638
  }, {
301
- readonly inputs: readonly [];
302
- readonly name: "paused";
639
+ readonly inputs: readonly [{
640
+ readonly internalType: "string";
641
+ readonly name: "baseURI";
642
+ readonly type: "string";
643
+ }];
644
+ readonly name: "setBaseURI";
645
+ readonly outputs: readonly [];
646
+ readonly stateMutability: "nonpayable";
647
+ readonly type: "function";
648
+ }, {
649
+ readonly inputs: readonly [{
650
+ readonly internalType: "string";
651
+ readonly name: "name_";
652
+ readonly type: "string";
653
+ }, {
654
+ readonly internalType: "string";
655
+ readonly name: "symbol_";
656
+ readonly type: "string";
657
+ }];
658
+ readonly name: "setDetails";
659
+ readonly outputs: readonly [];
660
+ readonly stateMutability: "nonpayable";
661
+ readonly type: "function";
662
+ }, {
663
+ readonly inputs: readonly [{
664
+ readonly internalType: "uint256";
665
+ readonly name: "tokenId";
666
+ readonly type: "uint256";
667
+ }, {
668
+ readonly internalType: "address";
669
+ readonly name: "recipient";
670
+ readonly type: "address";
671
+ }, {
672
+ readonly internalType: "uint256";
673
+ readonly name: "value";
674
+ readonly type: "uint256";
675
+ }];
676
+ readonly name: "setTokenRoyalty";
677
+ readonly outputs: readonly [];
678
+ readonly stateMutability: "nonpayable";
679
+ readonly type: "function";
680
+ }, {
681
+ readonly inputs: readonly [{
682
+ readonly internalType: "bytes4";
683
+ readonly name: "_interfaceId";
684
+ readonly type: "bytes4";
685
+ }];
686
+ readonly name: "supportsInterface";
303
687
  readonly outputs: readonly [{
304
688
  readonly internalType: "bool";
305
689
  readonly name: "";
@@ -309,13 +693,33 @@ export declare const UltimateTokenOwnable_jsonAbi: readonly [{
309
693
  readonly type: "function";
310
694
  }, {
311
695
  readonly inputs: readonly [];
312
- readonly name: "renounceOwnership";
696
+ readonly name: "symbol";
697
+ readonly outputs: readonly [{
698
+ readonly internalType: "string";
699
+ readonly name: "";
700
+ readonly type: "string";
701
+ }];
702
+ readonly stateMutability: "view";
703
+ readonly type: "function";
704
+ }, {
705
+ readonly inputs: readonly [];
706
+ readonly name: "toggleBypassability";
313
707
  readonly outputs: readonly [];
314
708
  readonly stateMutability: "nonpayable";
315
709
  readonly type: "function";
316
710
  }, {
317
711
  readonly inputs: readonly [];
318
- readonly name: "symbol";
712
+ readonly name: "toggleClaimable";
713
+ readonly outputs: readonly [];
714
+ readonly stateMutability: "nonpayable";
715
+ readonly type: "function";
716
+ }, {
717
+ readonly inputs: readonly [{
718
+ readonly internalType: "uint256";
719
+ readonly name: "tokenId";
720
+ readonly type: "uint256";
721
+ }];
722
+ readonly name: "tokenURI";
319
723
  readonly outputs: readonly [{
320
724
  readonly internalType: "string";
321
725
  readonly name: "";
@@ -324,32 +728,50 @@ export declare const UltimateTokenOwnable_jsonAbi: readonly [{
324
728
  readonly stateMutability: "view";
325
729
  readonly type: "function";
326
730
  }, {
327
- readonly inputs: readonly [];
328
- readonly name: "totalSupply";
731
+ readonly inputs: readonly [{
732
+ readonly internalType: "address";
733
+ readonly name: "owner";
734
+ readonly type: "address";
735
+ }];
736
+ readonly name: "tokensOfOwner";
329
737
  readonly outputs: readonly [{
330
- readonly internalType: "uint256";
738
+ readonly internalType: "uint256[]";
331
739
  readonly name: "";
332
- readonly type: "uint256";
740
+ readonly type: "uint256[]";
333
741
  }];
334
742
  readonly stateMutability: "view";
335
743
  readonly type: "function";
336
744
  }, {
337
745
  readonly inputs: readonly [{
338
746
  readonly internalType: "address";
339
- readonly name: "to";
747
+ readonly name: "owner";
340
748
  readonly type: "address";
341
749
  }, {
342
750
  readonly internalType: "uint256";
343
- readonly name: "amount";
751
+ readonly name: "start";
752
+ readonly type: "uint256";
753
+ }, {
754
+ readonly internalType: "uint256";
755
+ readonly name: "stop";
344
756
  readonly type: "uint256";
345
757
  }];
346
- readonly name: "transfer";
758
+ readonly name: "tokensOfOwnerIn";
347
759
  readonly outputs: readonly [{
348
- readonly internalType: "bool";
760
+ readonly internalType: "uint256[]";
349
761
  readonly name: "";
350
- readonly type: "bool";
762
+ readonly type: "uint256[]";
351
763
  }];
352
- readonly stateMutability: "nonpayable";
764
+ readonly stateMutability: "view";
765
+ readonly type: "function";
766
+ }, {
767
+ readonly inputs: readonly [];
768
+ readonly name: "totalSupply";
769
+ readonly outputs: readonly [{
770
+ readonly internalType: "uint256";
771
+ readonly name: "";
772
+ readonly type: "uint256";
773
+ }];
774
+ readonly stateMutability: "view";
353
775
  readonly type: "function";
354
776
  }, {
355
777
  readonly inputs: readonly [{
@@ -362,16 +784,12 @@ export declare const UltimateTokenOwnable_jsonAbi: readonly [{
362
784
  readonly type: "address";
363
785
  }, {
364
786
  readonly internalType: "uint256";
365
- readonly name: "amount";
787
+ readonly name: "tokenId";
366
788
  readonly type: "uint256";
367
789
  }];
368
790
  readonly name: "transferFrom";
369
- readonly outputs: readonly [{
370
- readonly internalType: "bool";
371
- readonly name: "";
372
- readonly type: "bool";
373
- }];
374
- readonly stateMutability: "nonpayable";
791
+ readonly outputs: readonly [];
792
+ readonly stateMutability: "payable";
375
793
  readonly type: "function";
376
794
  }, {
377
795
  readonly inputs: readonly [{
@@ -384,22 +802,40 @@ export declare const UltimateTokenOwnable_jsonAbi: readonly [{
384
802
  readonly stateMutability: "nonpayable";
385
803
  readonly type: "function";
386
804
  }, {
387
- readonly inputs: readonly [];
388
- readonly name: "unpause";
805
+ readonly inputs: readonly [{
806
+ readonly internalType: "address";
807
+ readonly name: "_contract";
808
+ readonly type: "address";
809
+ }, {
810
+ readonly internalType: "uint256";
811
+ readonly name: "index";
812
+ readonly type: "uint256";
813
+ }];
814
+ readonly name: "unregisterContract";
389
815
  readonly outputs: readonly [];
390
816
  readonly stateMutability: "nonpayable";
391
817
  readonly type: "function";
818
+ }, {
819
+ readonly inputs: readonly [];
820
+ readonly name: "version";
821
+ readonly outputs: readonly [{
822
+ readonly internalType: "string";
823
+ readonly name: "";
824
+ readonly type: "string";
825
+ }];
826
+ readonly stateMutability: "pure";
827
+ readonly type: "function";
392
828
  }];
393
829
  /**
394
- * Type-safe ABI for UltimateTokenOwnable_json
830
+ * Type-safe ABI for EmblemVault721AUpgradeable_json
395
831
  */
396
- export type UltimateTokenOwnable_jsonAbi = typeof UltimateTokenOwnable_jsonAbi;
832
+ export type EmblemVault721AUpgradeable_jsonAbi = typeof EmblemVault721AUpgradeable_jsonAbi;
397
833
  /**
398
- * Contract instance type for UltimateTokenOwnable_json
834
+ * Contract instance type for EmblemVault721AUpgradeable_json
399
835
  */
400
- export type UltimateTokenOwnable_jsonContract = any;
836
+ export type EmblemVault721AUpgradeable_jsonContract = any;
401
837
  /**
402
- * UltimateTokenOwnable_json Contract Class
838
+ * EmblemVault721AUpgradeable_json Contract Class
403
839
  *
404
840
  * Provides a class-based API similar to TypeChain for interacting with the contract.
405
841
  *
@@ -407,12 +843,12 @@ export type UltimateTokenOwnable_jsonContract = any;
407
843
  * ```typescript
408
844
  * import { createPublicClient, createWalletClient, http } from 'viem';
409
845
  * import { mainnet } from 'viem/chains';
410
- * import { UltimateTokenOwnable_json } from 'UltimateTokenOwnable_json';
846
+ * import { EmblemVault721AUpgradeable_json } from 'EmblemVault721AUpgradeable_json';
411
847
  *
412
848
  * const publicClient = createPublicClient({ chain: mainnet, transport: http() });
413
849
  * const walletClient = createWalletClient({ chain: mainnet, transport: http() });
414
850
  *
415
- * const contract = new UltimateTokenOwnable_json('0x...', { publicClient, walletClient });
851
+ * const contract = new EmblemVault721AUpgradeable_json('0x...', { publicClient, walletClient });
416
852
  *
417
853
  * // Read functions
418
854
  * const result = await contract.balanceOf('0x...');
@@ -430,7 +866,7 @@ export type UltimateTokenOwnable_jsonContract = any;
430
866
  * });
431
867
  * ```
432
868
  */
433
- export declare class UltimateTokenOwnable_json {
869
+ export declare class EmblemVault721AUpgradeable_json {
434
870
  private contract;
435
871
  private contractAddress;
436
872
  private publicClient;
@@ -443,29 +879,69 @@ export declare class UltimateTokenOwnable_json {
443
879
  */
444
880
  get address(): Address;
445
881
  /**
446
- * Get the underlying viem contract instance
882
+ * Get the underlying viem contract instance
883
+ */
884
+ getContract(): EmblemVault721AUpgradeable_jsonContract;
885
+ /**
886
+ * balanceOf
887
+ * view
888
+ */
889
+ balanceOf(owner: `0x${string}`): Promise<bigint>;
890
+ /**
891
+ * byPassable
892
+ * view
893
+ */
894
+ byPassable(): Promise<boolean>;
895
+ /**
896
+ * byPassableFunction
897
+ * view
898
+ */
899
+ byPassableFunction(arg0: `0x${string}`, arg1: `0x${string}`): Promise<boolean>;
900
+ /**
901
+ * explicitOwnershipOf
902
+ * view
903
+ */
904
+ explicitOwnershipOf(tokenId: bigint): Promise<IERC721AUpgradeable_TokenOwnership>;
905
+ /**
906
+ * explicitOwnershipsOf
907
+ * view
908
+ */
909
+ explicitOwnershipsOf(tokenIds: bigint[]): Promise<IERC721AUpgradeable_TokenOwnership[]>;
910
+ /**
911
+ * getAllRegisteredContractsOfType
912
+ * view
913
+ */
914
+ getAllRegisteredContractsOfType(_type: bigint): Promise<`0x${string}`[]>;
915
+ /**
916
+ * getApproved
917
+ * view
447
918
  */
448
- getContract(): UltimateTokenOwnable_jsonContract;
919
+ getApproved(tokenId: bigint): Promise<`0x${string}`>;
449
920
  /**
450
- * allowance
921
+ * getInternalTokenId
451
922
  * view
452
923
  */
453
- allowance(owner: `0x${string}`, spender: `0x${string}`): Promise<bigint>;
924
+ getInternalTokenId(tokenId: bigint): Promise<bigint>;
454
925
  /**
455
- * balanceOf
926
+ * interfaceId
927
+ * pure
928
+ */
929
+ interfaceId(): Promise<`0x${string}`>;
930
+ /**
931
+ * isApprovedForAll
456
932
  * view
457
933
  */
458
- balanceOf(account: `0x${string}`): Promise<bigint>;
934
+ isApprovedForAll(owner: `0x${string}`, operator: `0x${string}`): Promise<boolean>;
459
935
  /**
460
- * decimals
936
+ * isClaimable
461
937
  * view
462
938
  */
463
- decimals(): Promise<bigint>;
939
+ isClaimable(): Promise<boolean>;
464
940
  /**
465
- * maxSupply
941
+ * isRegistered
466
942
  * view
467
943
  */
468
- maxSupply(): Promise<bigint>;
944
+ isRegistered(_contract: `0x${string}`, _type: bigint): Promise<boolean>;
469
945
  /**
470
946
  * name
471
947
  * view
@@ -477,26 +953,61 @@ export declare class UltimateTokenOwnable_json {
477
953
  */
478
954
  owner(): Promise<`0x${string}`>;
479
955
  /**
480
- * paused
956
+ * ownerOf
957
+ * view
958
+ */
959
+ ownerOf(tokenId: bigint): Promise<`0x${string}`>;
960
+ /**
961
+ * registeredContracts
481
962
  * view
482
963
  */
483
- paused(): Promise<boolean>;
964
+ registeredContracts(arg0: `0x${string}`): Promise<bigint>;
965
+ /**
966
+ * royaltyInfo
967
+ * view
968
+ */
969
+ royaltyInfo(tokenId: bigint, value: bigint): Promise<[`0x${string}`, bigint]>;
970
+ /**
971
+ * supportsInterface
972
+ * view
973
+ */
974
+ supportsInterface(_interfaceId: `0x${string}`): Promise<boolean>;
484
975
  /**
485
976
  * symbol
486
977
  * view
487
978
  */
488
979
  symbol(): Promise<string>;
980
+ /**
981
+ * tokenURI
982
+ * view
983
+ */
984
+ tokenURI(tokenId: bigint): Promise<string>;
985
+ /**
986
+ * tokensOfOwner
987
+ * view
988
+ */
989
+ tokensOfOwner(owner: `0x${string}`): Promise<bigint[]>;
990
+ /**
991
+ * tokensOfOwnerIn
992
+ * view
993
+ */
994
+ tokensOfOwnerIn(owner: `0x${string}`, start: bigint, stop: bigint): Promise<bigint[]>;
489
995
  /**
490
996
  * totalSupply
491
997
  * view
492
998
  */
493
999
  totalSupply(): Promise<bigint>;
494
1000
  /**
495
- * approve
1001
+ * version
1002
+ * pure
1003
+ */
1004
+ version(): Promise<string>;
1005
+ /**
1006
+ * addBypassRule
496
1007
  * nonpayable
497
1008
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
498
1009
  */
499
- approve(spender: `0x${string}`, amount: bigint, options?: {
1010
+ addBypassRule(who: `0x${string}`, functionSig: `0x${string}`, id: bigint, options?: {
500
1011
  accessList?: import('viem').AccessList;
501
1012
  authorizationList?: import('viem').AuthorizationList;
502
1013
  chain?: import('viem').Chain | null;
@@ -509,11 +1020,11 @@ export declare class UltimateTokenOwnable_json {
509
1020
  value?: bigint;
510
1021
  }): Promise<`0x${string}`>;
511
1022
  /**
512
- * burn
513
- * nonpayable
1023
+ * approve
1024
+ * payable
514
1025
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
515
1026
  */
516
- burn(amount: bigint, options?: {
1027
+ approve(operator: `0x${string}`, tokenId: bigint, options?: {
517
1028
  accessList?: import('viem').AccessList;
518
1029
  authorizationList?: import('viem').AuthorizationList;
519
1030
  chain?: import('viem').Chain | null;
@@ -526,11 +1037,11 @@ export declare class UltimateTokenOwnable_json {
526
1037
  value?: bigint;
527
1038
  }): Promise<`0x${string}`>;
528
1039
  /**
529
- * burnFrom
1040
+ * burn
530
1041
  * nonpayable
531
1042
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
532
1043
  */
533
- burnFrom(account: `0x${string}`, amount: bigint, options?: {
1044
+ burn(tokenId: bigint, options?: {
534
1045
  accessList?: import('viem').AccessList;
535
1046
  authorizationList?: import('viem').AuthorizationList;
536
1047
  chain?: import('viem').Chain | null;
@@ -543,11 +1054,11 @@ export declare class UltimateTokenOwnable_json {
543
1054
  value?: bigint;
544
1055
  }): Promise<`0x${string}`>;
545
1056
  /**
546
- * decreaseAllowance
1057
+ * initialize
547
1058
  * nonpayable
548
1059
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
549
1060
  */
550
- decreaseAllowance(spender: `0x${string}`, subtractedValue: bigint, options?: {
1061
+ initialize(name_: string, symbol_: string, options?: {
551
1062
  accessList?: import('viem').AccessList;
552
1063
  authorizationList?: import('viem').AuthorizationList;
553
1064
  chain?: import('viem').Chain | null;
@@ -560,11 +1071,11 @@ export declare class UltimateTokenOwnable_json {
560
1071
  value?: bigint;
561
1072
  }): Promise<`0x${string}`>;
562
1073
  /**
563
- * increaseAllowance
1074
+ * mint
564
1075
  * nonpayable
565
1076
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
566
1077
  */
567
- increaseAllowance(spender: `0x${string}`, addedValue: bigint, options?: {
1078
+ mint(to: `0x${string}`, externalTokenId: bigint, options?: {
568
1079
  accessList?: import('viem').AccessList;
569
1080
  authorizationList?: import('viem').AuthorizationList;
570
1081
  chain?: import('viem').Chain | null;
@@ -577,11 +1088,11 @@ export declare class UltimateTokenOwnable_json {
577
1088
  value?: bigint;
578
1089
  }): Promise<`0x${string}`>;
579
1090
  /**
580
- * initialize
1091
+ * mintMany
581
1092
  * nonpayable
582
1093
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
583
1094
  */
584
- initialize(_owner: `0x${string}`, _mintTarget: `0x${string}`, _name: string, _symbol: string, _decimals: bigint, _initialSupply: bigint, _maxSupply: bigint, options?: {
1095
+ mintMany(to: `0x${string}`[], externalTokenId: bigint[], options?: {
585
1096
  accessList?: import('viem').AccessList;
586
1097
  authorizationList?: import('viem').AuthorizationList;
587
1098
  chain?: import('viem').Chain | null;
@@ -594,11 +1105,11 @@ export declare class UltimateTokenOwnable_json {
594
1105
  value?: bigint;
595
1106
  }): Promise<`0x${string}`>;
596
1107
  /**
597
- * mint
1108
+ * registerContract
598
1109
  * nonpayable
599
1110
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
600
1111
  */
601
- mint(to: `0x${string}`, amount: bigint, options?: {
1112
+ registerContract(_contract: `0x${string}`, _type: bigint, options?: {
602
1113
  accessList?: import('viem').AccessList;
603
1114
  authorizationList?: import('viem').AuthorizationList;
604
1115
  chain?: import('viem').Chain | null;
@@ -611,11 +1122,11 @@ export declare class UltimateTokenOwnable_json {
611
1122
  value?: bigint;
612
1123
  }): Promise<`0x${string}`>;
613
1124
  /**
614
- * pause
1125
+ * removeBypassRule
615
1126
  * nonpayable
616
1127
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
617
1128
  */
618
- pause(options?: {
1129
+ removeBypassRule(who: `0x${string}`, functionSig: `0x${string}`, id: bigint, options?: {
619
1130
  accessList?: import('viem').AccessList;
620
1131
  authorizationList?: import('viem').AuthorizationList;
621
1132
  chain?: import('viem').Chain | null;
@@ -644,12 +1155,36 @@ export declare class UltimateTokenOwnable_json {
644
1155
  nonce?: number;
645
1156
  value?: bigint;
646
1157
  }): Promise<`0x${string}`>;
1158
+ safeTransferFrom(from: `0x${string}`, to: `0x${string}`, tokenId: bigint, options?: {
1159
+ accessList?: import('viem').AccessList;
1160
+ authorizationList?: import('viem').AuthorizationList;
1161
+ chain?: import('viem').Chain | null;
1162
+ dataSuffix?: `0x${string}`;
1163
+ gas?: bigint;
1164
+ gasPrice?: bigint;
1165
+ maxFeePerGas?: bigint;
1166
+ maxPriorityFeePerGas?: bigint;
1167
+ nonce?: number;
1168
+ value?: bigint;
1169
+ }): Promise<`0x${string}`>;
1170
+ safeTransferFrom(from: `0x${string}`, to: `0x${string}`, tokenId: bigint, data: `0x${string}`, options?: {
1171
+ accessList?: import('viem').AccessList;
1172
+ authorizationList?: import('viem').AuthorizationList;
1173
+ chain?: import('viem').Chain | null;
1174
+ dataSuffix?: `0x${string}`;
1175
+ gas?: bigint;
1176
+ gasPrice?: bigint;
1177
+ maxFeePerGas?: bigint;
1178
+ maxPriorityFeePerGas?: bigint;
1179
+ nonce?: number;
1180
+ value?: bigint;
1181
+ }): Promise<`0x${string}`>;
647
1182
  /**
648
- * transfer
1183
+ * setApprovalForAll
649
1184
  * nonpayable
650
1185
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
651
1186
  */
652
- transfer(to: `0x${string}`, amount: bigint, options?: {
1187
+ setApprovalForAll(operator: `0x${string}`, approved: boolean, options?: {
653
1188
  accessList?: import('viem').AccessList;
654
1189
  authorizationList?: import('viem').AuthorizationList;
655
1190
  chain?: import('viem').Chain | null;
@@ -662,11 +1197,96 @@ export declare class UltimateTokenOwnable_json {
662
1197
  value?: bigint;
663
1198
  }): Promise<`0x${string}`>;
664
1199
  /**
665
- * transferFrom
1200
+ * setBaseURI
1201
+ * nonpayable
1202
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1203
+ */
1204
+ setBaseURI(baseURI: string, options?: {
1205
+ accessList?: import('viem').AccessList;
1206
+ authorizationList?: import('viem').AuthorizationList;
1207
+ chain?: import('viem').Chain | null;
1208
+ dataSuffix?: `0x${string}`;
1209
+ gas?: bigint;
1210
+ gasPrice?: bigint;
1211
+ maxFeePerGas?: bigint;
1212
+ maxPriorityFeePerGas?: bigint;
1213
+ nonce?: number;
1214
+ value?: bigint;
1215
+ }): Promise<`0x${string}`>;
1216
+ /**
1217
+ * setDetails
1218
+ * nonpayable
1219
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1220
+ */
1221
+ setDetails(name_: string, symbol_: string, options?: {
1222
+ accessList?: import('viem').AccessList;
1223
+ authorizationList?: import('viem').AuthorizationList;
1224
+ chain?: import('viem').Chain | null;
1225
+ dataSuffix?: `0x${string}`;
1226
+ gas?: bigint;
1227
+ gasPrice?: bigint;
1228
+ maxFeePerGas?: bigint;
1229
+ maxPriorityFeePerGas?: bigint;
1230
+ nonce?: number;
1231
+ value?: bigint;
1232
+ }): Promise<`0x${string}`>;
1233
+ /**
1234
+ * setTokenRoyalty
1235
+ * nonpayable
1236
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1237
+ */
1238
+ setTokenRoyalty(tokenId: bigint, recipient: `0x${string}`, value: bigint, options?: {
1239
+ accessList?: import('viem').AccessList;
1240
+ authorizationList?: import('viem').AuthorizationList;
1241
+ chain?: import('viem').Chain | null;
1242
+ dataSuffix?: `0x${string}`;
1243
+ gas?: bigint;
1244
+ gasPrice?: bigint;
1245
+ maxFeePerGas?: bigint;
1246
+ maxPriorityFeePerGas?: bigint;
1247
+ nonce?: number;
1248
+ value?: bigint;
1249
+ }): Promise<`0x${string}`>;
1250
+ /**
1251
+ * toggleBypassability
1252
+ * nonpayable
1253
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1254
+ */
1255
+ toggleBypassability(options?: {
1256
+ accessList?: import('viem').AccessList;
1257
+ authorizationList?: import('viem').AuthorizationList;
1258
+ chain?: import('viem').Chain | null;
1259
+ dataSuffix?: `0x${string}`;
1260
+ gas?: bigint;
1261
+ gasPrice?: bigint;
1262
+ maxFeePerGas?: bigint;
1263
+ maxPriorityFeePerGas?: bigint;
1264
+ nonce?: number;
1265
+ value?: bigint;
1266
+ }): Promise<`0x${string}`>;
1267
+ /**
1268
+ * toggleClaimable
666
1269
  * nonpayable
667
1270
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
668
1271
  */
669
- transferFrom(from: `0x${string}`, to: `0x${string}`, amount: bigint, options?: {
1272
+ toggleClaimable(options?: {
1273
+ accessList?: import('viem').AccessList;
1274
+ authorizationList?: import('viem').AuthorizationList;
1275
+ chain?: import('viem').Chain | null;
1276
+ dataSuffix?: `0x${string}`;
1277
+ gas?: bigint;
1278
+ gasPrice?: bigint;
1279
+ maxFeePerGas?: bigint;
1280
+ maxPriorityFeePerGas?: bigint;
1281
+ nonce?: number;
1282
+ value?: bigint;
1283
+ }): Promise<`0x${string}`>;
1284
+ /**
1285
+ * transferFrom
1286
+ * payable
1287
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1288
+ */
1289
+ transferFrom(from: `0x${string}`, to: `0x${string}`, tokenId: bigint, options?: {
670
1290
  accessList?: import('viem').AccessList;
671
1291
  authorizationList?: import('viem').AuthorizationList;
672
1292
  chain?: import('viem').Chain | null;
@@ -696,11 +1316,11 @@ export declare class UltimateTokenOwnable_json {
696
1316
  value?: bigint;
697
1317
  }): Promise<`0x${string}`>;
698
1318
  /**
699
- * unpause
1319
+ * unregisterContract
700
1320
  * nonpayable
701
1321
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
702
1322
  */
703
- unpause(options?: {
1323
+ unregisterContract(_contract: `0x${string}`, index: bigint, options?: {
704
1324
  accessList?: import('viem').AccessList;
705
1325
  authorizationList?: import('viem').AuthorizationList;
706
1326
  chain?: import('viem').Chain | null;
@@ -722,11 +1342,11 @@ export declare class UltimateTokenOwnable_json {
722
1342
  */
723
1343
  get simulate(): {
724
1344
  /**
725
- * Simulate approve
1345
+ * Simulate addBypassRule
726
1346
  * Returns gas estimate and result without sending transaction
727
1347
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
728
1348
  */
729
- approve(spender: `0x${string}`, amount: bigint, options?: {
1349
+ addBypassRule(who: `0x${string}`, functionSig: `0x${string}`, id: bigint, options?: {
730
1350
  accessList?: import("viem").AccessList;
731
1351
  authorizationList?: import("viem").AuthorizationList;
732
1352
  chain?: import("viem").Chain | null;
@@ -737,13 +1357,13 @@ export declare class UltimateTokenOwnable_json {
737
1357
  maxPriorityFeePerGas?: bigint;
738
1358
  nonce?: number;
739
1359
  value?: bigint;
740
- }): Promise<boolean>;
1360
+ }): Promise<void>;
741
1361
  /**
742
- * Simulate burn
1362
+ * Simulate approve
743
1363
  * Returns gas estimate and result without sending transaction
744
1364
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
745
1365
  */
746
- burn(amount: bigint, options?: {
1366
+ approve(operator: `0x${string}`, tokenId: bigint, options?: {
747
1367
  accessList?: import("viem").AccessList;
748
1368
  authorizationList?: import("viem").AuthorizationList;
749
1369
  chain?: import("viem").Chain | null;
@@ -756,11 +1376,11 @@ export declare class UltimateTokenOwnable_json {
756
1376
  value?: bigint;
757
1377
  }): Promise<void>;
758
1378
  /**
759
- * Simulate burnFrom
1379
+ * Simulate burn
760
1380
  * Returns gas estimate and result without sending transaction
761
1381
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
762
1382
  */
763
- burnFrom(account: `0x${string}`, amount: bigint, options?: {
1383
+ burn(tokenId: bigint, options?: {
764
1384
  accessList?: import("viem").AccessList;
765
1385
  authorizationList?: import("viem").AuthorizationList;
766
1386
  chain?: import("viem").Chain | null;
@@ -773,11 +1393,11 @@ export declare class UltimateTokenOwnable_json {
773
1393
  value?: bigint;
774
1394
  }): Promise<void>;
775
1395
  /**
776
- * Simulate decreaseAllowance
1396
+ * Simulate initialize
777
1397
  * Returns gas estimate and result without sending transaction
778
1398
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
779
1399
  */
780
- decreaseAllowance(spender: `0x${string}`, subtractedValue: bigint, options?: {
1400
+ initialize(name_: string, symbol_: string, options?: {
781
1401
  accessList?: import("viem").AccessList;
782
1402
  authorizationList?: import("viem").AuthorizationList;
783
1403
  chain?: import("viem").Chain | null;
@@ -788,13 +1408,13 @@ export declare class UltimateTokenOwnable_json {
788
1408
  maxPriorityFeePerGas?: bigint;
789
1409
  nonce?: number;
790
1410
  value?: bigint;
791
- }): Promise<boolean>;
1411
+ }): Promise<void>;
792
1412
  /**
793
- * Simulate increaseAllowance
1413
+ * Simulate mint
794
1414
  * Returns gas estimate and result without sending transaction
795
1415
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
796
1416
  */
797
- increaseAllowance(spender: `0x${string}`, addedValue: bigint, options?: {
1417
+ mint(to: `0x${string}`, externalTokenId: bigint, options?: {
798
1418
  accessList?: import("viem").AccessList;
799
1419
  authorizationList?: import("viem").AuthorizationList;
800
1420
  chain?: import("viem").Chain | null;
@@ -805,13 +1425,13 @@ export declare class UltimateTokenOwnable_json {
805
1425
  maxPriorityFeePerGas?: bigint;
806
1426
  nonce?: number;
807
1427
  value?: bigint;
808
- }): Promise<boolean>;
1428
+ }): Promise<void>;
809
1429
  /**
810
- * Simulate initialize
1430
+ * Simulate mintMany
811
1431
  * Returns gas estimate and result without sending transaction
812
1432
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
813
1433
  */
814
- initialize(_owner: `0x${string}`, _mintTarget: `0x${string}`, _name: string, _symbol: string, _decimals: bigint, _initialSupply: bigint, _maxSupply: bigint, options?: {
1434
+ mintMany(to: `0x${string}`[], externalTokenId: bigint[], options?: {
815
1435
  accessList?: import("viem").AccessList;
816
1436
  authorizationList?: import("viem").AuthorizationList;
817
1437
  chain?: import("viem").Chain | null;
@@ -824,11 +1444,11 @@ export declare class UltimateTokenOwnable_json {
824
1444
  value?: bigint;
825
1445
  }): Promise<void>;
826
1446
  /**
827
- * Simulate mint
1447
+ * Simulate registerContract
828
1448
  * Returns gas estimate and result without sending transaction
829
1449
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
830
1450
  */
831
- mint(to: `0x${string}`, amount: bigint, options?: {
1451
+ registerContract(_contract: `0x${string}`, _type: bigint, options?: {
832
1452
  accessList?: import("viem").AccessList;
833
1453
  authorizationList?: import("viem").AuthorizationList;
834
1454
  chain?: import("viem").Chain | null;
@@ -841,11 +1461,11 @@ export declare class UltimateTokenOwnable_json {
841
1461
  value?: bigint;
842
1462
  }): Promise<void>;
843
1463
  /**
844
- * Simulate pause
1464
+ * Simulate removeBypassRule
845
1465
  * Returns gas estimate and result without sending transaction
846
1466
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
847
1467
  */
848
- pause(options?: {
1468
+ removeBypassRule(who: `0x${string}`, functionSig: `0x${string}`, id: bigint, options?: {
849
1469
  accessList?: import("viem").AccessList;
850
1470
  authorizationList?: import("viem").AuthorizationList;
851
1471
  chain?: import("viem").Chain | null;
@@ -875,11 +1495,69 @@ export declare class UltimateTokenOwnable_json {
875
1495
  value?: bigint;
876
1496
  }): Promise<void>;
877
1497
  /**
878
- * Simulate transfer
1498
+ * Simulate safeTransferFrom
1499
+ * Returns gas estimate and result without sending transaction
1500
+ * Supports multiple overloads: (address, address, uint256), (address, address, uint256, bytes)
1501
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1502
+ */
1503
+ safeTransferFrom(...args: any[]): Promise<any>;
1504
+ /**
1505
+ * Simulate setApprovalForAll
1506
+ * Returns gas estimate and result without sending transaction
1507
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1508
+ */
1509
+ setApprovalForAll(operator: `0x${string}`, approved: boolean, options?: {
1510
+ accessList?: import("viem").AccessList;
1511
+ authorizationList?: import("viem").AuthorizationList;
1512
+ chain?: import("viem").Chain | null;
1513
+ dataSuffix?: `0x${string}`;
1514
+ gas?: bigint;
1515
+ gasPrice?: bigint;
1516
+ maxFeePerGas?: bigint;
1517
+ maxPriorityFeePerGas?: bigint;
1518
+ nonce?: number;
1519
+ value?: bigint;
1520
+ }): Promise<void>;
1521
+ /**
1522
+ * Simulate setBaseURI
1523
+ * Returns gas estimate and result without sending transaction
1524
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1525
+ */
1526
+ setBaseURI(baseURI: string, options?: {
1527
+ accessList?: import("viem").AccessList;
1528
+ authorizationList?: import("viem").AuthorizationList;
1529
+ chain?: import("viem").Chain | null;
1530
+ dataSuffix?: `0x${string}`;
1531
+ gas?: bigint;
1532
+ gasPrice?: bigint;
1533
+ maxFeePerGas?: bigint;
1534
+ maxPriorityFeePerGas?: bigint;
1535
+ nonce?: number;
1536
+ value?: bigint;
1537
+ }): Promise<void>;
1538
+ /**
1539
+ * Simulate setDetails
1540
+ * Returns gas estimate and result without sending transaction
1541
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1542
+ */
1543
+ setDetails(name_: string, symbol_: string, options?: {
1544
+ accessList?: import("viem").AccessList;
1545
+ authorizationList?: import("viem").AuthorizationList;
1546
+ chain?: import("viem").Chain | null;
1547
+ dataSuffix?: `0x${string}`;
1548
+ gas?: bigint;
1549
+ gasPrice?: bigint;
1550
+ maxFeePerGas?: bigint;
1551
+ maxPriorityFeePerGas?: bigint;
1552
+ nonce?: number;
1553
+ value?: bigint;
1554
+ }): Promise<void>;
1555
+ /**
1556
+ * Simulate setTokenRoyalty
879
1557
  * Returns gas estimate and result without sending transaction
880
1558
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
881
1559
  */
882
- transfer(to: `0x${string}`, amount: bigint, options?: {
1560
+ setTokenRoyalty(tokenId: bigint, recipient: `0x${string}`, value: bigint, options?: {
883
1561
  accessList?: import("viem").AccessList;
884
1562
  authorizationList?: import("viem").AuthorizationList;
885
1563
  chain?: import("viem").Chain | null;
@@ -890,13 +1568,47 @@ export declare class UltimateTokenOwnable_json {
890
1568
  maxPriorityFeePerGas?: bigint;
891
1569
  nonce?: number;
892
1570
  value?: bigint;
893
- }): Promise<boolean>;
1571
+ }): Promise<void>;
1572
+ /**
1573
+ * Simulate toggleBypassability
1574
+ * Returns gas estimate and result without sending transaction
1575
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1576
+ */
1577
+ toggleBypassability(options?: {
1578
+ accessList?: import("viem").AccessList;
1579
+ authorizationList?: import("viem").AuthorizationList;
1580
+ chain?: import("viem").Chain | null;
1581
+ dataSuffix?: `0x${string}`;
1582
+ gas?: bigint;
1583
+ gasPrice?: bigint;
1584
+ maxFeePerGas?: bigint;
1585
+ maxPriorityFeePerGas?: bigint;
1586
+ nonce?: number;
1587
+ value?: bigint;
1588
+ }): Promise<void>;
1589
+ /**
1590
+ * Simulate toggleClaimable
1591
+ * Returns gas estimate and result without sending transaction
1592
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1593
+ */
1594
+ toggleClaimable(options?: {
1595
+ accessList?: import("viem").AccessList;
1596
+ authorizationList?: import("viem").AuthorizationList;
1597
+ chain?: import("viem").Chain | null;
1598
+ dataSuffix?: `0x${string}`;
1599
+ gas?: bigint;
1600
+ gasPrice?: bigint;
1601
+ maxFeePerGas?: bigint;
1602
+ maxPriorityFeePerGas?: bigint;
1603
+ nonce?: number;
1604
+ value?: bigint;
1605
+ }): Promise<void>;
894
1606
  /**
895
1607
  * Simulate transferFrom
896
1608
  * Returns gas estimate and result without sending transaction
897
1609
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
898
1610
  */
899
- transferFrom(from: `0x${string}`, to: `0x${string}`, amount: bigint, options?: {
1611
+ transferFrom(from: `0x${string}`, to: `0x${string}`, tokenId: bigint, options?: {
900
1612
  accessList?: import("viem").AccessList;
901
1613
  authorizationList?: import("viem").AuthorizationList;
902
1614
  chain?: import("viem").Chain | null;
@@ -907,7 +1619,7 @@ export declare class UltimateTokenOwnable_json {
907
1619
  maxPriorityFeePerGas?: bigint;
908
1620
  nonce?: number;
909
1621
  value?: bigint;
910
- }): Promise<boolean>;
1622
+ }): Promise<void>;
911
1623
  /**
912
1624
  * Simulate transferOwnership
913
1625
  * Returns gas estimate and result without sending transaction
@@ -926,11 +1638,11 @@ export declare class UltimateTokenOwnable_json {
926
1638
  value?: bigint;
927
1639
  }): Promise<void>;
928
1640
  /**
929
- * Simulate unpause
1641
+ * Simulate unregisterContract
930
1642
  * Returns gas estimate and result without sending transaction
931
1643
  * @param options Optional transaction parameters (value, gas, nonce, etc.)
932
1644
  */
933
- unpause(options?: {
1645
+ unregisterContract(_contract: `0x${string}`, index: bigint, options?: {
934
1646
  accessList?: import("viem").AccessList;
935
1647
  authorizationList?: import("viem").AuthorizationList;
936
1648
  chain?: import("viem").Chain | null;
@@ -964,11 +1676,42 @@ export declare class UltimateTokenOwnable_json {
964
1676
  */
965
1677
  Approval: (callback: (event: {
966
1678
  owner: `0x${string}`;
967
- spender: `0x${string}`;
968
- value: bigint;
1679
+ approved: `0x${string}`;
1680
+ tokenId: bigint;
969
1681
  }) => void, filter?: {
970
1682
  owner: `0x${string}`;
971
- spender: `0x${string}`;
1683
+ approved: `0x${string}`;
1684
+ tokenId: bigint;
1685
+ }) => () => void;
1686
+ /**
1687
+ * Watch ApprovalForAll events
1688
+ * @param callback Function to call when event is emitted
1689
+ * @param filter Optional filter for indexed parameters
1690
+ * @returns Unwatch function to stop listening
1691
+ */
1692
+ ApprovalForAll: (callback: (event: {
1693
+ owner: `0x${string}`;
1694
+ operator: `0x${string}`;
1695
+ approved: boolean;
1696
+ }) => void, filter?: {
1697
+ owner: `0x${string}`;
1698
+ operator: `0x${string}`;
1699
+ }) => () => void;
1700
+ /**
1701
+ * Watch ConsecutiveTransfer events
1702
+ * @param callback Function to call when event is emitted
1703
+ * @param filter Optional filter for indexed parameters
1704
+ * @returns Unwatch function to stop listening
1705
+ */
1706
+ ConsecutiveTransfer: (callback: (event: {
1707
+ fromTokenId: bigint;
1708
+ from: `0x${string}`;
1709
+ to: `0x${string}`;
1710
+ toTokenId: bigint;
1711
+ }) => void, filter?: {
1712
+ fromTokenId: bigint;
1713
+ from: `0x${string}`;
1714
+ to: `0x${string}`;
972
1715
  }) => () => void;
973
1716
  /**
974
1717
  * Watch Initialized events
@@ -992,15 +1735,6 @@ export declare class UltimateTokenOwnable_json {
992
1735
  previousOwner: `0x${string}`;
993
1736
  newOwner: `0x${string}`;
994
1737
  }) => () => void;
995
- /**
996
- * Watch Paused events
997
- * @param callback Function to call when event is emitted
998
- * @param filter Optional filter for indexed parameters
999
- * @returns Unwatch function to stop listening
1000
- */
1001
- Paused: (callback: (event: {
1002
- account: `0x${string}`;
1003
- }) => void) => () => void;
1004
1738
  /**
1005
1739
  * Watch Transfer events
1006
1740
  * @param callback Function to call when event is emitted
@@ -1010,19 +1744,11 @@ export declare class UltimateTokenOwnable_json {
1010
1744
  Transfer: (callback: (event: {
1011
1745
  from: `0x${string}`;
1012
1746
  to: `0x${string}`;
1013
- value: bigint;
1747
+ tokenId: bigint;
1014
1748
  }) => void, filter?: {
1015
1749
  from: `0x${string}`;
1016
1750
  to: `0x${string}`;
1751
+ tokenId: bigint;
1017
1752
  }) => () => void;
1018
- /**
1019
- * Watch Unpaused events
1020
- * @param callback Function to call when event is emitted
1021
- * @param filter Optional filter for indexed parameters
1022
- * @returns Unwatch function to stop listening
1023
- */
1024
- Unpaused: (callback: (event: {
1025
- account: `0x${string}`;
1026
- }) => void) => () => void;
1027
1753
  };
1028
1754
  }