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