@gitmyabi/gdog 1.0.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.
@@ -0,0 +1,2636 @@
1
+ import type { Address, PublicClient, WalletClient } from 'viem';
2
+ /**
3
+ * ERC721SeaDropStructsErrorsAndEvents.MultiConfigureStruct struct type
4
+ */
5
+ export type ERC721SeaDropStructsErrorsAndEvents_MultiConfigureStruct = {
6
+ maxSupply: bigint;
7
+ baseURI: string;
8
+ contractURI: string;
9
+ seaDropImpl: `0x${string}`;
10
+ publicDrop: PublicDrop;
11
+ dropURI: string;
12
+ allowListData: AllowListData;
13
+ creatorPayoutAddress: `0x${string}`;
14
+ provenanceHash: `0x${string}`;
15
+ allowedFeeRecipients: `0x${string}`[];
16
+ disallowedFeeRecipients: `0x${string}`[];
17
+ allowedPayers: `0x${string}`[];
18
+ disallowedPayers: `0x${string}`[];
19
+ tokenGatedAllowedNftTokens: `0x${string}`[];
20
+ tokenGatedDropStages: TokenGatedDropStage[];
21
+ disallowedTokenGatedAllowedNftTokens: `0x${string}`[];
22
+ signers: `0x${string}`[];
23
+ signedMintValidationParams: SignedMintValidationParams[];
24
+ disallowedSigners: `0x${string}`[];
25
+ };
26
+ /**
27
+ * PublicDrop struct type
28
+ */
29
+ export type PublicDrop = {
30
+ mintPrice: bigint;
31
+ startTime: bigint;
32
+ endTime: bigint;
33
+ maxTotalMintableByWallet: bigint;
34
+ feeBps: bigint;
35
+ restrictFeeRecipients: boolean;
36
+ };
37
+ /**
38
+ * AllowListData struct type
39
+ */
40
+ export type AllowListData = {
41
+ merkleRoot: `0x${string}`;
42
+ publicKeyURIs: string[];
43
+ allowListURI: string;
44
+ };
45
+ /**
46
+ * TokenGatedDropStage struct type
47
+ */
48
+ export type TokenGatedDropStage = {
49
+ mintPrice: bigint;
50
+ maxTotalMintableByWallet: bigint;
51
+ startTime: bigint;
52
+ endTime: bigint;
53
+ dropStageIndex: bigint;
54
+ maxTokenSupplyForStage: bigint;
55
+ feeBps: bigint;
56
+ restrictFeeRecipients: boolean;
57
+ };
58
+ /**
59
+ * SignedMintValidationParams struct type
60
+ */
61
+ export type SignedMintValidationParams = {
62
+ minMintPrice: bigint;
63
+ maxMaxTotalMintableByWallet: bigint;
64
+ minStartTime: bigint;
65
+ maxEndTime: bigint;
66
+ maxMaxTokenSupplyForStage: bigint;
67
+ minFeeBps: bigint;
68
+ maxFeeBps: bigint;
69
+ };
70
+ /**
71
+ * ISeaDropTokenContractMetadata.RoyaltyInfo struct type
72
+ */
73
+ export type ISeaDropTokenContractMetadata_RoyaltyInfo = {
74
+ royaltyAddress: `0x${string}`;
75
+ royaltyBps: bigint;
76
+ };
77
+ /**
78
+ * ERC721SeaDropCloneable_json ABI
79
+ *
80
+ * This ABI is typed using viem's type system for full type safety.
81
+ */
82
+ export declare const ERC721SeaDropCloneable_jsonAbi: readonly [{
83
+ readonly inputs: readonly [];
84
+ readonly name: "AlreadyInitialized";
85
+ readonly type: "error";
86
+ }, {
87
+ readonly inputs: readonly [];
88
+ readonly name: "ApprovalCallerNotOwnerNorApproved";
89
+ readonly type: "error";
90
+ }, {
91
+ readonly inputs: readonly [];
92
+ readonly name: "ApprovalQueryForNonexistentToken";
93
+ readonly type: "error";
94
+ }, {
95
+ readonly inputs: readonly [];
96
+ readonly name: "BalanceQueryForZeroAddress";
97
+ readonly type: "error";
98
+ }, {
99
+ readonly inputs: readonly [{
100
+ readonly internalType: "uint256";
101
+ readonly name: "newMaxSupply";
102
+ readonly type: "uint256";
103
+ }];
104
+ readonly name: "CannotExceedMaxSupplyOfUint64";
105
+ readonly type: "error";
106
+ }, {
107
+ readonly inputs: readonly [{
108
+ readonly internalType: "uint256";
109
+ readonly name: "basisPoints";
110
+ readonly type: "uint256";
111
+ }];
112
+ readonly name: "InvalidRoyaltyBasisPoints";
113
+ readonly type: "error";
114
+ }, {
115
+ readonly inputs: readonly [];
116
+ readonly name: "MintERC2309QuantityExceedsLimit";
117
+ readonly type: "error";
118
+ }, {
119
+ readonly inputs: readonly [{
120
+ readonly internalType: "uint256";
121
+ readonly name: "total";
122
+ readonly type: "uint256";
123
+ }, {
124
+ readonly internalType: "uint256";
125
+ readonly name: "maxSupply";
126
+ readonly type: "uint256";
127
+ }];
128
+ readonly name: "MintQuantityExceedsMaxSupply";
129
+ readonly type: "error";
130
+ }, {
131
+ readonly inputs: readonly [];
132
+ readonly name: "MintToZeroAddress";
133
+ readonly type: "error";
134
+ }, {
135
+ readonly inputs: readonly [];
136
+ readonly name: "MintZeroQuantity";
137
+ readonly type: "error";
138
+ }, {
139
+ readonly inputs: readonly [];
140
+ readonly name: "NewOwnerIsZeroAddress";
141
+ readonly type: "error";
142
+ }, {
143
+ readonly inputs: readonly [];
144
+ readonly name: "NotNextOwner";
145
+ readonly type: "error";
146
+ }, {
147
+ readonly inputs: readonly [];
148
+ readonly name: "OnlyAllowedSeaDrop";
149
+ readonly type: "error";
150
+ }, {
151
+ readonly inputs: readonly [];
152
+ readonly name: "OnlyOwner";
153
+ readonly type: "error";
154
+ }, {
155
+ readonly inputs: readonly [];
156
+ readonly name: "OwnerQueryForNonexistentToken";
157
+ readonly type: "error";
158
+ }, {
159
+ readonly inputs: readonly [];
160
+ readonly name: "OwnershipNotInitializedForExtraData";
161
+ readonly type: "error";
162
+ }, {
163
+ readonly inputs: readonly [];
164
+ readonly name: "ProvenanceHashCannotBeSetAfterMintStarted";
165
+ readonly type: "error";
166
+ }, {
167
+ readonly inputs: readonly [];
168
+ readonly name: "RoyaltyAddressCannotBeZeroAddress";
169
+ readonly type: "error";
170
+ }, {
171
+ readonly inputs: readonly [];
172
+ readonly name: "SameTransferValidator";
173
+ readonly type: "error";
174
+ }, {
175
+ readonly inputs: readonly [];
176
+ readonly name: "SignersMismatch";
177
+ readonly type: "error";
178
+ }, {
179
+ readonly inputs: readonly [];
180
+ readonly name: "TokenGatedMismatch";
181
+ readonly type: "error";
182
+ }, {
183
+ readonly inputs: readonly [];
184
+ readonly name: "TransferCallerNotOwnerNorApproved";
185
+ readonly type: "error";
186
+ }, {
187
+ readonly inputs: readonly [];
188
+ readonly name: "TransferFromIncorrectOwner";
189
+ readonly type: "error";
190
+ }, {
191
+ readonly inputs: readonly [];
192
+ readonly name: "TransferToNonERC721ReceiverImplementer";
193
+ readonly type: "error";
194
+ }, {
195
+ readonly inputs: readonly [];
196
+ readonly name: "TransferToZeroAddress";
197
+ readonly type: "error";
198
+ }, {
199
+ readonly inputs: readonly [];
200
+ readonly name: "URIQueryForNonexistentToken";
201
+ readonly type: "error";
202
+ }, {
203
+ readonly anonymous: false;
204
+ readonly inputs: readonly [{
205
+ readonly indexed: false;
206
+ readonly internalType: "address[]";
207
+ readonly name: "allowedSeaDrop";
208
+ readonly type: "address[]";
209
+ }];
210
+ readonly name: "AllowedSeaDropUpdated";
211
+ readonly type: "event";
212
+ }, {
213
+ readonly anonymous: false;
214
+ readonly inputs: readonly [{
215
+ readonly indexed: true;
216
+ readonly internalType: "address";
217
+ readonly name: "owner";
218
+ readonly type: "address";
219
+ }, {
220
+ readonly indexed: true;
221
+ readonly internalType: "address";
222
+ readonly name: "approved";
223
+ readonly type: "address";
224
+ }, {
225
+ readonly indexed: true;
226
+ readonly internalType: "uint256";
227
+ readonly name: "tokenId";
228
+ readonly type: "uint256";
229
+ }];
230
+ readonly name: "Approval";
231
+ readonly type: "event";
232
+ }, {
233
+ readonly anonymous: false;
234
+ readonly inputs: readonly [{
235
+ readonly indexed: true;
236
+ readonly internalType: "address";
237
+ readonly name: "owner";
238
+ readonly type: "address";
239
+ }, {
240
+ readonly indexed: true;
241
+ readonly internalType: "address";
242
+ readonly name: "operator";
243
+ readonly type: "address";
244
+ }, {
245
+ readonly indexed: false;
246
+ readonly internalType: "bool";
247
+ readonly name: "approved";
248
+ readonly type: "bool";
249
+ }];
250
+ readonly name: "ApprovalForAll";
251
+ readonly type: "event";
252
+ }, {
253
+ readonly anonymous: false;
254
+ readonly inputs: readonly [{
255
+ readonly indexed: false;
256
+ readonly internalType: "uint256";
257
+ readonly name: "_fromTokenId";
258
+ readonly type: "uint256";
259
+ }, {
260
+ readonly indexed: false;
261
+ readonly internalType: "uint256";
262
+ readonly name: "_toTokenId";
263
+ readonly type: "uint256";
264
+ }];
265
+ readonly name: "BatchMetadataUpdate";
266
+ readonly type: "event";
267
+ }, {
268
+ readonly anonymous: false;
269
+ readonly inputs: readonly [{
270
+ readonly indexed: true;
271
+ readonly internalType: "uint256";
272
+ readonly name: "fromTokenId";
273
+ readonly type: "uint256";
274
+ }, {
275
+ readonly indexed: false;
276
+ readonly internalType: "uint256";
277
+ readonly name: "toTokenId";
278
+ readonly type: "uint256";
279
+ }, {
280
+ readonly indexed: true;
281
+ readonly internalType: "address";
282
+ readonly name: "from";
283
+ readonly type: "address";
284
+ }, {
285
+ readonly indexed: true;
286
+ readonly internalType: "address";
287
+ readonly name: "to";
288
+ readonly type: "address";
289
+ }];
290
+ readonly name: "ConsecutiveTransfer";
291
+ readonly type: "event";
292
+ }, {
293
+ readonly anonymous: false;
294
+ readonly inputs: readonly [{
295
+ readonly indexed: false;
296
+ readonly internalType: "string";
297
+ readonly name: "newContractURI";
298
+ readonly type: "string";
299
+ }];
300
+ readonly name: "ContractURIUpdated";
301
+ readonly type: "event";
302
+ }, {
303
+ readonly anonymous: false;
304
+ readonly inputs: readonly [{
305
+ readonly indexed: false;
306
+ readonly internalType: "uint8";
307
+ readonly name: "version";
308
+ readonly type: "uint8";
309
+ }];
310
+ readonly name: "Initialized";
311
+ readonly type: "event";
312
+ }, {
313
+ readonly anonymous: false;
314
+ readonly inputs: readonly [{
315
+ readonly indexed: false;
316
+ readonly internalType: "uint256";
317
+ readonly name: "newMaxSupply";
318
+ readonly type: "uint256";
319
+ }];
320
+ readonly name: "MaxSupplyUpdated";
321
+ readonly type: "event";
322
+ }, {
323
+ readonly anonymous: false;
324
+ readonly inputs: readonly [{
325
+ readonly indexed: true;
326
+ readonly internalType: "address";
327
+ readonly name: "previousOwner";
328
+ readonly type: "address";
329
+ }, {
330
+ readonly indexed: true;
331
+ readonly internalType: "address";
332
+ readonly name: "newOwner";
333
+ readonly type: "address";
334
+ }];
335
+ readonly name: "OwnershipTransferred";
336
+ readonly type: "event";
337
+ }, {
338
+ readonly anonymous: false;
339
+ readonly inputs: readonly [{
340
+ readonly indexed: false;
341
+ readonly internalType: "address";
342
+ readonly name: "newPotentialAdministrator";
343
+ readonly type: "address";
344
+ }];
345
+ readonly name: "PotentialOwnerUpdated";
346
+ readonly type: "event";
347
+ }, {
348
+ readonly anonymous: false;
349
+ readonly inputs: readonly [{
350
+ readonly indexed: false;
351
+ readonly internalType: "bytes32";
352
+ readonly name: "previousHash";
353
+ readonly type: "bytes32";
354
+ }, {
355
+ readonly indexed: false;
356
+ readonly internalType: "bytes32";
357
+ readonly name: "newHash";
358
+ readonly type: "bytes32";
359
+ }];
360
+ readonly name: "ProvenanceHashUpdated";
361
+ readonly type: "event";
362
+ }, {
363
+ readonly anonymous: false;
364
+ readonly inputs: readonly [{
365
+ readonly indexed: false;
366
+ readonly internalType: "address";
367
+ readonly name: "receiver";
368
+ readonly type: "address";
369
+ }, {
370
+ readonly indexed: false;
371
+ readonly internalType: "uint256";
372
+ readonly name: "bps";
373
+ readonly type: "uint256";
374
+ }];
375
+ readonly name: "RoyaltyInfoUpdated";
376
+ readonly type: "event";
377
+ }, {
378
+ readonly anonymous: false;
379
+ readonly inputs: readonly [];
380
+ readonly name: "SeaDropTokenDeployed";
381
+ readonly type: "event";
382
+ }, {
383
+ readonly anonymous: false;
384
+ readonly inputs: readonly [{
385
+ readonly indexed: true;
386
+ readonly internalType: "address";
387
+ readonly name: "from";
388
+ readonly type: "address";
389
+ }, {
390
+ readonly indexed: true;
391
+ readonly internalType: "address";
392
+ readonly name: "to";
393
+ readonly type: "address";
394
+ }, {
395
+ readonly indexed: true;
396
+ readonly internalType: "uint256";
397
+ readonly name: "tokenId";
398
+ readonly type: "uint256";
399
+ }];
400
+ readonly name: "Transfer";
401
+ readonly type: "event";
402
+ }, {
403
+ readonly anonymous: false;
404
+ readonly inputs: readonly [{
405
+ readonly indexed: false;
406
+ readonly internalType: "address";
407
+ readonly name: "oldValidator";
408
+ readonly type: "address";
409
+ }, {
410
+ readonly indexed: false;
411
+ readonly internalType: "address";
412
+ readonly name: "newValidator";
413
+ readonly type: "address";
414
+ }];
415
+ readonly name: "TransferValidatorUpdated";
416
+ readonly type: "event";
417
+ }, {
418
+ readonly inputs: readonly [];
419
+ readonly name: "acceptOwnership";
420
+ readonly outputs: readonly [];
421
+ readonly stateMutability: "nonpayable";
422
+ readonly type: "function";
423
+ }, {
424
+ readonly inputs: readonly [{
425
+ readonly internalType: "address";
426
+ readonly name: "to";
427
+ readonly type: "address";
428
+ }, {
429
+ readonly internalType: "uint256";
430
+ readonly name: "tokenId";
431
+ readonly type: "uint256";
432
+ }];
433
+ readonly name: "approve";
434
+ readonly outputs: readonly [];
435
+ readonly stateMutability: "nonpayable";
436
+ readonly type: "function";
437
+ }, {
438
+ readonly inputs: readonly [{
439
+ readonly internalType: "address";
440
+ readonly name: "owner";
441
+ readonly type: "address";
442
+ }];
443
+ readonly name: "balanceOf";
444
+ readonly outputs: readonly [{
445
+ readonly internalType: "uint256";
446
+ readonly name: "";
447
+ readonly type: "uint256";
448
+ }];
449
+ readonly stateMutability: "view";
450
+ readonly type: "function";
451
+ }, {
452
+ readonly inputs: readonly [];
453
+ readonly name: "baseURI";
454
+ readonly outputs: readonly [{
455
+ readonly internalType: "string";
456
+ readonly name: "";
457
+ readonly type: "string";
458
+ }];
459
+ readonly stateMutability: "view";
460
+ readonly type: "function";
461
+ }, {
462
+ readonly inputs: readonly [{
463
+ readonly internalType: "uint256";
464
+ readonly name: "tokenId";
465
+ readonly type: "uint256";
466
+ }];
467
+ readonly name: "burn";
468
+ readonly outputs: readonly [];
469
+ readonly stateMutability: "nonpayable";
470
+ readonly type: "function";
471
+ }, {
472
+ readonly inputs: readonly [];
473
+ readonly name: "cancelOwnershipTransfer";
474
+ readonly outputs: readonly [];
475
+ readonly stateMutability: "nonpayable";
476
+ readonly type: "function";
477
+ }, {
478
+ readonly inputs: readonly [];
479
+ readonly name: "contractURI";
480
+ readonly outputs: readonly [{
481
+ readonly internalType: "string";
482
+ readonly name: "";
483
+ readonly type: "string";
484
+ }];
485
+ readonly stateMutability: "view";
486
+ readonly type: "function";
487
+ }, {
488
+ readonly inputs: readonly [{
489
+ readonly internalType: "uint256";
490
+ readonly name: "fromTokenId";
491
+ readonly type: "uint256";
492
+ }, {
493
+ readonly internalType: "uint256";
494
+ readonly name: "toTokenId";
495
+ readonly type: "uint256";
496
+ }];
497
+ readonly name: "emitBatchMetadataUpdate";
498
+ readonly outputs: readonly [];
499
+ readonly stateMutability: "nonpayable";
500
+ readonly type: "function";
501
+ }, {
502
+ readonly inputs: readonly [{
503
+ readonly internalType: "uint256";
504
+ readonly name: "tokenId";
505
+ readonly type: "uint256";
506
+ }];
507
+ readonly name: "getApproved";
508
+ readonly outputs: readonly [{
509
+ readonly internalType: "address";
510
+ readonly name: "";
511
+ readonly type: "address";
512
+ }];
513
+ readonly stateMutability: "view";
514
+ readonly type: "function";
515
+ }, {
516
+ readonly inputs: readonly [{
517
+ readonly internalType: "address";
518
+ readonly name: "minter";
519
+ readonly type: "address";
520
+ }];
521
+ readonly name: "getMintStats";
522
+ readonly outputs: readonly [{
523
+ readonly internalType: "uint256";
524
+ readonly name: "minterNumMinted";
525
+ readonly type: "uint256";
526
+ }, {
527
+ readonly internalType: "uint256";
528
+ readonly name: "currentTotalSupply";
529
+ readonly type: "uint256";
530
+ }, {
531
+ readonly internalType: "uint256";
532
+ readonly name: "maxSupply";
533
+ readonly type: "uint256";
534
+ }];
535
+ readonly stateMutability: "view";
536
+ readonly type: "function";
537
+ }, {
538
+ readonly inputs: readonly [];
539
+ readonly name: "getTransferValidationFunction";
540
+ readonly outputs: readonly [{
541
+ readonly internalType: "bytes4";
542
+ readonly name: "functionSignature";
543
+ readonly type: "bytes4";
544
+ }, {
545
+ readonly internalType: "bool";
546
+ readonly name: "isViewFunction";
547
+ readonly type: "bool";
548
+ }];
549
+ readonly stateMutability: "pure";
550
+ readonly type: "function";
551
+ }, {
552
+ readonly inputs: readonly [];
553
+ readonly name: "getTransferValidator";
554
+ readonly outputs: readonly [{
555
+ readonly internalType: "address";
556
+ readonly name: "";
557
+ readonly type: "address";
558
+ }];
559
+ readonly stateMutability: "view";
560
+ readonly type: "function";
561
+ }, {
562
+ readonly inputs: readonly [{
563
+ readonly internalType: "string";
564
+ readonly name: "__name";
565
+ readonly type: "string";
566
+ }, {
567
+ readonly internalType: "string";
568
+ readonly name: "__symbol";
569
+ readonly type: "string";
570
+ }, {
571
+ readonly internalType: "address[]";
572
+ readonly name: "allowedSeaDrop";
573
+ readonly type: "address[]";
574
+ }, {
575
+ readonly internalType: "address";
576
+ readonly name: "initialOwner";
577
+ readonly type: "address";
578
+ }];
579
+ readonly name: "initialize";
580
+ readonly outputs: readonly [];
581
+ readonly stateMutability: "nonpayable";
582
+ readonly type: "function";
583
+ }, {
584
+ readonly inputs: readonly [{
585
+ readonly internalType: "address";
586
+ readonly name: "owner";
587
+ readonly type: "address";
588
+ }, {
589
+ readonly internalType: "address";
590
+ readonly name: "operator";
591
+ readonly type: "address";
592
+ }];
593
+ readonly name: "isApprovedForAll";
594
+ readonly outputs: readonly [{
595
+ readonly internalType: "bool";
596
+ readonly name: "";
597
+ readonly type: "bool";
598
+ }];
599
+ readonly stateMutability: "view";
600
+ readonly type: "function";
601
+ }, {
602
+ readonly inputs: readonly [];
603
+ readonly name: "maxSupply";
604
+ readonly outputs: readonly [{
605
+ readonly internalType: "uint256";
606
+ readonly name: "";
607
+ readonly type: "uint256";
608
+ }];
609
+ readonly stateMutability: "view";
610
+ readonly type: "function";
611
+ }, {
612
+ readonly inputs: readonly [{
613
+ readonly internalType: "address";
614
+ readonly name: "minter";
615
+ readonly type: "address";
616
+ }, {
617
+ readonly internalType: "uint256";
618
+ readonly name: "quantity";
619
+ readonly type: "uint256";
620
+ }];
621
+ readonly name: "mintSeaDrop";
622
+ readonly outputs: readonly [];
623
+ readonly stateMutability: "nonpayable";
624
+ readonly type: "function";
625
+ }, {
626
+ readonly inputs: readonly [{
627
+ readonly components: readonly [{
628
+ readonly internalType: "uint256";
629
+ readonly name: "maxSupply";
630
+ readonly type: "uint256";
631
+ }, {
632
+ readonly internalType: "string";
633
+ readonly name: "baseURI";
634
+ readonly type: "string";
635
+ }, {
636
+ readonly internalType: "string";
637
+ readonly name: "contractURI";
638
+ readonly type: "string";
639
+ }, {
640
+ readonly internalType: "address";
641
+ readonly name: "seaDropImpl";
642
+ readonly type: "address";
643
+ }, {
644
+ readonly components: readonly [{
645
+ readonly internalType: "uint80";
646
+ readonly name: "mintPrice";
647
+ readonly type: "uint80";
648
+ }, {
649
+ readonly internalType: "uint48";
650
+ readonly name: "startTime";
651
+ readonly type: "uint48";
652
+ }, {
653
+ readonly internalType: "uint48";
654
+ readonly name: "endTime";
655
+ readonly type: "uint48";
656
+ }, {
657
+ readonly internalType: "uint16";
658
+ readonly name: "maxTotalMintableByWallet";
659
+ readonly type: "uint16";
660
+ }, {
661
+ readonly internalType: "uint16";
662
+ readonly name: "feeBps";
663
+ readonly type: "uint16";
664
+ }, {
665
+ readonly internalType: "bool";
666
+ readonly name: "restrictFeeRecipients";
667
+ readonly type: "bool";
668
+ }];
669
+ readonly internalType: "struct PublicDrop";
670
+ readonly name: "publicDrop";
671
+ readonly type: "tuple";
672
+ }, {
673
+ readonly internalType: "string";
674
+ readonly name: "dropURI";
675
+ readonly type: "string";
676
+ }, {
677
+ readonly components: readonly [{
678
+ readonly internalType: "bytes32";
679
+ readonly name: "merkleRoot";
680
+ readonly type: "bytes32";
681
+ }, {
682
+ readonly internalType: "string[]";
683
+ readonly name: "publicKeyURIs";
684
+ readonly type: "string[]";
685
+ }, {
686
+ readonly internalType: "string";
687
+ readonly name: "allowListURI";
688
+ readonly type: "string";
689
+ }];
690
+ readonly internalType: "struct AllowListData";
691
+ readonly name: "allowListData";
692
+ readonly type: "tuple";
693
+ }, {
694
+ readonly internalType: "address";
695
+ readonly name: "creatorPayoutAddress";
696
+ readonly type: "address";
697
+ }, {
698
+ readonly internalType: "bytes32";
699
+ readonly name: "provenanceHash";
700
+ readonly type: "bytes32";
701
+ }, {
702
+ readonly internalType: "address[]";
703
+ readonly name: "allowedFeeRecipients";
704
+ readonly type: "address[]";
705
+ }, {
706
+ readonly internalType: "address[]";
707
+ readonly name: "disallowedFeeRecipients";
708
+ readonly type: "address[]";
709
+ }, {
710
+ readonly internalType: "address[]";
711
+ readonly name: "allowedPayers";
712
+ readonly type: "address[]";
713
+ }, {
714
+ readonly internalType: "address[]";
715
+ readonly name: "disallowedPayers";
716
+ readonly type: "address[]";
717
+ }, {
718
+ readonly internalType: "address[]";
719
+ readonly name: "tokenGatedAllowedNftTokens";
720
+ readonly type: "address[]";
721
+ }, {
722
+ readonly components: readonly [{
723
+ readonly internalType: "uint80";
724
+ readonly name: "mintPrice";
725
+ readonly type: "uint80";
726
+ }, {
727
+ readonly internalType: "uint16";
728
+ readonly name: "maxTotalMintableByWallet";
729
+ readonly type: "uint16";
730
+ }, {
731
+ readonly internalType: "uint48";
732
+ readonly name: "startTime";
733
+ readonly type: "uint48";
734
+ }, {
735
+ readonly internalType: "uint48";
736
+ readonly name: "endTime";
737
+ readonly type: "uint48";
738
+ }, {
739
+ readonly internalType: "uint8";
740
+ readonly name: "dropStageIndex";
741
+ readonly type: "uint8";
742
+ }, {
743
+ readonly internalType: "uint32";
744
+ readonly name: "maxTokenSupplyForStage";
745
+ readonly type: "uint32";
746
+ }, {
747
+ readonly internalType: "uint16";
748
+ readonly name: "feeBps";
749
+ readonly type: "uint16";
750
+ }, {
751
+ readonly internalType: "bool";
752
+ readonly name: "restrictFeeRecipients";
753
+ readonly type: "bool";
754
+ }];
755
+ readonly internalType: "struct TokenGatedDropStage[]";
756
+ readonly name: "tokenGatedDropStages";
757
+ readonly type: "tuple[]";
758
+ }, {
759
+ readonly internalType: "address[]";
760
+ readonly name: "disallowedTokenGatedAllowedNftTokens";
761
+ readonly type: "address[]";
762
+ }, {
763
+ readonly internalType: "address[]";
764
+ readonly name: "signers";
765
+ readonly type: "address[]";
766
+ }, {
767
+ readonly components: readonly [{
768
+ readonly internalType: "uint80";
769
+ readonly name: "minMintPrice";
770
+ readonly type: "uint80";
771
+ }, {
772
+ readonly internalType: "uint24";
773
+ readonly name: "maxMaxTotalMintableByWallet";
774
+ readonly type: "uint24";
775
+ }, {
776
+ readonly internalType: "uint40";
777
+ readonly name: "minStartTime";
778
+ readonly type: "uint40";
779
+ }, {
780
+ readonly internalType: "uint40";
781
+ readonly name: "maxEndTime";
782
+ readonly type: "uint40";
783
+ }, {
784
+ readonly internalType: "uint40";
785
+ readonly name: "maxMaxTokenSupplyForStage";
786
+ readonly type: "uint40";
787
+ }, {
788
+ readonly internalType: "uint16";
789
+ readonly name: "minFeeBps";
790
+ readonly type: "uint16";
791
+ }, {
792
+ readonly internalType: "uint16";
793
+ readonly name: "maxFeeBps";
794
+ readonly type: "uint16";
795
+ }];
796
+ readonly internalType: "struct SignedMintValidationParams[]";
797
+ readonly name: "signedMintValidationParams";
798
+ readonly type: "tuple[]";
799
+ }, {
800
+ readonly internalType: "address[]";
801
+ readonly name: "disallowedSigners";
802
+ readonly type: "address[]";
803
+ }];
804
+ readonly internalType: "struct ERC721SeaDropStructsErrorsAndEvents.MultiConfigureStruct";
805
+ readonly name: "config";
806
+ readonly type: "tuple";
807
+ }];
808
+ readonly name: "multiConfigure";
809
+ readonly outputs: readonly [];
810
+ readonly stateMutability: "nonpayable";
811
+ readonly type: "function";
812
+ }, {
813
+ readonly inputs: readonly [];
814
+ readonly name: "name";
815
+ readonly outputs: readonly [{
816
+ readonly internalType: "string";
817
+ readonly name: "";
818
+ readonly type: "string";
819
+ }];
820
+ readonly stateMutability: "view";
821
+ readonly type: "function";
822
+ }, {
823
+ readonly inputs: readonly [];
824
+ readonly name: "owner";
825
+ readonly outputs: readonly [{
826
+ readonly internalType: "address";
827
+ readonly name: "";
828
+ readonly type: "address";
829
+ }];
830
+ readonly stateMutability: "view";
831
+ readonly type: "function";
832
+ }, {
833
+ readonly inputs: readonly [{
834
+ readonly internalType: "uint256";
835
+ readonly name: "tokenId";
836
+ readonly type: "uint256";
837
+ }];
838
+ readonly name: "ownerOf";
839
+ readonly outputs: readonly [{
840
+ readonly internalType: "address";
841
+ readonly name: "";
842
+ readonly type: "address";
843
+ }];
844
+ readonly stateMutability: "view";
845
+ readonly type: "function";
846
+ }, {
847
+ readonly inputs: readonly [];
848
+ readonly name: "provenanceHash";
849
+ readonly outputs: readonly [{
850
+ readonly internalType: "bytes32";
851
+ readonly name: "";
852
+ readonly type: "bytes32";
853
+ }];
854
+ readonly stateMutability: "view";
855
+ readonly type: "function";
856
+ }, {
857
+ readonly inputs: readonly [];
858
+ readonly name: "renounceOwnership";
859
+ readonly outputs: readonly [];
860
+ readonly stateMutability: "nonpayable";
861
+ readonly type: "function";
862
+ }, {
863
+ readonly inputs: readonly [];
864
+ readonly name: "royaltyAddress";
865
+ readonly outputs: readonly [{
866
+ readonly internalType: "address";
867
+ readonly name: "";
868
+ readonly type: "address";
869
+ }];
870
+ readonly stateMutability: "view";
871
+ readonly type: "function";
872
+ }, {
873
+ readonly inputs: readonly [];
874
+ readonly name: "royaltyBasisPoints";
875
+ readonly outputs: readonly [{
876
+ readonly internalType: "uint256";
877
+ readonly name: "";
878
+ readonly type: "uint256";
879
+ }];
880
+ readonly stateMutability: "view";
881
+ readonly type: "function";
882
+ }, {
883
+ readonly inputs: readonly [{
884
+ readonly internalType: "uint256";
885
+ readonly name: "";
886
+ readonly type: "uint256";
887
+ }, {
888
+ readonly internalType: "uint256";
889
+ readonly name: "_salePrice";
890
+ readonly type: "uint256";
891
+ }];
892
+ readonly name: "royaltyInfo";
893
+ readonly outputs: readonly [{
894
+ readonly internalType: "address";
895
+ readonly name: "receiver";
896
+ readonly type: "address";
897
+ }, {
898
+ readonly internalType: "uint256";
899
+ readonly name: "royaltyAmount";
900
+ readonly type: "uint256";
901
+ }];
902
+ readonly stateMutability: "view";
903
+ readonly type: "function";
904
+ }, {
905
+ readonly inputs: readonly [{
906
+ readonly internalType: "address";
907
+ readonly name: "from";
908
+ readonly type: "address";
909
+ }, {
910
+ readonly internalType: "address";
911
+ readonly name: "to";
912
+ readonly type: "address";
913
+ }, {
914
+ readonly internalType: "uint256";
915
+ readonly name: "tokenId";
916
+ readonly type: "uint256";
917
+ }];
918
+ readonly name: "safeTransferFrom";
919
+ readonly outputs: readonly [];
920
+ readonly stateMutability: "nonpayable";
921
+ readonly type: "function";
922
+ }, {
923
+ readonly inputs: readonly [{
924
+ readonly internalType: "address";
925
+ readonly name: "from";
926
+ readonly type: "address";
927
+ }, {
928
+ readonly internalType: "address";
929
+ readonly name: "to";
930
+ readonly type: "address";
931
+ }, {
932
+ readonly internalType: "uint256";
933
+ readonly name: "tokenId";
934
+ readonly type: "uint256";
935
+ }, {
936
+ readonly internalType: "bytes";
937
+ readonly name: "_data";
938
+ readonly type: "bytes";
939
+ }];
940
+ readonly name: "safeTransferFrom";
941
+ readonly outputs: readonly [];
942
+ readonly stateMutability: "nonpayable";
943
+ readonly type: "function";
944
+ }, {
945
+ readonly inputs: readonly [{
946
+ readonly internalType: "address";
947
+ readonly name: "operator";
948
+ readonly type: "address";
949
+ }, {
950
+ readonly internalType: "bool";
951
+ readonly name: "approved";
952
+ readonly type: "bool";
953
+ }];
954
+ readonly name: "setApprovalForAll";
955
+ readonly outputs: readonly [];
956
+ readonly stateMutability: "nonpayable";
957
+ readonly type: "function";
958
+ }, {
959
+ readonly inputs: readonly [{
960
+ readonly internalType: "string";
961
+ readonly name: "newBaseURI";
962
+ readonly type: "string";
963
+ }];
964
+ readonly name: "setBaseURI";
965
+ readonly outputs: readonly [];
966
+ readonly stateMutability: "nonpayable";
967
+ readonly type: "function";
968
+ }, {
969
+ readonly inputs: readonly [{
970
+ readonly internalType: "string";
971
+ readonly name: "newContractURI";
972
+ readonly type: "string";
973
+ }];
974
+ readonly name: "setContractURI";
975
+ readonly outputs: readonly [];
976
+ readonly stateMutability: "nonpayable";
977
+ readonly type: "function";
978
+ }, {
979
+ readonly inputs: readonly [{
980
+ readonly internalType: "uint256";
981
+ readonly name: "newMaxSupply";
982
+ readonly type: "uint256";
983
+ }];
984
+ readonly name: "setMaxSupply";
985
+ readonly outputs: readonly [];
986
+ readonly stateMutability: "nonpayable";
987
+ readonly type: "function";
988
+ }, {
989
+ readonly inputs: readonly [{
990
+ readonly internalType: "bytes32";
991
+ readonly name: "newProvenanceHash";
992
+ readonly type: "bytes32";
993
+ }];
994
+ readonly name: "setProvenanceHash";
995
+ readonly outputs: readonly [];
996
+ readonly stateMutability: "nonpayable";
997
+ readonly type: "function";
998
+ }, {
999
+ readonly inputs: readonly [{
1000
+ readonly components: readonly [{
1001
+ readonly internalType: "address";
1002
+ readonly name: "royaltyAddress";
1003
+ readonly type: "address";
1004
+ }, {
1005
+ readonly internalType: "uint96";
1006
+ readonly name: "royaltyBps";
1007
+ readonly type: "uint96";
1008
+ }];
1009
+ readonly internalType: "struct ISeaDropTokenContractMetadata.RoyaltyInfo";
1010
+ readonly name: "newInfo";
1011
+ readonly type: "tuple";
1012
+ }];
1013
+ readonly name: "setRoyaltyInfo";
1014
+ readonly outputs: readonly [];
1015
+ readonly stateMutability: "nonpayable";
1016
+ readonly type: "function";
1017
+ }, {
1018
+ readonly inputs: readonly [{
1019
+ readonly internalType: "address";
1020
+ readonly name: "newValidator";
1021
+ readonly type: "address";
1022
+ }];
1023
+ readonly name: "setTransferValidator";
1024
+ readonly outputs: readonly [];
1025
+ readonly stateMutability: "nonpayable";
1026
+ readonly type: "function";
1027
+ }, {
1028
+ readonly inputs: readonly [{
1029
+ readonly internalType: "bytes4";
1030
+ readonly name: "interfaceId";
1031
+ readonly type: "bytes4";
1032
+ }];
1033
+ readonly name: "supportsInterface";
1034
+ readonly outputs: readonly [{
1035
+ readonly internalType: "bool";
1036
+ readonly name: "";
1037
+ readonly type: "bool";
1038
+ }];
1039
+ readonly stateMutability: "view";
1040
+ readonly type: "function";
1041
+ }, {
1042
+ readonly inputs: readonly [];
1043
+ readonly name: "symbol";
1044
+ readonly outputs: readonly [{
1045
+ readonly internalType: "string";
1046
+ readonly name: "";
1047
+ readonly type: "string";
1048
+ }];
1049
+ readonly stateMutability: "view";
1050
+ readonly type: "function";
1051
+ }, {
1052
+ readonly inputs: readonly [{
1053
+ readonly internalType: "uint256";
1054
+ readonly name: "tokenId";
1055
+ readonly type: "uint256";
1056
+ }];
1057
+ readonly name: "tokenURI";
1058
+ readonly outputs: readonly [{
1059
+ readonly internalType: "string";
1060
+ readonly name: "";
1061
+ readonly type: "string";
1062
+ }];
1063
+ readonly stateMutability: "view";
1064
+ readonly type: "function";
1065
+ }, {
1066
+ readonly inputs: readonly [];
1067
+ readonly name: "totalSupply";
1068
+ readonly outputs: readonly [{
1069
+ readonly internalType: "uint256";
1070
+ readonly name: "";
1071
+ readonly type: "uint256";
1072
+ }];
1073
+ readonly stateMutability: "view";
1074
+ readonly type: "function";
1075
+ }, {
1076
+ readonly inputs: readonly [{
1077
+ readonly internalType: "address";
1078
+ readonly name: "from";
1079
+ readonly type: "address";
1080
+ }, {
1081
+ readonly internalType: "address";
1082
+ readonly name: "to";
1083
+ readonly type: "address";
1084
+ }, {
1085
+ readonly internalType: "uint256";
1086
+ readonly name: "tokenId";
1087
+ readonly type: "uint256";
1088
+ }];
1089
+ readonly name: "transferFrom";
1090
+ readonly outputs: readonly [];
1091
+ readonly stateMutability: "nonpayable";
1092
+ readonly type: "function";
1093
+ }, {
1094
+ readonly inputs: readonly [{
1095
+ readonly internalType: "address";
1096
+ readonly name: "newPotentialOwner";
1097
+ readonly type: "address";
1098
+ }];
1099
+ readonly name: "transferOwnership";
1100
+ readonly outputs: readonly [];
1101
+ readonly stateMutability: "nonpayable";
1102
+ readonly type: "function";
1103
+ }, {
1104
+ readonly inputs: readonly [{
1105
+ readonly internalType: "address";
1106
+ readonly name: "seaDropImpl";
1107
+ readonly type: "address";
1108
+ }, {
1109
+ readonly components: readonly [{
1110
+ readonly internalType: "bytes32";
1111
+ readonly name: "merkleRoot";
1112
+ readonly type: "bytes32";
1113
+ }, {
1114
+ readonly internalType: "string[]";
1115
+ readonly name: "publicKeyURIs";
1116
+ readonly type: "string[]";
1117
+ }, {
1118
+ readonly internalType: "string";
1119
+ readonly name: "allowListURI";
1120
+ readonly type: "string";
1121
+ }];
1122
+ readonly internalType: "struct AllowListData";
1123
+ readonly name: "allowListData";
1124
+ readonly type: "tuple";
1125
+ }];
1126
+ readonly name: "updateAllowList";
1127
+ readonly outputs: readonly [];
1128
+ readonly stateMutability: "nonpayable";
1129
+ readonly type: "function";
1130
+ }, {
1131
+ readonly inputs: readonly [{
1132
+ readonly internalType: "address";
1133
+ readonly name: "seaDropImpl";
1134
+ readonly type: "address";
1135
+ }, {
1136
+ readonly internalType: "address";
1137
+ readonly name: "feeRecipient";
1138
+ readonly type: "address";
1139
+ }, {
1140
+ readonly internalType: "bool";
1141
+ readonly name: "allowed";
1142
+ readonly type: "bool";
1143
+ }];
1144
+ readonly name: "updateAllowedFeeRecipient";
1145
+ readonly outputs: readonly [];
1146
+ readonly stateMutability: "nonpayable";
1147
+ readonly type: "function";
1148
+ }, {
1149
+ readonly inputs: readonly [{
1150
+ readonly internalType: "address[]";
1151
+ readonly name: "allowedSeaDrop";
1152
+ readonly type: "address[]";
1153
+ }];
1154
+ readonly name: "updateAllowedSeaDrop";
1155
+ readonly outputs: readonly [];
1156
+ readonly stateMutability: "nonpayable";
1157
+ readonly type: "function";
1158
+ }, {
1159
+ readonly inputs: readonly [{
1160
+ readonly internalType: "address";
1161
+ readonly name: "seaDropImpl";
1162
+ readonly type: "address";
1163
+ }, {
1164
+ readonly internalType: "address";
1165
+ readonly name: "payoutAddress";
1166
+ readonly type: "address";
1167
+ }];
1168
+ readonly name: "updateCreatorPayoutAddress";
1169
+ readonly outputs: readonly [];
1170
+ readonly stateMutability: "nonpayable";
1171
+ readonly type: "function";
1172
+ }, {
1173
+ readonly inputs: readonly [{
1174
+ readonly internalType: "address";
1175
+ readonly name: "seaDropImpl";
1176
+ readonly type: "address";
1177
+ }, {
1178
+ readonly internalType: "string";
1179
+ readonly name: "dropURI";
1180
+ readonly type: "string";
1181
+ }];
1182
+ readonly name: "updateDropURI";
1183
+ readonly outputs: readonly [];
1184
+ readonly stateMutability: "nonpayable";
1185
+ readonly type: "function";
1186
+ }, {
1187
+ readonly inputs: readonly [{
1188
+ readonly internalType: "address";
1189
+ readonly name: "seaDropImpl";
1190
+ readonly type: "address";
1191
+ }, {
1192
+ readonly internalType: "address";
1193
+ readonly name: "payer";
1194
+ readonly type: "address";
1195
+ }, {
1196
+ readonly internalType: "bool";
1197
+ readonly name: "allowed";
1198
+ readonly type: "bool";
1199
+ }];
1200
+ readonly name: "updatePayer";
1201
+ readonly outputs: readonly [];
1202
+ readonly stateMutability: "nonpayable";
1203
+ readonly type: "function";
1204
+ }, {
1205
+ readonly inputs: readonly [{
1206
+ readonly internalType: "address";
1207
+ readonly name: "seaDropImpl";
1208
+ readonly type: "address";
1209
+ }, {
1210
+ readonly components: readonly [{
1211
+ readonly internalType: "uint80";
1212
+ readonly name: "mintPrice";
1213
+ readonly type: "uint80";
1214
+ }, {
1215
+ readonly internalType: "uint48";
1216
+ readonly name: "startTime";
1217
+ readonly type: "uint48";
1218
+ }, {
1219
+ readonly internalType: "uint48";
1220
+ readonly name: "endTime";
1221
+ readonly type: "uint48";
1222
+ }, {
1223
+ readonly internalType: "uint16";
1224
+ readonly name: "maxTotalMintableByWallet";
1225
+ readonly type: "uint16";
1226
+ }, {
1227
+ readonly internalType: "uint16";
1228
+ readonly name: "feeBps";
1229
+ readonly type: "uint16";
1230
+ }, {
1231
+ readonly internalType: "bool";
1232
+ readonly name: "restrictFeeRecipients";
1233
+ readonly type: "bool";
1234
+ }];
1235
+ readonly internalType: "struct PublicDrop";
1236
+ readonly name: "publicDrop";
1237
+ readonly type: "tuple";
1238
+ }];
1239
+ readonly name: "updatePublicDrop";
1240
+ readonly outputs: readonly [];
1241
+ readonly stateMutability: "nonpayable";
1242
+ readonly type: "function";
1243
+ }, {
1244
+ readonly inputs: readonly [{
1245
+ readonly internalType: "address";
1246
+ readonly name: "seaDropImpl";
1247
+ readonly type: "address";
1248
+ }, {
1249
+ readonly internalType: "address";
1250
+ readonly name: "signer";
1251
+ readonly type: "address";
1252
+ }, {
1253
+ readonly components: readonly [{
1254
+ readonly internalType: "uint80";
1255
+ readonly name: "minMintPrice";
1256
+ readonly type: "uint80";
1257
+ }, {
1258
+ readonly internalType: "uint24";
1259
+ readonly name: "maxMaxTotalMintableByWallet";
1260
+ readonly type: "uint24";
1261
+ }, {
1262
+ readonly internalType: "uint40";
1263
+ readonly name: "minStartTime";
1264
+ readonly type: "uint40";
1265
+ }, {
1266
+ readonly internalType: "uint40";
1267
+ readonly name: "maxEndTime";
1268
+ readonly type: "uint40";
1269
+ }, {
1270
+ readonly internalType: "uint40";
1271
+ readonly name: "maxMaxTokenSupplyForStage";
1272
+ readonly type: "uint40";
1273
+ }, {
1274
+ readonly internalType: "uint16";
1275
+ readonly name: "minFeeBps";
1276
+ readonly type: "uint16";
1277
+ }, {
1278
+ readonly internalType: "uint16";
1279
+ readonly name: "maxFeeBps";
1280
+ readonly type: "uint16";
1281
+ }];
1282
+ readonly internalType: "struct SignedMintValidationParams";
1283
+ readonly name: "signedMintValidationParams";
1284
+ readonly type: "tuple";
1285
+ }];
1286
+ readonly name: "updateSignedMintValidationParams";
1287
+ readonly outputs: readonly [];
1288
+ readonly stateMutability: "nonpayable";
1289
+ readonly type: "function";
1290
+ }, {
1291
+ readonly inputs: readonly [{
1292
+ readonly internalType: "address";
1293
+ readonly name: "seaDropImpl";
1294
+ readonly type: "address";
1295
+ }, {
1296
+ readonly internalType: "address";
1297
+ readonly name: "allowedNftToken";
1298
+ readonly type: "address";
1299
+ }, {
1300
+ readonly components: readonly [{
1301
+ readonly internalType: "uint80";
1302
+ readonly name: "mintPrice";
1303
+ readonly type: "uint80";
1304
+ }, {
1305
+ readonly internalType: "uint16";
1306
+ readonly name: "maxTotalMintableByWallet";
1307
+ readonly type: "uint16";
1308
+ }, {
1309
+ readonly internalType: "uint48";
1310
+ readonly name: "startTime";
1311
+ readonly type: "uint48";
1312
+ }, {
1313
+ readonly internalType: "uint48";
1314
+ readonly name: "endTime";
1315
+ readonly type: "uint48";
1316
+ }, {
1317
+ readonly internalType: "uint8";
1318
+ readonly name: "dropStageIndex";
1319
+ readonly type: "uint8";
1320
+ }, {
1321
+ readonly internalType: "uint32";
1322
+ readonly name: "maxTokenSupplyForStage";
1323
+ readonly type: "uint32";
1324
+ }, {
1325
+ readonly internalType: "uint16";
1326
+ readonly name: "feeBps";
1327
+ readonly type: "uint16";
1328
+ }, {
1329
+ readonly internalType: "bool";
1330
+ readonly name: "restrictFeeRecipients";
1331
+ readonly type: "bool";
1332
+ }];
1333
+ readonly internalType: "struct TokenGatedDropStage";
1334
+ readonly name: "dropStage";
1335
+ readonly type: "tuple";
1336
+ }];
1337
+ readonly name: "updateTokenGatedDrop";
1338
+ readonly outputs: readonly [];
1339
+ readonly stateMutability: "nonpayable";
1340
+ readonly type: "function";
1341
+ }];
1342
+ /**
1343
+ * Type-safe ABI for ERC721SeaDropCloneable_json
1344
+ */
1345
+ export type ERC721SeaDropCloneable_jsonAbi = typeof ERC721SeaDropCloneable_jsonAbi;
1346
+ /**
1347
+ * Contract instance type for ERC721SeaDropCloneable_json
1348
+ */
1349
+ export type ERC721SeaDropCloneable_jsonContract = any;
1350
+ /**
1351
+ * ERC721SeaDropCloneable_json Contract Class
1352
+ *
1353
+ * Provides a class-based API similar to TypeChain for interacting with the contract.
1354
+ *
1355
+ * @example
1356
+ * ```typescript
1357
+ * import { createPublicClient, createWalletClient, http } from 'viem';
1358
+ * import { mainnet } from 'viem/chains';
1359
+ * import { ERC721SeaDropCloneable_json } from 'ERC721SeaDropCloneable_json';
1360
+ *
1361
+ * const publicClient = createPublicClient({ chain: mainnet, transport: http() });
1362
+ * const walletClient = createWalletClient({ chain: mainnet, transport: http() });
1363
+ *
1364
+ * const contract = new ERC721SeaDropCloneable_json('0x...', { publicClient, walletClient });
1365
+ *
1366
+ * // Read functions
1367
+ * const result = await contract.balanceOf('0x...');
1368
+ *
1369
+ * // Write functions
1370
+ * const hash = await contract.transfer('0x...', 1000n);
1371
+ *
1372
+ * // Simulate transactions (dry-run)
1373
+ * const simulation = await contract.simulate.transfer('0x...', 1000n);
1374
+ * console.log('Gas estimate:', simulation.request.gas);
1375
+ *
1376
+ * // Watch events
1377
+ * const unwatch = contract.watch.Transfer((event) => {
1378
+ * console.log('Transfer event:', event);
1379
+ * });
1380
+ * ```
1381
+ */
1382
+ export declare class ERC721SeaDropCloneable_json {
1383
+ private contract;
1384
+ private contractAddress;
1385
+ private publicClient;
1386
+ constructor(address: Address, clients: {
1387
+ publicClient: PublicClient;
1388
+ walletClient?: WalletClient;
1389
+ });
1390
+ /**
1391
+ * Get the contract address
1392
+ */
1393
+ get address(): Address;
1394
+ /**
1395
+ * Get the underlying viem contract instance
1396
+ */
1397
+ getContract(): ERC721SeaDropCloneable_jsonContract;
1398
+ /**
1399
+ * balanceOf
1400
+ * view
1401
+ */
1402
+ balanceOf(owner: `0x${string}`): Promise<bigint>;
1403
+ /**
1404
+ * baseURI
1405
+ * view
1406
+ */
1407
+ baseURI(): Promise<string>;
1408
+ /**
1409
+ * contractURI
1410
+ * view
1411
+ */
1412
+ contractURI(): Promise<string>;
1413
+ /**
1414
+ * getApproved
1415
+ * view
1416
+ */
1417
+ getApproved(tokenId: bigint): Promise<`0x${string}`>;
1418
+ /**
1419
+ * getMintStats
1420
+ * view
1421
+ */
1422
+ getMintStats(minter: `0x${string}`): Promise<[bigint, bigint, bigint]>;
1423
+ /**
1424
+ * getTransferValidationFunction
1425
+ * pure
1426
+ */
1427
+ getTransferValidationFunction(): Promise<[`0x${string}`, boolean]>;
1428
+ /**
1429
+ * getTransferValidator
1430
+ * view
1431
+ */
1432
+ getTransferValidator(): Promise<`0x${string}`>;
1433
+ /**
1434
+ * isApprovedForAll
1435
+ * view
1436
+ */
1437
+ isApprovedForAll(owner: `0x${string}`, operator: `0x${string}`): Promise<boolean>;
1438
+ /**
1439
+ * maxSupply
1440
+ * view
1441
+ */
1442
+ maxSupply(): Promise<bigint>;
1443
+ /**
1444
+ * name
1445
+ * view
1446
+ */
1447
+ name(): Promise<string>;
1448
+ /**
1449
+ * owner
1450
+ * view
1451
+ */
1452
+ owner(): Promise<`0x${string}`>;
1453
+ /**
1454
+ * ownerOf
1455
+ * view
1456
+ */
1457
+ ownerOf(tokenId: bigint): Promise<`0x${string}`>;
1458
+ /**
1459
+ * provenanceHash
1460
+ * view
1461
+ */
1462
+ provenanceHash(): Promise<`0x${string}`>;
1463
+ /**
1464
+ * royaltyAddress
1465
+ * view
1466
+ */
1467
+ royaltyAddress(): Promise<`0x${string}`>;
1468
+ /**
1469
+ * royaltyBasisPoints
1470
+ * view
1471
+ */
1472
+ royaltyBasisPoints(): Promise<bigint>;
1473
+ /**
1474
+ * royaltyInfo
1475
+ * view
1476
+ */
1477
+ royaltyInfo(arg0: bigint, _salePrice: bigint): Promise<[`0x${string}`, bigint]>;
1478
+ /**
1479
+ * supportsInterface
1480
+ * view
1481
+ */
1482
+ supportsInterface(interfaceId: `0x${string}`): Promise<boolean>;
1483
+ /**
1484
+ * symbol
1485
+ * view
1486
+ */
1487
+ symbol(): Promise<string>;
1488
+ /**
1489
+ * tokenURI
1490
+ * view
1491
+ */
1492
+ tokenURI(tokenId: bigint): Promise<string>;
1493
+ /**
1494
+ * totalSupply
1495
+ * view
1496
+ */
1497
+ totalSupply(): Promise<bigint>;
1498
+ /**
1499
+ * acceptOwnership
1500
+ * nonpayable
1501
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1502
+ */
1503
+ acceptOwnership(options?: {
1504
+ accessList?: import('viem').AccessList;
1505
+ authorizationList?: import('viem').AuthorizationList;
1506
+ chain?: import('viem').Chain | null;
1507
+ dataSuffix?: `0x${string}`;
1508
+ gas?: bigint;
1509
+ gasPrice?: bigint;
1510
+ maxFeePerGas?: bigint;
1511
+ maxPriorityFeePerGas?: bigint;
1512
+ nonce?: number;
1513
+ value?: bigint;
1514
+ }): Promise<`0x${string}`>;
1515
+ /**
1516
+ * approve
1517
+ * nonpayable
1518
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1519
+ */
1520
+ approve(to: `0x${string}`, tokenId: bigint, options?: {
1521
+ accessList?: import('viem').AccessList;
1522
+ authorizationList?: import('viem').AuthorizationList;
1523
+ chain?: import('viem').Chain | null;
1524
+ dataSuffix?: `0x${string}`;
1525
+ gas?: bigint;
1526
+ gasPrice?: bigint;
1527
+ maxFeePerGas?: bigint;
1528
+ maxPriorityFeePerGas?: bigint;
1529
+ nonce?: number;
1530
+ value?: bigint;
1531
+ }): Promise<`0x${string}`>;
1532
+ /**
1533
+ * burn
1534
+ * nonpayable
1535
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1536
+ */
1537
+ burn(tokenId: bigint, options?: {
1538
+ accessList?: import('viem').AccessList;
1539
+ authorizationList?: import('viem').AuthorizationList;
1540
+ chain?: import('viem').Chain | null;
1541
+ dataSuffix?: `0x${string}`;
1542
+ gas?: bigint;
1543
+ gasPrice?: bigint;
1544
+ maxFeePerGas?: bigint;
1545
+ maxPriorityFeePerGas?: bigint;
1546
+ nonce?: number;
1547
+ value?: bigint;
1548
+ }): Promise<`0x${string}`>;
1549
+ /**
1550
+ * cancelOwnershipTransfer
1551
+ * nonpayable
1552
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1553
+ */
1554
+ cancelOwnershipTransfer(options?: {
1555
+ accessList?: import('viem').AccessList;
1556
+ authorizationList?: import('viem').AuthorizationList;
1557
+ chain?: import('viem').Chain | null;
1558
+ dataSuffix?: `0x${string}`;
1559
+ gas?: bigint;
1560
+ gasPrice?: bigint;
1561
+ maxFeePerGas?: bigint;
1562
+ maxPriorityFeePerGas?: bigint;
1563
+ nonce?: number;
1564
+ value?: bigint;
1565
+ }): Promise<`0x${string}`>;
1566
+ /**
1567
+ * emitBatchMetadataUpdate
1568
+ * nonpayable
1569
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1570
+ */
1571
+ emitBatchMetadataUpdate(fromTokenId: bigint, toTokenId: bigint, options?: {
1572
+ accessList?: import('viem').AccessList;
1573
+ authorizationList?: import('viem').AuthorizationList;
1574
+ chain?: import('viem').Chain | null;
1575
+ dataSuffix?: `0x${string}`;
1576
+ gas?: bigint;
1577
+ gasPrice?: bigint;
1578
+ maxFeePerGas?: bigint;
1579
+ maxPriorityFeePerGas?: bigint;
1580
+ nonce?: number;
1581
+ value?: bigint;
1582
+ }): Promise<`0x${string}`>;
1583
+ /**
1584
+ * initialize
1585
+ * nonpayable
1586
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1587
+ */
1588
+ initialize(__name: string, __symbol: string, allowedSeaDrop: `0x${string}`[], initialOwner: `0x${string}`, options?: {
1589
+ accessList?: import('viem').AccessList;
1590
+ authorizationList?: import('viem').AuthorizationList;
1591
+ chain?: import('viem').Chain | null;
1592
+ dataSuffix?: `0x${string}`;
1593
+ gas?: bigint;
1594
+ gasPrice?: bigint;
1595
+ maxFeePerGas?: bigint;
1596
+ maxPriorityFeePerGas?: bigint;
1597
+ nonce?: number;
1598
+ value?: bigint;
1599
+ }): Promise<`0x${string}`>;
1600
+ /**
1601
+ * mintSeaDrop
1602
+ * nonpayable
1603
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1604
+ */
1605
+ mintSeaDrop(minter: `0x${string}`, quantity: bigint, options?: {
1606
+ accessList?: import('viem').AccessList;
1607
+ authorizationList?: import('viem').AuthorizationList;
1608
+ chain?: import('viem').Chain | null;
1609
+ dataSuffix?: `0x${string}`;
1610
+ gas?: bigint;
1611
+ gasPrice?: bigint;
1612
+ maxFeePerGas?: bigint;
1613
+ maxPriorityFeePerGas?: bigint;
1614
+ nonce?: number;
1615
+ value?: bigint;
1616
+ }): Promise<`0x${string}`>;
1617
+ /**
1618
+ * multiConfigure
1619
+ * nonpayable
1620
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1621
+ */
1622
+ multiConfigure(config: ERC721SeaDropStructsErrorsAndEvents_MultiConfigureStruct, options?: {
1623
+ accessList?: import('viem').AccessList;
1624
+ authorizationList?: import('viem').AuthorizationList;
1625
+ chain?: import('viem').Chain | null;
1626
+ dataSuffix?: `0x${string}`;
1627
+ gas?: bigint;
1628
+ gasPrice?: bigint;
1629
+ maxFeePerGas?: bigint;
1630
+ maxPriorityFeePerGas?: bigint;
1631
+ nonce?: number;
1632
+ value?: bigint;
1633
+ }): Promise<`0x${string}`>;
1634
+ /**
1635
+ * renounceOwnership
1636
+ * nonpayable
1637
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1638
+ */
1639
+ renounceOwnership(options?: {
1640
+ accessList?: import('viem').AccessList;
1641
+ authorizationList?: import('viem').AuthorizationList;
1642
+ chain?: import('viem').Chain | null;
1643
+ dataSuffix?: `0x${string}`;
1644
+ gas?: bigint;
1645
+ gasPrice?: bigint;
1646
+ maxFeePerGas?: bigint;
1647
+ maxPriorityFeePerGas?: bigint;
1648
+ nonce?: number;
1649
+ value?: bigint;
1650
+ }): Promise<`0x${string}`>;
1651
+ safeTransferFrom(from: `0x${string}`, to: `0x${string}`, tokenId: bigint, options?: {
1652
+ accessList?: import('viem').AccessList;
1653
+ authorizationList?: import('viem').AuthorizationList;
1654
+ chain?: import('viem').Chain | null;
1655
+ dataSuffix?: `0x${string}`;
1656
+ gas?: bigint;
1657
+ gasPrice?: bigint;
1658
+ maxFeePerGas?: bigint;
1659
+ maxPriorityFeePerGas?: bigint;
1660
+ nonce?: number;
1661
+ value?: bigint;
1662
+ }): Promise<`0x${string}`>;
1663
+ safeTransferFrom(from: `0x${string}`, to: `0x${string}`, tokenId: bigint, _data: `0x${string}`, options?: {
1664
+ accessList?: import('viem').AccessList;
1665
+ authorizationList?: import('viem').AuthorizationList;
1666
+ chain?: import('viem').Chain | null;
1667
+ dataSuffix?: `0x${string}`;
1668
+ gas?: bigint;
1669
+ gasPrice?: bigint;
1670
+ maxFeePerGas?: bigint;
1671
+ maxPriorityFeePerGas?: bigint;
1672
+ nonce?: number;
1673
+ value?: bigint;
1674
+ }): Promise<`0x${string}`>;
1675
+ /**
1676
+ * setApprovalForAll
1677
+ * nonpayable
1678
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1679
+ */
1680
+ setApprovalForAll(operator: `0x${string}`, approved: boolean, options?: {
1681
+ accessList?: import('viem').AccessList;
1682
+ authorizationList?: import('viem').AuthorizationList;
1683
+ chain?: import('viem').Chain | null;
1684
+ dataSuffix?: `0x${string}`;
1685
+ gas?: bigint;
1686
+ gasPrice?: bigint;
1687
+ maxFeePerGas?: bigint;
1688
+ maxPriorityFeePerGas?: bigint;
1689
+ nonce?: number;
1690
+ value?: bigint;
1691
+ }): Promise<`0x${string}`>;
1692
+ /**
1693
+ * setBaseURI
1694
+ * nonpayable
1695
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1696
+ */
1697
+ setBaseURI(newBaseURI: string, options?: {
1698
+ accessList?: import('viem').AccessList;
1699
+ authorizationList?: import('viem').AuthorizationList;
1700
+ chain?: import('viem').Chain | null;
1701
+ dataSuffix?: `0x${string}`;
1702
+ gas?: bigint;
1703
+ gasPrice?: bigint;
1704
+ maxFeePerGas?: bigint;
1705
+ maxPriorityFeePerGas?: bigint;
1706
+ nonce?: number;
1707
+ value?: bigint;
1708
+ }): Promise<`0x${string}`>;
1709
+ /**
1710
+ * setContractURI
1711
+ * nonpayable
1712
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1713
+ */
1714
+ setContractURI(newContractURI: string, options?: {
1715
+ accessList?: import('viem').AccessList;
1716
+ authorizationList?: import('viem').AuthorizationList;
1717
+ chain?: import('viem').Chain | null;
1718
+ dataSuffix?: `0x${string}`;
1719
+ gas?: bigint;
1720
+ gasPrice?: bigint;
1721
+ maxFeePerGas?: bigint;
1722
+ maxPriorityFeePerGas?: bigint;
1723
+ nonce?: number;
1724
+ value?: bigint;
1725
+ }): Promise<`0x${string}`>;
1726
+ /**
1727
+ * setMaxSupply
1728
+ * nonpayable
1729
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1730
+ */
1731
+ setMaxSupply(newMaxSupply: bigint, options?: {
1732
+ accessList?: import('viem').AccessList;
1733
+ authorizationList?: import('viem').AuthorizationList;
1734
+ chain?: import('viem').Chain | null;
1735
+ dataSuffix?: `0x${string}`;
1736
+ gas?: bigint;
1737
+ gasPrice?: bigint;
1738
+ maxFeePerGas?: bigint;
1739
+ maxPriorityFeePerGas?: bigint;
1740
+ nonce?: number;
1741
+ value?: bigint;
1742
+ }): Promise<`0x${string}`>;
1743
+ /**
1744
+ * setProvenanceHash
1745
+ * nonpayable
1746
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1747
+ */
1748
+ setProvenanceHash(newProvenanceHash: `0x${string}`, options?: {
1749
+ accessList?: import('viem').AccessList;
1750
+ authorizationList?: import('viem').AuthorizationList;
1751
+ chain?: import('viem').Chain | null;
1752
+ dataSuffix?: `0x${string}`;
1753
+ gas?: bigint;
1754
+ gasPrice?: bigint;
1755
+ maxFeePerGas?: bigint;
1756
+ maxPriorityFeePerGas?: bigint;
1757
+ nonce?: number;
1758
+ value?: bigint;
1759
+ }): Promise<`0x${string}`>;
1760
+ /**
1761
+ * setRoyaltyInfo
1762
+ * nonpayable
1763
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1764
+ */
1765
+ setRoyaltyInfo(newInfo: ISeaDropTokenContractMetadata_RoyaltyInfo, options?: {
1766
+ accessList?: import('viem').AccessList;
1767
+ authorizationList?: import('viem').AuthorizationList;
1768
+ chain?: import('viem').Chain | null;
1769
+ dataSuffix?: `0x${string}`;
1770
+ gas?: bigint;
1771
+ gasPrice?: bigint;
1772
+ maxFeePerGas?: bigint;
1773
+ maxPriorityFeePerGas?: bigint;
1774
+ nonce?: number;
1775
+ value?: bigint;
1776
+ }): Promise<`0x${string}`>;
1777
+ /**
1778
+ * setTransferValidator
1779
+ * nonpayable
1780
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1781
+ */
1782
+ setTransferValidator(newValidator: `0x${string}`, options?: {
1783
+ accessList?: import('viem').AccessList;
1784
+ authorizationList?: import('viem').AuthorizationList;
1785
+ chain?: import('viem').Chain | null;
1786
+ dataSuffix?: `0x${string}`;
1787
+ gas?: bigint;
1788
+ gasPrice?: bigint;
1789
+ maxFeePerGas?: bigint;
1790
+ maxPriorityFeePerGas?: bigint;
1791
+ nonce?: number;
1792
+ value?: bigint;
1793
+ }): Promise<`0x${string}`>;
1794
+ /**
1795
+ * transferFrom
1796
+ * nonpayable
1797
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1798
+ */
1799
+ transferFrom(from: `0x${string}`, to: `0x${string}`, tokenId: bigint, options?: {
1800
+ accessList?: import('viem').AccessList;
1801
+ authorizationList?: import('viem').AuthorizationList;
1802
+ chain?: import('viem').Chain | null;
1803
+ dataSuffix?: `0x${string}`;
1804
+ gas?: bigint;
1805
+ gasPrice?: bigint;
1806
+ maxFeePerGas?: bigint;
1807
+ maxPriorityFeePerGas?: bigint;
1808
+ nonce?: number;
1809
+ value?: bigint;
1810
+ }): Promise<`0x${string}`>;
1811
+ /**
1812
+ * transferOwnership
1813
+ * nonpayable
1814
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1815
+ */
1816
+ transferOwnership(newPotentialOwner: `0x${string}`, options?: {
1817
+ accessList?: import('viem').AccessList;
1818
+ authorizationList?: import('viem').AuthorizationList;
1819
+ chain?: import('viem').Chain | null;
1820
+ dataSuffix?: `0x${string}`;
1821
+ gas?: bigint;
1822
+ gasPrice?: bigint;
1823
+ maxFeePerGas?: bigint;
1824
+ maxPriorityFeePerGas?: bigint;
1825
+ nonce?: number;
1826
+ value?: bigint;
1827
+ }): Promise<`0x${string}`>;
1828
+ /**
1829
+ * updateAllowList
1830
+ * nonpayable
1831
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1832
+ */
1833
+ updateAllowList(seaDropImpl: `0x${string}`, allowListData: AllowListData, options?: {
1834
+ accessList?: import('viem').AccessList;
1835
+ authorizationList?: import('viem').AuthorizationList;
1836
+ chain?: import('viem').Chain | null;
1837
+ dataSuffix?: `0x${string}`;
1838
+ gas?: bigint;
1839
+ gasPrice?: bigint;
1840
+ maxFeePerGas?: bigint;
1841
+ maxPriorityFeePerGas?: bigint;
1842
+ nonce?: number;
1843
+ value?: bigint;
1844
+ }): Promise<`0x${string}`>;
1845
+ /**
1846
+ * updateAllowedFeeRecipient
1847
+ * nonpayable
1848
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1849
+ */
1850
+ updateAllowedFeeRecipient(seaDropImpl: `0x${string}`, feeRecipient: `0x${string}`, allowed: boolean, options?: {
1851
+ accessList?: import('viem').AccessList;
1852
+ authorizationList?: import('viem').AuthorizationList;
1853
+ chain?: import('viem').Chain | null;
1854
+ dataSuffix?: `0x${string}`;
1855
+ gas?: bigint;
1856
+ gasPrice?: bigint;
1857
+ maxFeePerGas?: bigint;
1858
+ maxPriorityFeePerGas?: bigint;
1859
+ nonce?: number;
1860
+ value?: bigint;
1861
+ }): Promise<`0x${string}`>;
1862
+ /**
1863
+ * updateAllowedSeaDrop
1864
+ * nonpayable
1865
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1866
+ */
1867
+ updateAllowedSeaDrop(allowedSeaDrop: `0x${string}`[], options?: {
1868
+ accessList?: import('viem').AccessList;
1869
+ authorizationList?: import('viem').AuthorizationList;
1870
+ chain?: import('viem').Chain | null;
1871
+ dataSuffix?: `0x${string}`;
1872
+ gas?: bigint;
1873
+ gasPrice?: bigint;
1874
+ maxFeePerGas?: bigint;
1875
+ maxPriorityFeePerGas?: bigint;
1876
+ nonce?: number;
1877
+ value?: bigint;
1878
+ }): Promise<`0x${string}`>;
1879
+ /**
1880
+ * updateCreatorPayoutAddress
1881
+ * nonpayable
1882
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1883
+ */
1884
+ updateCreatorPayoutAddress(seaDropImpl: `0x${string}`, payoutAddress: `0x${string}`, options?: {
1885
+ accessList?: import('viem').AccessList;
1886
+ authorizationList?: import('viem').AuthorizationList;
1887
+ chain?: import('viem').Chain | null;
1888
+ dataSuffix?: `0x${string}`;
1889
+ gas?: bigint;
1890
+ gasPrice?: bigint;
1891
+ maxFeePerGas?: bigint;
1892
+ maxPriorityFeePerGas?: bigint;
1893
+ nonce?: number;
1894
+ value?: bigint;
1895
+ }): Promise<`0x${string}`>;
1896
+ /**
1897
+ * updateDropURI
1898
+ * nonpayable
1899
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1900
+ */
1901
+ updateDropURI(seaDropImpl: `0x${string}`, dropURI: string, options?: {
1902
+ accessList?: import('viem').AccessList;
1903
+ authorizationList?: import('viem').AuthorizationList;
1904
+ chain?: import('viem').Chain | null;
1905
+ dataSuffix?: `0x${string}`;
1906
+ gas?: bigint;
1907
+ gasPrice?: bigint;
1908
+ maxFeePerGas?: bigint;
1909
+ maxPriorityFeePerGas?: bigint;
1910
+ nonce?: number;
1911
+ value?: bigint;
1912
+ }): Promise<`0x${string}`>;
1913
+ /**
1914
+ * updatePayer
1915
+ * nonpayable
1916
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1917
+ */
1918
+ updatePayer(seaDropImpl: `0x${string}`, payer: `0x${string}`, allowed: boolean, options?: {
1919
+ accessList?: import('viem').AccessList;
1920
+ authorizationList?: import('viem').AuthorizationList;
1921
+ chain?: import('viem').Chain | null;
1922
+ dataSuffix?: `0x${string}`;
1923
+ gas?: bigint;
1924
+ gasPrice?: bigint;
1925
+ maxFeePerGas?: bigint;
1926
+ maxPriorityFeePerGas?: bigint;
1927
+ nonce?: number;
1928
+ value?: bigint;
1929
+ }): Promise<`0x${string}`>;
1930
+ /**
1931
+ * updatePublicDrop
1932
+ * nonpayable
1933
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1934
+ */
1935
+ updatePublicDrop(seaDropImpl: `0x${string}`, publicDrop: PublicDrop, options?: {
1936
+ accessList?: import('viem').AccessList;
1937
+ authorizationList?: import('viem').AuthorizationList;
1938
+ chain?: import('viem').Chain | null;
1939
+ dataSuffix?: `0x${string}`;
1940
+ gas?: bigint;
1941
+ gasPrice?: bigint;
1942
+ maxFeePerGas?: bigint;
1943
+ maxPriorityFeePerGas?: bigint;
1944
+ nonce?: number;
1945
+ value?: bigint;
1946
+ }): Promise<`0x${string}`>;
1947
+ /**
1948
+ * updateSignedMintValidationParams
1949
+ * nonpayable
1950
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1951
+ */
1952
+ updateSignedMintValidationParams(seaDropImpl: `0x${string}`, signer: `0x${string}`, signedMintValidationParams: SignedMintValidationParams, options?: {
1953
+ accessList?: import('viem').AccessList;
1954
+ authorizationList?: import('viem').AuthorizationList;
1955
+ chain?: import('viem').Chain | null;
1956
+ dataSuffix?: `0x${string}`;
1957
+ gas?: bigint;
1958
+ gasPrice?: bigint;
1959
+ maxFeePerGas?: bigint;
1960
+ maxPriorityFeePerGas?: bigint;
1961
+ nonce?: number;
1962
+ value?: bigint;
1963
+ }): Promise<`0x${string}`>;
1964
+ /**
1965
+ * updateTokenGatedDrop
1966
+ * nonpayable
1967
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1968
+ */
1969
+ updateTokenGatedDrop(seaDropImpl: `0x${string}`, allowedNftToken: `0x${string}`, dropStage: TokenGatedDropStage, options?: {
1970
+ accessList?: import('viem').AccessList;
1971
+ authorizationList?: import('viem').AuthorizationList;
1972
+ chain?: import('viem').Chain | null;
1973
+ dataSuffix?: `0x${string}`;
1974
+ gas?: bigint;
1975
+ gasPrice?: bigint;
1976
+ maxFeePerGas?: bigint;
1977
+ maxPriorityFeePerGas?: bigint;
1978
+ nonce?: number;
1979
+ value?: bigint;
1980
+ }): Promise<`0x${string}`>;
1981
+ /**
1982
+ * Simulate contract write operations (dry-run without sending transaction)
1983
+ *
1984
+ * @example
1985
+ * const result = await contract.simulate.transfer('0x...', 1000n);
1986
+ * console.log('Gas estimate:', result.request.gas);
1987
+ * console.log('Would succeed:', result.result);
1988
+ */
1989
+ get simulate(): {
1990
+ /**
1991
+ * Simulate acceptOwnership
1992
+ * Returns gas estimate and result without sending transaction
1993
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
1994
+ */
1995
+ acceptOwnership(options?: {
1996
+ accessList?: import("viem").AccessList;
1997
+ authorizationList?: import("viem").AuthorizationList;
1998
+ chain?: import("viem").Chain | null;
1999
+ dataSuffix?: `0x${string}`;
2000
+ gas?: bigint;
2001
+ gasPrice?: bigint;
2002
+ maxFeePerGas?: bigint;
2003
+ maxPriorityFeePerGas?: bigint;
2004
+ nonce?: number;
2005
+ value?: bigint;
2006
+ }): Promise<void>;
2007
+ /**
2008
+ * Simulate approve
2009
+ * Returns gas estimate and result without sending transaction
2010
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2011
+ */
2012
+ approve(to: `0x${string}`, tokenId: bigint, options?: {
2013
+ accessList?: import("viem").AccessList;
2014
+ authorizationList?: import("viem").AuthorizationList;
2015
+ chain?: import("viem").Chain | null;
2016
+ dataSuffix?: `0x${string}`;
2017
+ gas?: bigint;
2018
+ gasPrice?: bigint;
2019
+ maxFeePerGas?: bigint;
2020
+ maxPriorityFeePerGas?: bigint;
2021
+ nonce?: number;
2022
+ value?: bigint;
2023
+ }): Promise<void>;
2024
+ /**
2025
+ * Simulate burn
2026
+ * Returns gas estimate and result without sending transaction
2027
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2028
+ */
2029
+ burn(tokenId: bigint, options?: {
2030
+ accessList?: import("viem").AccessList;
2031
+ authorizationList?: import("viem").AuthorizationList;
2032
+ chain?: import("viem").Chain | null;
2033
+ dataSuffix?: `0x${string}`;
2034
+ gas?: bigint;
2035
+ gasPrice?: bigint;
2036
+ maxFeePerGas?: bigint;
2037
+ maxPriorityFeePerGas?: bigint;
2038
+ nonce?: number;
2039
+ value?: bigint;
2040
+ }): Promise<void>;
2041
+ /**
2042
+ * Simulate cancelOwnershipTransfer
2043
+ * Returns gas estimate and result without sending transaction
2044
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2045
+ */
2046
+ cancelOwnershipTransfer(options?: {
2047
+ accessList?: import("viem").AccessList;
2048
+ authorizationList?: import("viem").AuthorizationList;
2049
+ chain?: import("viem").Chain | null;
2050
+ dataSuffix?: `0x${string}`;
2051
+ gas?: bigint;
2052
+ gasPrice?: bigint;
2053
+ maxFeePerGas?: bigint;
2054
+ maxPriorityFeePerGas?: bigint;
2055
+ nonce?: number;
2056
+ value?: bigint;
2057
+ }): Promise<void>;
2058
+ /**
2059
+ * Simulate emitBatchMetadataUpdate
2060
+ * Returns gas estimate and result without sending transaction
2061
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2062
+ */
2063
+ emitBatchMetadataUpdate(fromTokenId: bigint, toTokenId: bigint, options?: {
2064
+ accessList?: import("viem").AccessList;
2065
+ authorizationList?: import("viem").AuthorizationList;
2066
+ chain?: import("viem").Chain | null;
2067
+ dataSuffix?: `0x${string}`;
2068
+ gas?: bigint;
2069
+ gasPrice?: bigint;
2070
+ maxFeePerGas?: bigint;
2071
+ maxPriorityFeePerGas?: bigint;
2072
+ nonce?: number;
2073
+ value?: bigint;
2074
+ }): Promise<void>;
2075
+ /**
2076
+ * Simulate initialize
2077
+ * Returns gas estimate and result without sending transaction
2078
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2079
+ */
2080
+ initialize(__name: string, __symbol: string, allowedSeaDrop: `0x${string}`[], initialOwner: `0x${string}`, options?: {
2081
+ accessList?: import("viem").AccessList;
2082
+ authorizationList?: import("viem").AuthorizationList;
2083
+ chain?: import("viem").Chain | null;
2084
+ dataSuffix?: `0x${string}`;
2085
+ gas?: bigint;
2086
+ gasPrice?: bigint;
2087
+ maxFeePerGas?: bigint;
2088
+ maxPriorityFeePerGas?: bigint;
2089
+ nonce?: number;
2090
+ value?: bigint;
2091
+ }): Promise<void>;
2092
+ /**
2093
+ * Simulate mintSeaDrop
2094
+ * Returns gas estimate and result without sending transaction
2095
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2096
+ */
2097
+ mintSeaDrop(minter: `0x${string}`, quantity: bigint, options?: {
2098
+ accessList?: import("viem").AccessList;
2099
+ authorizationList?: import("viem").AuthorizationList;
2100
+ chain?: import("viem").Chain | null;
2101
+ dataSuffix?: `0x${string}`;
2102
+ gas?: bigint;
2103
+ gasPrice?: bigint;
2104
+ maxFeePerGas?: bigint;
2105
+ maxPriorityFeePerGas?: bigint;
2106
+ nonce?: number;
2107
+ value?: bigint;
2108
+ }): Promise<void>;
2109
+ /**
2110
+ * Simulate multiConfigure
2111
+ * Returns gas estimate and result without sending transaction
2112
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2113
+ */
2114
+ multiConfigure(config: ERC721SeaDropStructsErrorsAndEvents_MultiConfigureStruct, options?: {
2115
+ accessList?: import("viem").AccessList;
2116
+ authorizationList?: import("viem").AuthorizationList;
2117
+ chain?: import("viem").Chain | null;
2118
+ dataSuffix?: `0x${string}`;
2119
+ gas?: bigint;
2120
+ gasPrice?: bigint;
2121
+ maxFeePerGas?: bigint;
2122
+ maxPriorityFeePerGas?: bigint;
2123
+ nonce?: number;
2124
+ value?: bigint;
2125
+ }): Promise<void>;
2126
+ /**
2127
+ * Simulate renounceOwnership
2128
+ * Returns gas estimate and result without sending transaction
2129
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2130
+ */
2131
+ renounceOwnership(options?: {
2132
+ accessList?: import("viem").AccessList;
2133
+ authorizationList?: import("viem").AuthorizationList;
2134
+ chain?: import("viem").Chain | null;
2135
+ dataSuffix?: `0x${string}`;
2136
+ gas?: bigint;
2137
+ gasPrice?: bigint;
2138
+ maxFeePerGas?: bigint;
2139
+ maxPriorityFeePerGas?: bigint;
2140
+ nonce?: number;
2141
+ value?: bigint;
2142
+ }): Promise<void>;
2143
+ /**
2144
+ * Simulate safeTransferFrom
2145
+ * Returns gas estimate and result without sending transaction
2146
+ * Supports multiple overloads: (address, address, uint256), (address, address, uint256, bytes)
2147
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2148
+ */
2149
+ safeTransferFrom(...args: any[]): Promise<any>;
2150
+ /**
2151
+ * Simulate setApprovalForAll
2152
+ * Returns gas estimate and result without sending transaction
2153
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2154
+ */
2155
+ setApprovalForAll(operator: `0x${string}`, approved: boolean, options?: {
2156
+ accessList?: import("viem").AccessList;
2157
+ authorizationList?: import("viem").AuthorizationList;
2158
+ chain?: import("viem").Chain | null;
2159
+ dataSuffix?: `0x${string}`;
2160
+ gas?: bigint;
2161
+ gasPrice?: bigint;
2162
+ maxFeePerGas?: bigint;
2163
+ maxPriorityFeePerGas?: bigint;
2164
+ nonce?: number;
2165
+ value?: bigint;
2166
+ }): Promise<void>;
2167
+ /**
2168
+ * Simulate setBaseURI
2169
+ * Returns gas estimate and result without sending transaction
2170
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2171
+ */
2172
+ setBaseURI(newBaseURI: string, options?: {
2173
+ accessList?: import("viem").AccessList;
2174
+ authorizationList?: import("viem").AuthorizationList;
2175
+ chain?: import("viem").Chain | null;
2176
+ dataSuffix?: `0x${string}`;
2177
+ gas?: bigint;
2178
+ gasPrice?: bigint;
2179
+ maxFeePerGas?: bigint;
2180
+ maxPriorityFeePerGas?: bigint;
2181
+ nonce?: number;
2182
+ value?: bigint;
2183
+ }): Promise<void>;
2184
+ /**
2185
+ * Simulate setContractURI
2186
+ * Returns gas estimate and result without sending transaction
2187
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2188
+ */
2189
+ setContractURI(newContractURI: string, options?: {
2190
+ accessList?: import("viem").AccessList;
2191
+ authorizationList?: import("viem").AuthorizationList;
2192
+ chain?: import("viem").Chain | null;
2193
+ dataSuffix?: `0x${string}`;
2194
+ gas?: bigint;
2195
+ gasPrice?: bigint;
2196
+ maxFeePerGas?: bigint;
2197
+ maxPriorityFeePerGas?: bigint;
2198
+ nonce?: number;
2199
+ value?: bigint;
2200
+ }): Promise<void>;
2201
+ /**
2202
+ * Simulate setMaxSupply
2203
+ * Returns gas estimate and result without sending transaction
2204
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2205
+ */
2206
+ setMaxSupply(newMaxSupply: bigint, options?: {
2207
+ accessList?: import("viem").AccessList;
2208
+ authorizationList?: import("viem").AuthorizationList;
2209
+ chain?: import("viem").Chain | null;
2210
+ dataSuffix?: `0x${string}`;
2211
+ gas?: bigint;
2212
+ gasPrice?: bigint;
2213
+ maxFeePerGas?: bigint;
2214
+ maxPriorityFeePerGas?: bigint;
2215
+ nonce?: number;
2216
+ value?: bigint;
2217
+ }): Promise<void>;
2218
+ /**
2219
+ * Simulate setProvenanceHash
2220
+ * Returns gas estimate and result without sending transaction
2221
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2222
+ */
2223
+ setProvenanceHash(newProvenanceHash: `0x${string}`, options?: {
2224
+ accessList?: import("viem").AccessList;
2225
+ authorizationList?: import("viem").AuthorizationList;
2226
+ chain?: import("viem").Chain | null;
2227
+ dataSuffix?: `0x${string}`;
2228
+ gas?: bigint;
2229
+ gasPrice?: bigint;
2230
+ maxFeePerGas?: bigint;
2231
+ maxPriorityFeePerGas?: bigint;
2232
+ nonce?: number;
2233
+ value?: bigint;
2234
+ }): Promise<void>;
2235
+ /**
2236
+ * Simulate setRoyaltyInfo
2237
+ * Returns gas estimate and result without sending transaction
2238
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2239
+ */
2240
+ setRoyaltyInfo(newInfo: ISeaDropTokenContractMetadata_RoyaltyInfo, options?: {
2241
+ accessList?: import("viem").AccessList;
2242
+ authorizationList?: import("viem").AuthorizationList;
2243
+ chain?: import("viem").Chain | null;
2244
+ dataSuffix?: `0x${string}`;
2245
+ gas?: bigint;
2246
+ gasPrice?: bigint;
2247
+ maxFeePerGas?: bigint;
2248
+ maxPriorityFeePerGas?: bigint;
2249
+ nonce?: number;
2250
+ value?: bigint;
2251
+ }): Promise<void>;
2252
+ /**
2253
+ * Simulate setTransferValidator
2254
+ * Returns gas estimate and result without sending transaction
2255
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2256
+ */
2257
+ setTransferValidator(newValidator: `0x${string}`, options?: {
2258
+ accessList?: import("viem").AccessList;
2259
+ authorizationList?: import("viem").AuthorizationList;
2260
+ chain?: import("viem").Chain | null;
2261
+ dataSuffix?: `0x${string}`;
2262
+ gas?: bigint;
2263
+ gasPrice?: bigint;
2264
+ maxFeePerGas?: bigint;
2265
+ maxPriorityFeePerGas?: bigint;
2266
+ nonce?: number;
2267
+ value?: bigint;
2268
+ }): Promise<void>;
2269
+ /**
2270
+ * Simulate transferFrom
2271
+ * Returns gas estimate and result without sending transaction
2272
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2273
+ */
2274
+ transferFrom(from: `0x${string}`, to: `0x${string}`, tokenId: bigint, options?: {
2275
+ accessList?: import("viem").AccessList;
2276
+ authorizationList?: import("viem").AuthorizationList;
2277
+ chain?: import("viem").Chain | null;
2278
+ dataSuffix?: `0x${string}`;
2279
+ gas?: bigint;
2280
+ gasPrice?: bigint;
2281
+ maxFeePerGas?: bigint;
2282
+ maxPriorityFeePerGas?: bigint;
2283
+ nonce?: number;
2284
+ value?: bigint;
2285
+ }): Promise<void>;
2286
+ /**
2287
+ * Simulate transferOwnership
2288
+ * Returns gas estimate and result without sending transaction
2289
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2290
+ */
2291
+ transferOwnership(newPotentialOwner: `0x${string}`, options?: {
2292
+ accessList?: import("viem").AccessList;
2293
+ authorizationList?: import("viem").AuthorizationList;
2294
+ chain?: import("viem").Chain | null;
2295
+ dataSuffix?: `0x${string}`;
2296
+ gas?: bigint;
2297
+ gasPrice?: bigint;
2298
+ maxFeePerGas?: bigint;
2299
+ maxPriorityFeePerGas?: bigint;
2300
+ nonce?: number;
2301
+ value?: bigint;
2302
+ }): Promise<void>;
2303
+ /**
2304
+ * Simulate updateAllowList
2305
+ * Returns gas estimate and result without sending transaction
2306
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2307
+ */
2308
+ updateAllowList(seaDropImpl: `0x${string}`, allowListData: AllowListData, options?: {
2309
+ accessList?: import("viem").AccessList;
2310
+ authorizationList?: import("viem").AuthorizationList;
2311
+ chain?: import("viem").Chain | null;
2312
+ dataSuffix?: `0x${string}`;
2313
+ gas?: bigint;
2314
+ gasPrice?: bigint;
2315
+ maxFeePerGas?: bigint;
2316
+ maxPriorityFeePerGas?: bigint;
2317
+ nonce?: number;
2318
+ value?: bigint;
2319
+ }): Promise<void>;
2320
+ /**
2321
+ * Simulate updateAllowedFeeRecipient
2322
+ * Returns gas estimate and result without sending transaction
2323
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2324
+ */
2325
+ updateAllowedFeeRecipient(seaDropImpl: `0x${string}`, feeRecipient: `0x${string}`, allowed: boolean, options?: {
2326
+ accessList?: import("viem").AccessList;
2327
+ authorizationList?: import("viem").AuthorizationList;
2328
+ chain?: import("viem").Chain | null;
2329
+ dataSuffix?: `0x${string}`;
2330
+ gas?: bigint;
2331
+ gasPrice?: bigint;
2332
+ maxFeePerGas?: bigint;
2333
+ maxPriorityFeePerGas?: bigint;
2334
+ nonce?: number;
2335
+ value?: bigint;
2336
+ }): Promise<void>;
2337
+ /**
2338
+ * Simulate updateAllowedSeaDrop
2339
+ * Returns gas estimate and result without sending transaction
2340
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2341
+ */
2342
+ updateAllowedSeaDrop(allowedSeaDrop: `0x${string}`[], options?: {
2343
+ accessList?: import("viem").AccessList;
2344
+ authorizationList?: import("viem").AuthorizationList;
2345
+ chain?: import("viem").Chain | null;
2346
+ dataSuffix?: `0x${string}`;
2347
+ gas?: bigint;
2348
+ gasPrice?: bigint;
2349
+ maxFeePerGas?: bigint;
2350
+ maxPriorityFeePerGas?: bigint;
2351
+ nonce?: number;
2352
+ value?: bigint;
2353
+ }): Promise<void>;
2354
+ /**
2355
+ * Simulate updateCreatorPayoutAddress
2356
+ * Returns gas estimate and result without sending transaction
2357
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2358
+ */
2359
+ updateCreatorPayoutAddress(seaDropImpl: `0x${string}`, payoutAddress: `0x${string}`, options?: {
2360
+ accessList?: import("viem").AccessList;
2361
+ authorizationList?: import("viem").AuthorizationList;
2362
+ chain?: import("viem").Chain | null;
2363
+ dataSuffix?: `0x${string}`;
2364
+ gas?: bigint;
2365
+ gasPrice?: bigint;
2366
+ maxFeePerGas?: bigint;
2367
+ maxPriorityFeePerGas?: bigint;
2368
+ nonce?: number;
2369
+ value?: bigint;
2370
+ }): Promise<void>;
2371
+ /**
2372
+ * Simulate updateDropURI
2373
+ * Returns gas estimate and result without sending transaction
2374
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2375
+ */
2376
+ updateDropURI(seaDropImpl: `0x${string}`, dropURI: string, options?: {
2377
+ accessList?: import("viem").AccessList;
2378
+ authorizationList?: import("viem").AuthorizationList;
2379
+ chain?: import("viem").Chain | null;
2380
+ dataSuffix?: `0x${string}`;
2381
+ gas?: bigint;
2382
+ gasPrice?: bigint;
2383
+ maxFeePerGas?: bigint;
2384
+ maxPriorityFeePerGas?: bigint;
2385
+ nonce?: number;
2386
+ value?: bigint;
2387
+ }): Promise<void>;
2388
+ /**
2389
+ * Simulate updatePayer
2390
+ * Returns gas estimate and result without sending transaction
2391
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2392
+ */
2393
+ updatePayer(seaDropImpl: `0x${string}`, payer: `0x${string}`, allowed: boolean, options?: {
2394
+ accessList?: import("viem").AccessList;
2395
+ authorizationList?: import("viem").AuthorizationList;
2396
+ chain?: import("viem").Chain | null;
2397
+ dataSuffix?: `0x${string}`;
2398
+ gas?: bigint;
2399
+ gasPrice?: bigint;
2400
+ maxFeePerGas?: bigint;
2401
+ maxPriorityFeePerGas?: bigint;
2402
+ nonce?: number;
2403
+ value?: bigint;
2404
+ }): Promise<void>;
2405
+ /**
2406
+ * Simulate updatePublicDrop
2407
+ * Returns gas estimate and result without sending transaction
2408
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2409
+ */
2410
+ updatePublicDrop(seaDropImpl: `0x${string}`, publicDrop: PublicDrop, options?: {
2411
+ accessList?: import("viem").AccessList;
2412
+ authorizationList?: import("viem").AuthorizationList;
2413
+ chain?: import("viem").Chain | null;
2414
+ dataSuffix?: `0x${string}`;
2415
+ gas?: bigint;
2416
+ gasPrice?: bigint;
2417
+ maxFeePerGas?: bigint;
2418
+ maxPriorityFeePerGas?: bigint;
2419
+ nonce?: number;
2420
+ value?: bigint;
2421
+ }): Promise<void>;
2422
+ /**
2423
+ * Simulate updateSignedMintValidationParams
2424
+ * Returns gas estimate and result without sending transaction
2425
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2426
+ */
2427
+ updateSignedMintValidationParams(seaDropImpl: `0x${string}`, signer: `0x${string}`, signedMintValidationParams: SignedMintValidationParams, options?: {
2428
+ accessList?: import("viem").AccessList;
2429
+ authorizationList?: import("viem").AuthorizationList;
2430
+ chain?: import("viem").Chain | null;
2431
+ dataSuffix?: `0x${string}`;
2432
+ gas?: bigint;
2433
+ gasPrice?: bigint;
2434
+ maxFeePerGas?: bigint;
2435
+ maxPriorityFeePerGas?: bigint;
2436
+ nonce?: number;
2437
+ value?: bigint;
2438
+ }): Promise<void>;
2439
+ /**
2440
+ * Simulate updateTokenGatedDrop
2441
+ * Returns gas estimate and result without sending transaction
2442
+ * @param options Optional transaction parameters (value, gas, nonce, etc.)
2443
+ */
2444
+ updateTokenGatedDrop(seaDropImpl: `0x${string}`, allowedNftToken: `0x${string}`, dropStage: TokenGatedDropStage, options?: {
2445
+ accessList?: import("viem").AccessList;
2446
+ authorizationList?: import("viem").AuthorizationList;
2447
+ chain?: import("viem").Chain | null;
2448
+ dataSuffix?: `0x${string}`;
2449
+ gas?: bigint;
2450
+ gasPrice?: bigint;
2451
+ maxFeePerGas?: bigint;
2452
+ maxPriorityFeePerGas?: bigint;
2453
+ nonce?: number;
2454
+ value?: bigint;
2455
+ }): Promise<void>;
2456
+ };
2457
+ /**
2458
+ * Watch contract events
2459
+ *
2460
+ * @example
2461
+ * // Watch all Transfer events
2462
+ * const unwatch = contract.watch.Transfer((event) => {
2463
+ * console.log('Transfer:', event);
2464
+ * });
2465
+ *
2466
+ * // Stop watching
2467
+ * unwatch();
2468
+ */
2469
+ get watch(): {
2470
+ /**
2471
+ * Watch AllowedSeaDropUpdated events
2472
+ * @param callback Function to call when event is emitted
2473
+ * @param filter Optional filter for indexed parameters
2474
+ * @returns Unwatch function to stop listening
2475
+ */
2476
+ AllowedSeaDropUpdated: (callback: (event: {
2477
+ allowedSeaDrop: `0x${string}`[];
2478
+ }) => void) => () => void;
2479
+ /**
2480
+ * Watch Approval events
2481
+ * @param callback Function to call when event is emitted
2482
+ * @param filter Optional filter for indexed parameters
2483
+ * @returns Unwatch function to stop listening
2484
+ */
2485
+ Approval: (callback: (event: {
2486
+ owner: `0x${string}`;
2487
+ approved: `0x${string}`;
2488
+ tokenId: bigint;
2489
+ }) => void, filter?: {
2490
+ owner: `0x${string}`;
2491
+ approved: `0x${string}`;
2492
+ tokenId: bigint;
2493
+ }) => () => void;
2494
+ /**
2495
+ * Watch ApprovalForAll events
2496
+ * @param callback Function to call when event is emitted
2497
+ * @param filter Optional filter for indexed parameters
2498
+ * @returns Unwatch function to stop listening
2499
+ */
2500
+ ApprovalForAll: (callback: (event: {
2501
+ owner: `0x${string}`;
2502
+ operator: `0x${string}`;
2503
+ approved: boolean;
2504
+ }) => void, filter?: {
2505
+ owner: `0x${string}`;
2506
+ operator: `0x${string}`;
2507
+ }) => () => void;
2508
+ /**
2509
+ * Watch BatchMetadataUpdate events
2510
+ * @param callback Function to call when event is emitted
2511
+ * @param filter Optional filter for indexed parameters
2512
+ * @returns Unwatch function to stop listening
2513
+ */
2514
+ BatchMetadataUpdate: (callback: (event: {
2515
+ _fromTokenId: bigint;
2516
+ _toTokenId: bigint;
2517
+ }) => void) => () => void;
2518
+ /**
2519
+ * Watch ConsecutiveTransfer events
2520
+ * @param callback Function to call when event is emitted
2521
+ * @param filter Optional filter for indexed parameters
2522
+ * @returns Unwatch function to stop listening
2523
+ */
2524
+ ConsecutiveTransfer: (callback: (event: {
2525
+ fromTokenId: bigint;
2526
+ from: `0x${string}`;
2527
+ to: `0x${string}`;
2528
+ toTokenId: bigint;
2529
+ }) => void, filter?: {
2530
+ fromTokenId: bigint;
2531
+ from: `0x${string}`;
2532
+ to: `0x${string}`;
2533
+ }) => () => void;
2534
+ /**
2535
+ * Watch ContractURIUpdated events
2536
+ * @param callback Function to call when event is emitted
2537
+ * @param filter Optional filter for indexed parameters
2538
+ * @returns Unwatch function to stop listening
2539
+ */
2540
+ ContractURIUpdated: (callback: (event: {
2541
+ newContractURI: string;
2542
+ }) => void) => () => void;
2543
+ /**
2544
+ * Watch Initialized events
2545
+ * @param callback Function to call when event is emitted
2546
+ * @param filter Optional filter for indexed parameters
2547
+ * @returns Unwatch function to stop listening
2548
+ */
2549
+ Initialized: (callback: (event: {
2550
+ version: bigint;
2551
+ }) => void) => () => void;
2552
+ /**
2553
+ * Watch MaxSupplyUpdated events
2554
+ * @param callback Function to call when event is emitted
2555
+ * @param filter Optional filter for indexed parameters
2556
+ * @returns Unwatch function to stop listening
2557
+ */
2558
+ MaxSupplyUpdated: (callback: (event: {
2559
+ newMaxSupply: bigint;
2560
+ }) => void) => () => void;
2561
+ /**
2562
+ * Watch OwnershipTransferred events
2563
+ * @param callback Function to call when event is emitted
2564
+ * @param filter Optional filter for indexed parameters
2565
+ * @returns Unwatch function to stop listening
2566
+ */
2567
+ OwnershipTransferred: (callback: (event: {
2568
+ previousOwner: `0x${string}`;
2569
+ newOwner: `0x${string}`;
2570
+ }) => void, filter?: {
2571
+ previousOwner: `0x${string}`;
2572
+ newOwner: `0x${string}`;
2573
+ }) => () => void;
2574
+ /**
2575
+ * Watch PotentialOwnerUpdated events
2576
+ * @param callback Function to call when event is emitted
2577
+ * @param filter Optional filter for indexed parameters
2578
+ * @returns Unwatch function to stop listening
2579
+ */
2580
+ PotentialOwnerUpdated: (callback: (event: {
2581
+ newPotentialAdministrator: `0x${string}`;
2582
+ }) => void) => () => void;
2583
+ /**
2584
+ * Watch ProvenanceHashUpdated events
2585
+ * @param callback Function to call when event is emitted
2586
+ * @param filter Optional filter for indexed parameters
2587
+ * @returns Unwatch function to stop listening
2588
+ */
2589
+ ProvenanceHashUpdated: (callback: (event: {
2590
+ previousHash: `0x${string}`;
2591
+ newHash: `0x${string}`;
2592
+ }) => void) => () => void;
2593
+ /**
2594
+ * Watch RoyaltyInfoUpdated events
2595
+ * @param callback Function to call when event is emitted
2596
+ * @param filter Optional filter for indexed parameters
2597
+ * @returns Unwatch function to stop listening
2598
+ */
2599
+ RoyaltyInfoUpdated: (callback: (event: {
2600
+ receiver: `0x${string}`;
2601
+ bps: bigint;
2602
+ }) => void) => () => void;
2603
+ /**
2604
+ * Watch SeaDropTokenDeployed events
2605
+ * @param callback Function to call when event is emitted
2606
+ * @param filter Optional filter for indexed parameters
2607
+ * @returns Unwatch function to stop listening
2608
+ */
2609
+ SeaDropTokenDeployed: (callback: (event: {}) => void) => () => void;
2610
+ /**
2611
+ * Watch Transfer events
2612
+ * @param callback Function to call when event is emitted
2613
+ * @param filter Optional filter for indexed parameters
2614
+ * @returns Unwatch function to stop listening
2615
+ */
2616
+ Transfer: (callback: (event: {
2617
+ from: `0x${string}`;
2618
+ to: `0x${string}`;
2619
+ tokenId: bigint;
2620
+ }) => void, filter?: {
2621
+ from: `0x${string}`;
2622
+ to: `0x${string}`;
2623
+ tokenId: bigint;
2624
+ }) => () => void;
2625
+ /**
2626
+ * Watch TransferValidatorUpdated events
2627
+ * @param callback Function to call when event is emitted
2628
+ * @param filter Optional filter for indexed parameters
2629
+ * @returns Unwatch function to stop listening
2630
+ */
2631
+ TransferValidatorUpdated: (callback: (event: {
2632
+ oldValidator: `0x${string}`;
2633
+ newValidator: `0x${string}`;
2634
+ }) => void) => () => void;
2635
+ };
2636
+ }