@gitmyabi/gc 1.0.0 → 1.0.1
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.
- package/README.md +3 -3
- package/contracts/MyCoin_json.d.ts +486 -0
- package/contracts/MyCoin_json.js +552 -0
- package/contracts/MyCoin_json.ts +654 -0
- package/contracts/index.d.ts +2 -2
- package/contracts/index.js +4 -4
- package/contracts/index.ts +2 -2
- package/package.json +3 -3
- package/contracts/ERC721SeaDrop_json.d.ts +0 -2577
- package/contracts/ERC721SeaDrop_json.js +0 -2605
- package/contracts/ERC721SeaDrop_json.ts +0 -3365
|
@@ -1,2577 +0,0 @@
|
|
|
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
|
-
* ERC721SeaDrop_json ABI
|
|
79
|
-
*
|
|
80
|
-
* This ABI is typed using viem's type system for full type safety.
|
|
81
|
-
*/
|
|
82
|
-
export declare const ERC721SeaDrop_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 name: "NewOwnerIsZeroAddress";
|
|
157
|
-
readonly type: "error";
|
|
158
|
-
}, {
|
|
159
|
-
readonly inputs: readonly [];
|
|
160
|
-
readonly name: "NotNextOwner";
|
|
161
|
-
readonly type: "error";
|
|
162
|
-
}, {
|
|
163
|
-
readonly inputs: readonly [];
|
|
164
|
-
readonly name: "OnlyAllowedSeaDrop";
|
|
165
|
-
readonly type: "error";
|
|
166
|
-
}, {
|
|
167
|
-
readonly inputs: readonly [];
|
|
168
|
-
readonly name: "OnlyOwner";
|
|
169
|
-
readonly type: "error";
|
|
170
|
-
}, {
|
|
171
|
-
readonly inputs: readonly [];
|
|
172
|
-
readonly name: "OwnerQueryForNonexistentToken";
|
|
173
|
-
readonly type: "error";
|
|
174
|
-
}, {
|
|
175
|
-
readonly inputs: readonly [];
|
|
176
|
-
readonly name: "OwnershipNotInitializedForExtraData";
|
|
177
|
-
readonly type: "error";
|
|
178
|
-
}, {
|
|
179
|
-
readonly inputs: readonly [];
|
|
180
|
-
readonly name: "ProvenanceHashCannotBeSetAfterMintStarted";
|
|
181
|
-
readonly type: "error";
|
|
182
|
-
}, {
|
|
183
|
-
readonly inputs: readonly [];
|
|
184
|
-
readonly name: "RoyaltyAddressCannotBeZeroAddress";
|
|
185
|
-
readonly type: "error";
|
|
186
|
-
}, {
|
|
187
|
-
readonly inputs: readonly [];
|
|
188
|
-
readonly name: "SameTransferValidator";
|
|
189
|
-
readonly type: "error";
|
|
190
|
-
}, {
|
|
191
|
-
readonly inputs: readonly [];
|
|
192
|
-
readonly name: "SignersMismatch";
|
|
193
|
-
readonly type: "error";
|
|
194
|
-
}, {
|
|
195
|
-
readonly inputs: readonly [];
|
|
196
|
-
readonly name: "TokenGatedMismatch";
|
|
197
|
-
readonly type: "error";
|
|
198
|
-
}, {
|
|
199
|
-
readonly inputs: readonly [];
|
|
200
|
-
readonly name: "TransferCallerNotOwnerNorApproved";
|
|
201
|
-
readonly type: "error";
|
|
202
|
-
}, {
|
|
203
|
-
readonly inputs: readonly [];
|
|
204
|
-
readonly name: "TransferFromIncorrectOwner";
|
|
205
|
-
readonly type: "error";
|
|
206
|
-
}, {
|
|
207
|
-
readonly inputs: readonly [];
|
|
208
|
-
readonly name: "TransferToNonERC721ReceiverImplementer";
|
|
209
|
-
readonly type: "error";
|
|
210
|
-
}, {
|
|
211
|
-
readonly inputs: readonly [];
|
|
212
|
-
readonly name: "TransferToZeroAddress";
|
|
213
|
-
readonly type: "error";
|
|
214
|
-
}, {
|
|
215
|
-
readonly inputs: readonly [];
|
|
216
|
-
readonly name: "URIQueryForNonexistentToken";
|
|
217
|
-
readonly type: "error";
|
|
218
|
-
}, {
|
|
219
|
-
readonly anonymous: false;
|
|
220
|
-
readonly inputs: readonly [{
|
|
221
|
-
readonly indexed: false;
|
|
222
|
-
readonly internalType: "address[]";
|
|
223
|
-
readonly name: "allowedSeaDrop";
|
|
224
|
-
readonly type: "address[]";
|
|
225
|
-
}];
|
|
226
|
-
readonly name: "AllowedSeaDropUpdated";
|
|
227
|
-
readonly type: "event";
|
|
228
|
-
}, {
|
|
229
|
-
readonly anonymous: false;
|
|
230
|
-
readonly inputs: readonly [{
|
|
231
|
-
readonly indexed: true;
|
|
232
|
-
readonly internalType: "address";
|
|
233
|
-
readonly name: "owner";
|
|
234
|
-
readonly type: "address";
|
|
235
|
-
}, {
|
|
236
|
-
readonly indexed: true;
|
|
237
|
-
readonly internalType: "address";
|
|
238
|
-
readonly name: "approved";
|
|
239
|
-
readonly type: "address";
|
|
240
|
-
}, {
|
|
241
|
-
readonly indexed: true;
|
|
242
|
-
readonly internalType: "uint256";
|
|
243
|
-
readonly name: "tokenId";
|
|
244
|
-
readonly type: "uint256";
|
|
245
|
-
}];
|
|
246
|
-
readonly name: "Approval";
|
|
247
|
-
readonly type: "event";
|
|
248
|
-
}, {
|
|
249
|
-
readonly anonymous: false;
|
|
250
|
-
readonly inputs: readonly [{
|
|
251
|
-
readonly indexed: true;
|
|
252
|
-
readonly internalType: "address";
|
|
253
|
-
readonly name: "owner";
|
|
254
|
-
readonly type: "address";
|
|
255
|
-
}, {
|
|
256
|
-
readonly indexed: true;
|
|
257
|
-
readonly internalType: "address";
|
|
258
|
-
readonly name: "operator";
|
|
259
|
-
readonly type: "address";
|
|
260
|
-
}, {
|
|
261
|
-
readonly indexed: false;
|
|
262
|
-
readonly internalType: "bool";
|
|
263
|
-
readonly name: "approved";
|
|
264
|
-
readonly type: "bool";
|
|
265
|
-
}];
|
|
266
|
-
readonly name: "ApprovalForAll";
|
|
267
|
-
readonly type: "event";
|
|
268
|
-
}, {
|
|
269
|
-
readonly anonymous: false;
|
|
270
|
-
readonly inputs: readonly [{
|
|
271
|
-
readonly indexed: false;
|
|
272
|
-
readonly internalType: "uint256";
|
|
273
|
-
readonly name: "_fromTokenId";
|
|
274
|
-
readonly type: "uint256";
|
|
275
|
-
}, {
|
|
276
|
-
readonly indexed: false;
|
|
277
|
-
readonly internalType: "uint256";
|
|
278
|
-
readonly name: "_toTokenId";
|
|
279
|
-
readonly type: "uint256";
|
|
280
|
-
}];
|
|
281
|
-
readonly name: "BatchMetadataUpdate";
|
|
282
|
-
readonly type: "event";
|
|
283
|
-
}, {
|
|
284
|
-
readonly anonymous: false;
|
|
285
|
-
readonly inputs: readonly [{
|
|
286
|
-
readonly indexed: true;
|
|
287
|
-
readonly internalType: "uint256";
|
|
288
|
-
readonly name: "fromTokenId";
|
|
289
|
-
readonly type: "uint256";
|
|
290
|
-
}, {
|
|
291
|
-
readonly indexed: false;
|
|
292
|
-
readonly internalType: "uint256";
|
|
293
|
-
readonly name: "toTokenId";
|
|
294
|
-
readonly type: "uint256";
|
|
295
|
-
}, {
|
|
296
|
-
readonly indexed: true;
|
|
297
|
-
readonly internalType: "address";
|
|
298
|
-
readonly name: "from";
|
|
299
|
-
readonly type: "address";
|
|
300
|
-
}, {
|
|
301
|
-
readonly indexed: true;
|
|
302
|
-
readonly internalType: "address";
|
|
303
|
-
readonly name: "to";
|
|
304
|
-
readonly type: "address";
|
|
305
|
-
}];
|
|
306
|
-
readonly name: "ConsecutiveTransfer";
|
|
307
|
-
readonly type: "event";
|
|
308
|
-
}, {
|
|
309
|
-
readonly anonymous: false;
|
|
310
|
-
readonly inputs: readonly [{
|
|
311
|
-
readonly indexed: false;
|
|
312
|
-
readonly internalType: "string";
|
|
313
|
-
readonly name: "newContractURI";
|
|
314
|
-
readonly type: "string";
|
|
315
|
-
}];
|
|
316
|
-
readonly name: "ContractURIUpdated";
|
|
317
|
-
readonly type: "event";
|
|
318
|
-
}, {
|
|
319
|
-
readonly anonymous: false;
|
|
320
|
-
readonly inputs: readonly [{
|
|
321
|
-
readonly indexed: false;
|
|
322
|
-
readonly internalType: "uint256";
|
|
323
|
-
readonly name: "newMaxSupply";
|
|
324
|
-
readonly type: "uint256";
|
|
325
|
-
}];
|
|
326
|
-
readonly name: "MaxSupplyUpdated";
|
|
327
|
-
readonly type: "event";
|
|
328
|
-
}, {
|
|
329
|
-
readonly anonymous: false;
|
|
330
|
-
readonly inputs: readonly [{
|
|
331
|
-
readonly indexed: true;
|
|
332
|
-
readonly internalType: "address";
|
|
333
|
-
readonly name: "previousOwner";
|
|
334
|
-
readonly type: "address";
|
|
335
|
-
}, {
|
|
336
|
-
readonly indexed: true;
|
|
337
|
-
readonly internalType: "address";
|
|
338
|
-
readonly name: "newOwner";
|
|
339
|
-
readonly type: "address";
|
|
340
|
-
}];
|
|
341
|
-
readonly name: "OwnershipTransferred";
|
|
342
|
-
readonly type: "event";
|
|
343
|
-
}, {
|
|
344
|
-
readonly anonymous: false;
|
|
345
|
-
readonly inputs: readonly [{
|
|
346
|
-
readonly indexed: false;
|
|
347
|
-
readonly internalType: "address";
|
|
348
|
-
readonly name: "newPotentialAdministrator";
|
|
349
|
-
readonly type: "address";
|
|
350
|
-
}];
|
|
351
|
-
readonly name: "PotentialOwnerUpdated";
|
|
352
|
-
readonly type: "event";
|
|
353
|
-
}, {
|
|
354
|
-
readonly anonymous: false;
|
|
355
|
-
readonly inputs: readonly [{
|
|
356
|
-
readonly indexed: false;
|
|
357
|
-
readonly internalType: "bytes32";
|
|
358
|
-
readonly name: "previousHash";
|
|
359
|
-
readonly type: "bytes32";
|
|
360
|
-
}, {
|
|
361
|
-
readonly indexed: false;
|
|
362
|
-
readonly internalType: "bytes32";
|
|
363
|
-
readonly name: "newHash";
|
|
364
|
-
readonly type: "bytes32";
|
|
365
|
-
}];
|
|
366
|
-
readonly name: "ProvenanceHashUpdated";
|
|
367
|
-
readonly type: "event";
|
|
368
|
-
}, {
|
|
369
|
-
readonly anonymous: false;
|
|
370
|
-
readonly inputs: readonly [{
|
|
371
|
-
readonly indexed: false;
|
|
372
|
-
readonly internalType: "address";
|
|
373
|
-
readonly name: "receiver";
|
|
374
|
-
readonly type: "address";
|
|
375
|
-
}, {
|
|
376
|
-
readonly indexed: false;
|
|
377
|
-
readonly internalType: "uint256";
|
|
378
|
-
readonly name: "bps";
|
|
379
|
-
readonly type: "uint256";
|
|
380
|
-
}];
|
|
381
|
-
readonly name: "RoyaltyInfoUpdated";
|
|
382
|
-
readonly type: "event";
|
|
383
|
-
}, {
|
|
384
|
-
readonly anonymous: false;
|
|
385
|
-
readonly inputs: readonly [];
|
|
386
|
-
readonly name: "SeaDropTokenDeployed";
|
|
387
|
-
readonly type: "event";
|
|
388
|
-
}, {
|
|
389
|
-
readonly anonymous: false;
|
|
390
|
-
readonly inputs: readonly [{
|
|
391
|
-
readonly indexed: true;
|
|
392
|
-
readonly internalType: "address";
|
|
393
|
-
readonly name: "from";
|
|
394
|
-
readonly type: "address";
|
|
395
|
-
}, {
|
|
396
|
-
readonly indexed: true;
|
|
397
|
-
readonly internalType: "address";
|
|
398
|
-
readonly name: "to";
|
|
399
|
-
readonly type: "address";
|
|
400
|
-
}, {
|
|
401
|
-
readonly indexed: true;
|
|
402
|
-
readonly internalType: "uint256";
|
|
403
|
-
readonly name: "tokenId";
|
|
404
|
-
readonly type: "uint256";
|
|
405
|
-
}];
|
|
406
|
-
readonly name: "Transfer";
|
|
407
|
-
readonly type: "event";
|
|
408
|
-
}, {
|
|
409
|
-
readonly anonymous: false;
|
|
410
|
-
readonly inputs: readonly [{
|
|
411
|
-
readonly indexed: false;
|
|
412
|
-
readonly internalType: "address";
|
|
413
|
-
readonly name: "oldValidator";
|
|
414
|
-
readonly type: "address";
|
|
415
|
-
}, {
|
|
416
|
-
readonly indexed: false;
|
|
417
|
-
readonly internalType: "address";
|
|
418
|
-
readonly name: "newValidator";
|
|
419
|
-
readonly type: "address";
|
|
420
|
-
}];
|
|
421
|
-
readonly name: "TransferValidatorUpdated";
|
|
422
|
-
readonly type: "event";
|
|
423
|
-
}, {
|
|
424
|
-
readonly inputs: readonly [];
|
|
425
|
-
readonly name: "acceptOwnership";
|
|
426
|
-
readonly outputs: readonly [];
|
|
427
|
-
readonly stateMutability: "nonpayable";
|
|
428
|
-
readonly type: "function";
|
|
429
|
-
}, {
|
|
430
|
-
readonly inputs: readonly [{
|
|
431
|
-
readonly internalType: "address";
|
|
432
|
-
readonly name: "to";
|
|
433
|
-
readonly type: "address";
|
|
434
|
-
}, {
|
|
435
|
-
readonly internalType: "uint256";
|
|
436
|
-
readonly name: "tokenId";
|
|
437
|
-
readonly type: "uint256";
|
|
438
|
-
}];
|
|
439
|
-
readonly name: "approve";
|
|
440
|
-
readonly outputs: readonly [];
|
|
441
|
-
readonly stateMutability: "nonpayable";
|
|
442
|
-
readonly type: "function";
|
|
443
|
-
}, {
|
|
444
|
-
readonly inputs: readonly [{
|
|
445
|
-
readonly internalType: "address";
|
|
446
|
-
readonly name: "owner";
|
|
447
|
-
readonly type: "address";
|
|
448
|
-
}];
|
|
449
|
-
readonly name: "balanceOf";
|
|
450
|
-
readonly outputs: readonly [{
|
|
451
|
-
readonly internalType: "uint256";
|
|
452
|
-
readonly name: "";
|
|
453
|
-
readonly type: "uint256";
|
|
454
|
-
}];
|
|
455
|
-
readonly stateMutability: "view";
|
|
456
|
-
readonly type: "function";
|
|
457
|
-
}, {
|
|
458
|
-
readonly inputs: readonly [];
|
|
459
|
-
readonly name: "baseURI";
|
|
460
|
-
readonly outputs: readonly [{
|
|
461
|
-
readonly internalType: "string";
|
|
462
|
-
readonly name: "";
|
|
463
|
-
readonly type: "string";
|
|
464
|
-
}];
|
|
465
|
-
readonly stateMutability: "view";
|
|
466
|
-
readonly type: "function";
|
|
467
|
-
}, {
|
|
468
|
-
readonly inputs: readonly [{
|
|
469
|
-
readonly internalType: "uint256";
|
|
470
|
-
readonly name: "tokenId";
|
|
471
|
-
readonly type: "uint256";
|
|
472
|
-
}];
|
|
473
|
-
readonly name: "burn";
|
|
474
|
-
readonly outputs: readonly [];
|
|
475
|
-
readonly stateMutability: "nonpayable";
|
|
476
|
-
readonly type: "function";
|
|
477
|
-
}, {
|
|
478
|
-
readonly inputs: readonly [];
|
|
479
|
-
readonly name: "cancelOwnershipTransfer";
|
|
480
|
-
readonly outputs: readonly [];
|
|
481
|
-
readonly stateMutability: "nonpayable";
|
|
482
|
-
readonly type: "function";
|
|
483
|
-
}, {
|
|
484
|
-
readonly inputs: readonly [];
|
|
485
|
-
readonly name: "contractURI";
|
|
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: "fromTokenId";
|
|
497
|
-
readonly type: "uint256";
|
|
498
|
-
}, {
|
|
499
|
-
readonly internalType: "uint256";
|
|
500
|
-
readonly name: "toTokenId";
|
|
501
|
-
readonly type: "uint256";
|
|
502
|
-
}];
|
|
503
|
-
readonly name: "emitBatchMetadataUpdate";
|
|
504
|
-
readonly outputs: readonly [];
|
|
505
|
-
readonly stateMutability: "nonpayable";
|
|
506
|
-
readonly type: "function";
|
|
507
|
-
}, {
|
|
508
|
-
readonly inputs: readonly [{
|
|
509
|
-
readonly internalType: "uint256";
|
|
510
|
-
readonly name: "tokenId";
|
|
511
|
-
readonly type: "uint256";
|
|
512
|
-
}];
|
|
513
|
-
readonly name: "getApproved";
|
|
514
|
-
readonly outputs: readonly [{
|
|
515
|
-
readonly internalType: "address";
|
|
516
|
-
readonly name: "";
|
|
517
|
-
readonly type: "address";
|
|
518
|
-
}];
|
|
519
|
-
readonly stateMutability: "view";
|
|
520
|
-
readonly type: "function";
|
|
521
|
-
}, {
|
|
522
|
-
readonly inputs: readonly [{
|
|
523
|
-
readonly internalType: "address";
|
|
524
|
-
readonly name: "minter";
|
|
525
|
-
readonly type: "address";
|
|
526
|
-
}];
|
|
527
|
-
readonly name: "getMintStats";
|
|
528
|
-
readonly outputs: readonly [{
|
|
529
|
-
readonly internalType: "uint256";
|
|
530
|
-
readonly name: "minterNumMinted";
|
|
531
|
-
readonly type: "uint256";
|
|
532
|
-
}, {
|
|
533
|
-
readonly internalType: "uint256";
|
|
534
|
-
readonly name: "currentTotalSupply";
|
|
535
|
-
readonly type: "uint256";
|
|
536
|
-
}, {
|
|
537
|
-
readonly internalType: "uint256";
|
|
538
|
-
readonly name: "maxSupply";
|
|
539
|
-
readonly type: "uint256";
|
|
540
|
-
}];
|
|
541
|
-
readonly stateMutability: "view";
|
|
542
|
-
readonly type: "function";
|
|
543
|
-
}, {
|
|
544
|
-
readonly inputs: readonly [];
|
|
545
|
-
readonly name: "getTransferValidationFunction";
|
|
546
|
-
readonly outputs: readonly [{
|
|
547
|
-
readonly internalType: "bytes4";
|
|
548
|
-
readonly name: "functionSignature";
|
|
549
|
-
readonly type: "bytes4";
|
|
550
|
-
}, {
|
|
551
|
-
readonly internalType: "bool";
|
|
552
|
-
readonly name: "isViewFunction";
|
|
553
|
-
readonly type: "bool";
|
|
554
|
-
}];
|
|
555
|
-
readonly stateMutability: "pure";
|
|
556
|
-
readonly type: "function";
|
|
557
|
-
}, {
|
|
558
|
-
readonly inputs: readonly [];
|
|
559
|
-
readonly name: "getTransferValidator";
|
|
560
|
-
readonly outputs: readonly [{
|
|
561
|
-
readonly internalType: "address";
|
|
562
|
-
readonly name: "";
|
|
563
|
-
readonly type: "address";
|
|
564
|
-
}];
|
|
565
|
-
readonly stateMutability: "view";
|
|
566
|
-
readonly type: "function";
|
|
567
|
-
}, {
|
|
568
|
-
readonly inputs: readonly [{
|
|
569
|
-
readonly internalType: "address";
|
|
570
|
-
readonly name: "owner";
|
|
571
|
-
readonly type: "address";
|
|
572
|
-
}, {
|
|
573
|
-
readonly internalType: "address";
|
|
574
|
-
readonly name: "operator";
|
|
575
|
-
readonly type: "address";
|
|
576
|
-
}];
|
|
577
|
-
readonly name: "isApprovedForAll";
|
|
578
|
-
readonly outputs: readonly [{
|
|
579
|
-
readonly internalType: "bool";
|
|
580
|
-
readonly name: "";
|
|
581
|
-
readonly type: "bool";
|
|
582
|
-
}];
|
|
583
|
-
readonly stateMutability: "view";
|
|
584
|
-
readonly type: "function";
|
|
585
|
-
}, {
|
|
586
|
-
readonly inputs: readonly [];
|
|
587
|
-
readonly name: "maxSupply";
|
|
588
|
-
readonly outputs: readonly [{
|
|
589
|
-
readonly internalType: "uint256";
|
|
590
|
-
readonly name: "";
|
|
591
|
-
readonly type: "uint256";
|
|
592
|
-
}];
|
|
593
|
-
readonly stateMutability: "view";
|
|
594
|
-
readonly type: "function";
|
|
595
|
-
}, {
|
|
596
|
-
readonly inputs: readonly [{
|
|
597
|
-
readonly internalType: "address";
|
|
598
|
-
readonly name: "minter";
|
|
599
|
-
readonly type: "address";
|
|
600
|
-
}, {
|
|
601
|
-
readonly internalType: "uint256";
|
|
602
|
-
readonly name: "quantity";
|
|
603
|
-
readonly type: "uint256";
|
|
604
|
-
}];
|
|
605
|
-
readonly name: "mintSeaDrop";
|
|
606
|
-
readonly outputs: readonly [];
|
|
607
|
-
readonly stateMutability: "nonpayable";
|
|
608
|
-
readonly type: "function";
|
|
609
|
-
}, {
|
|
610
|
-
readonly inputs: readonly [{
|
|
611
|
-
readonly components: readonly [{
|
|
612
|
-
readonly internalType: "uint256";
|
|
613
|
-
readonly name: "maxSupply";
|
|
614
|
-
readonly type: "uint256";
|
|
615
|
-
}, {
|
|
616
|
-
readonly internalType: "string";
|
|
617
|
-
readonly name: "baseURI";
|
|
618
|
-
readonly type: "string";
|
|
619
|
-
}, {
|
|
620
|
-
readonly internalType: "string";
|
|
621
|
-
readonly name: "contractURI";
|
|
622
|
-
readonly type: "string";
|
|
623
|
-
}, {
|
|
624
|
-
readonly internalType: "address";
|
|
625
|
-
readonly name: "seaDropImpl";
|
|
626
|
-
readonly type: "address";
|
|
627
|
-
}, {
|
|
628
|
-
readonly components: readonly [{
|
|
629
|
-
readonly internalType: "uint80";
|
|
630
|
-
readonly name: "mintPrice";
|
|
631
|
-
readonly type: "uint80";
|
|
632
|
-
}, {
|
|
633
|
-
readonly internalType: "uint48";
|
|
634
|
-
readonly name: "startTime";
|
|
635
|
-
readonly type: "uint48";
|
|
636
|
-
}, {
|
|
637
|
-
readonly internalType: "uint48";
|
|
638
|
-
readonly name: "endTime";
|
|
639
|
-
readonly type: "uint48";
|
|
640
|
-
}, {
|
|
641
|
-
readonly internalType: "uint16";
|
|
642
|
-
readonly name: "maxTotalMintableByWallet";
|
|
643
|
-
readonly type: "uint16";
|
|
644
|
-
}, {
|
|
645
|
-
readonly internalType: "uint16";
|
|
646
|
-
readonly name: "feeBps";
|
|
647
|
-
readonly type: "uint16";
|
|
648
|
-
}, {
|
|
649
|
-
readonly internalType: "bool";
|
|
650
|
-
readonly name: "restrictFeeRecipients";
|
|
651
|
-
readonly type: "bool";
|
|
652
|
-
}];
|
|
653
|
-
readonly internalType: "struct PublicDrop";
|
|
654
|
-
readonly name: "publicDrop";
|
|
655
|
-
readonly type: "tuple";
|
|
656
|
-
}, {
|
|
657
|
-
readonly internalType: "string";
|
|
658
|
-
readonly name: "dropURI";
|
|
659
|
-
readonly type: "string";
|
|
660
|
-
}, {
|
|
661
|
-
readonly components: readonly [{
|
|
662
|
-
readonly internalType: "bytes32";
|
|
663
|
-
readonly name: "merkleRoot";
|
|
664
|
-
readonly type: "bytes32";
|
|
665
|
-
}, {
|
|
666
|
-
readonly internalType: "string[]";
|
|
667
|
-
readonly name: "publicKeyURIs";
|
|
668
|
-
readonly type: "string[]";
|
|
669
|
-
}, {
|
|
670
|
-
readonly internalType: "string";
|
|
671
|
-
readonly name: "allowListURI";
|
|
672
|
-
readonly type: "string";
|
|
673
|
-
}];
|
|
674
|
-
readonly internalType: "struct AllowListData";
|
|
675
|
-
readonly name: "allowListData";
|
|
676
|
-
readonly type: "tuple";
|
|
677
|
-
}, {
|
|
678
|
-
readonly internalType: "address";
|
|
679
|
-
readonly name: "creatorPayoutAddress";
|
|
680
|
-
readonly type: "address";
|
|
681
|
-
}, {
|
|
682
|
-
readonly internalType: "bytes32";
|
|
683
|
-
readonly name: "provenanceHash";
|
|
684
|
-
readonly type: "bytes32";
|
|
685
|
-
}, {
|
|
686
|
-
readonly internalType: "address[]";
|
|
687
|
-
readonly name: "allowedFeeRecipients";
|
|
688
|
-
readonly type: "address[]";
|
|
689
|
-
}, {
|
|
690
|
-
readonly internalType: "address[]";
|
|
691
|
-
readonly name: "disallowedFeeRecipients";
|
|
692
|
-
readonly type: "address[]";
|
|
693
|
-
}, {
|
|
694
|
-
readonly internalType: "address[]";
|
|
695
|
-
readonly name: "allowedPayers";
|
|
696
|
-
readonly type: "address[]";
|
|
697
|
-
}, {
|
|
698
|
-
readonly internalType: "address[]";
|
|
699
|
-
readonly name: "disallowedPayers";
|
|
700
|
-
readonly type: "address[]";
|
|
701
|
-
}, {
|
|
702
|
-
readonly internalType: "address[]";
|
|
703
|
-
readonly name: "tokenGatedAllowedNftTokens";
|
|
704
|
-
readonly type: "address[]";
|
|
705
|
-
}, {
|
|
706
|
-
readonly components: readonly [{
|
|
707
|
-
readonly internalType: "uint80";
|
|
708
|
-
readonly name: "mintPrice";
|
|
709
|
-
readonly type: "uint80";
|
|
710
|
-
}, {
|
|
711
|
-
readonly internalType: "uint16";
|
|
712
|
-
readonly name: "maxTotalMintableByWallet";
|
|
713
|
-
readonly type: "uint16";
|
|
714
|
-
}, {
|
|
715
|
-
readonly internalType: "uint48";
|
|
716
|
-
readonly name: "startTime";
|
|
717
|
-
readonly type: "uint48";
|
|
718
|
-
}, {
|
|
719
|
-
readonly internalType: "uint48";
|
|
720
|
-
readonly name: "endTime";
|
|
721
|
-
readonly type: "uint48";
|
|
722
|
-
}, {
|
|
723
|
-
readonly internalType: "uint8";
|
|
724
|
-
readonly name: "dropStageIndex";
|
|
725
|
-
readonly type: "uint8";
|
|
726
|
-
}, {
|
|
727
|
-
readonly internalType: "uint32";
|
|
728
|
-
readonly name: "maxTokenSupplyForStage";
|
|
729
|
-
readonly type: "uint32";
|
|
730
|
-
}, {
|
|
731
|
-
readonly internalType: "uint16";
|
|
732
|
-
readonly name: "feeBps";
|
|
733
|
-
readonly type: "uint16";
|
|
734
|
-
}, {
|
|
735
|
-
readonly internalType: "bool";
|
|
736
|
-
readonly name: "restrictFeeRecipients";
|
|
737
|
-
readonly type: "bool";
|
|
738
|
-
}];
|
|
739
|
-
readonly internalType: "struct TokenGatedDropStage[]";
|
|
740
|
-
readonly name: "tokenGatedDropStages";
|
|
741
|
-
readonly type: "tuple[]";
|
|
742
|
-
}, {
|
|
743
|
-
readonly internalType: "address[]";
|
|
744
|
-
readonly name: "disallowedTokenGatedAllowedNftTokens";
|
|
745
|
-
readonly type: "address[]";
|
|
746
|
-
}, {
|
|
747
|
-
readonly internalType: "address[]";
|
|
748
|
-
readonly name: "signers";
|
|
749
|
-
readonly type: "address[]";
|
|
750
|
-
}, {
|
|
751
|
-
readonly components: readonly [{
|
|
752
|
-
readonly internalType: "uint80";
|
|
753
|
-
readonly name: "minMintPrice";
|
|
754
|
-
readonly type: "uint80";
|
|
755
|
-
}, {
|
|
756
|
-
readonly internalType: "uint24";
|
|
757
|
-
readonly name: "maxMaxTotalMintableByWallet";
|
|
758
|
-
readonly type: "uint24";
|
|
759
|
-
}, {
|
|
760
|
-
readonly internalType: "uint40";
|
|
761
|
-
readonly name: "minStartTime";
|
|
762
|
-
readonly type: "uint40";
|
|
763
|
-
}, {
|
|
764
|
-
readonly internalType: "uint40";
|
|
765
|
-
readonly name: "maxEndTime";
|
|
766
|
-
readonly type: "uint40";
|
|
767
|
-
}, {
|
|
768
|
-
readonly internalType: "uint40";
|
|
769
|
-
readonly name: "maxMaxTokenSupplyForStage";
|
|
770
|
-
readonly type: "uint40";
|
|
771
|
-
}, {
|
|
772
|
-
readonly internalType: "uint16";
|
|
773
|
-
readonly name: "minFeeBps";
|
|
774
|
-
readonly type: "uint16";
|
|
775
|
-
}, {
|
|
776
|
-
readonly internalType: "uint16";
|
|
777
|
-
readonly name: "maxFeeBps";
|
|
778
|
-
readonly type: "uint16";
|
|
779
|
-
}];
|
|
780
|
-
readonly internalType: "struct SignedMintValidationParams[]";
|
|
781
|
-
readonly name: "signedMintValidationParams";
|
|
782
|
-
readonly type: "tuple[]";
|
|
783
|
-
}, {
|
|
784
|
-
readonly internalType: "address[]";
|
|
785
|
-
readonly name: "disallowedSigners";
|
|
786
|
-
readonly type: "address[]";
|
|
787
|
-
}];
|
|
788
|
-
readonly internalType: "struct ERC721SeaDropStructsErrorsAndEvents.MultiConfigureStruct";
|
|
789
|
-
readonly name: "config";
|
|
790
|
-
readonly type: "tuple";
|
|
791
|
-
}];
|
|
792
|
-
readonly name: "multiConfigure";
|
|
793
|
-
readonly outputs: readonly [];
|
|
794
|
-
readonly stateMutability: "nonpayable";
|
|
795
|
-
readonly type: "function";
|
|
796
|
-
}, {
|
|
797
|
-
readonly inputs: readonly [];
|
|
798
|
-
readonly name: "name";
|
|
799
|
-
readonly outputs: readonly [{
|
|
800
|
-
readonly internalType: "string";
|
|
801
|
-
readonly name: "";
|
|
802
|
-
readonly type: "string";
|
|
803
|
-
}];
|
|
804
|
-
readonly stateMutability: "view";
|
|
805
|
-
readonly type: "function";
|
|
806
|
-
}, {
|
|
807
|
-
readonly inputs: readonly [];
|
|
808
|
-
readonly name: "owner";
|
|
809
|
-
readonly outputs: readonly [{
|
|
810
|
-
readonly internalType: "address";
|
|
811
|
-
readonly name: "";
|
|
812
|
-
readonly type: "address";
|
|
813
|
-
}];
|
|
814
|
-
readonly stateMutability: "view";
|
|
815
|
-
readonly type: "function";
|
|
816
|
-
}, {
|
|
817
|
-
readonly inputs: readonly [{
|
|
818
|
-
readonly internalType: "uint256";
|
|
819
|
-
readonly name: "tokenId";
|
|
820
|
-
readonly type: "uint256";
|
|
821
|
-
}];
|
|
822
|
-
readonly name: "ownerOf";
|
|
823
|
-
readonly outputs: readonly [{
|
|
824
|
-
readonly internalType: "address";
|
|
825
|
-
readonly name: "";
|
|
826
|
-
readonly type: "address";
|
|
827
|
-
}];
|
|
828
|
-
readonly stateMutability: "view";
|
|
829
|
-
readonly type: "function";
|
|
830
|
-
}, {
|
|
831
|
-
readonly inputs: readonly [];
|
|
832
|
-
readonly name: "provenanceHash";
|
|
833
|
-
readonly outputs: readonly [{
|
|
834
|
-
readonly internalType: "bytes32";
|
|
835
|
-
readonly name: "";
|
|
836
|
-
readonly type: "bytes32";
|
|
837
|
-
}];
|
|
838
|
-
readonly stateMutability: "view";
|
|
839
|
-
readonly type: "function";
|
|
840
|
-
}, {
|
|
841
|
-
readonly inputs: readonly [];
|
|
842
|
-
readonly name: "renounceOwnership";
|
|
843
|
-
readonly outputs: readonly [];
|
|
844
|
-
readonly stateMutability: "nonpayable";
|
|
845
|
-
readonly type: "function";
|
|
846
|
-
}, {
|
|
847
|
-
readonly inputs: readonly [];
|
|
848
|
-
readonly name: "royaltyAddress";
|
|
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: "royaltyBasisPoints";
|
|
859
|
-
readonly outputs: readonly [{
|
|
860
|
-
readonly internalType: "uint256";
|
|
861
|
-
readonly name: "";
|
|
862
|
-
readonly type: "uint256";
|
|
863
|
-
}];
|
|
864
|
-
readonly stateMutability: "view";
|
|
865
|
-
readonly type: "function";
|
|
866
|
-
}, {
|
|
867
|
-
readonly inputs: readonly [{
|
|
868
|
-
readonly internalType: "uint256";
|
|
869
|
-
readonly name: "";
|
|
870
|
-
readonly type: "uint256";
|
|
871
|
-
}, {
|
|
872
|
-
readonly internalType: "uint256";
|
|
873
|
-
readonly name: "_salePrice";
|
|
874
|
-
readonly type: "uint256";
|
|
875
|
-
}];
|
|
876
|
-
readonly name: "royaltyInfo";
|
|
877
|
-
readonly outputs: readonly [{
|
|
878
|
-
readonly internalType: "address";
|
|
879
|
-
readonly name: "receiver";
|
|
880
|
-
readonly type: "address";
|
|
881
|
-
}, {
|
|
882
|
-
readonly internalType: "uint256";
|
|
883
|
-
readonly name: "royaltyAmount";
|
|
884
|
-
readonly type: "uint256";
|
|
885
|
-
}];
|
|
886
|
-
readonly stateMutability: "view";
|
|
887
|
-
readonly type: "function";
|
|
888
|
-
}, {
|
|
889
|
-
readonly inputs: readonly [{
|
|
890
|
-
readonly internalType: "address";
|
|
891
|
-
readonly name: "from";
|
|
892
|
-
readonly type: "address";
|
|
893
|
-
}, {
|
|
894
|
-
readonly internalType: "address";
|
|
895
|
-
readonly name: "to";
|
|
896
|
-
readonly type: "address";
|
|
897
|
-
}, {
|
|
898
|
-
readonly internalType: "uint256";
|
|
899
|
-
readonly name: "tokenId";
|
|
900
|
-
readonly type: "uint256";
|
|
901
|
-
}];
|
|
902
|
-
readonly name: "safeTransferFrom";
|
|
903
|
-
readonly outputs: readonly [];
|
|
904
|
-
readonly stateMutability: "nonpayable";
|
|
905
|
-
readonly type: "function";
|
|
906
|
-
}, {
|
|
907
|
-
readonly inputs: readonly [{
|
|
908
|
-
readonly internalType: "address";
|
|
909
|
-
readonly name: "from";
|
|
910
|
-
readonly type: "address";
|
|
911
|
-
}, {
|
|
912
|
-
readonly internalType: "address";
|
|
913
|
-
readonly name: "to";
|
|
914
|
-
readonly type: "address";
|
|
915
|
-
}, {
|
|
916
|
-
readonly internalType: "uint256";
|
|
917
|
-
readonly name: "tokenId";
|
|
918
|
-
readonly type: "uint256";
|
|
919
|
-
}, {
|
|
920
|
-
readonly internalType: "bytes";
|
|
921
|
-
readonly name: "_data";
|
|
922
|
-
readonly type: "bytes";
|
|
923
|
-
}];
|
|
924
|
-
readonly name: "safeTransferFrom";
|
|
925
|
-
readonly outputs: readonly [];
|
|
926
|
-
readonly stateMutability: "nonpayable";
|
|
927
|
-
readonly type: "function";
|
|
928
|
-
}, {
|
|
929
|
-
readonly inputs: readonly [{
|
|
930
|
-
readonly internalType: "address";
|
|
931
|
-
readonly name: "operator";
|
|
932
|
-
readonly type: "address";
|
|
933
|
-
}, {
|
|
934
|
-
readonly internalType: "bool";
|
|
935
|
-
readonly name: "approved";
|
|
936
|
-
readonly type: "bool";
|
|
937
|
-
}];
|
|
938
|
-
readonly name: "setApprovalForAll";
|
|
939
|
-
readonly outputs: readonly [];
|
|
940
|
-
readonly stateMutability: "nonpayable";
|
|
941
|
-
readonly type: "function";
|
|
942
|
-
}, {
|
|
943
|
-
readonly inputs: readonly [{
|
|
944
|
-
readonly internalType: "string";
|
|
945
|
-
readonly name: "newBaseURI";
|
|
946
|
-
readonly type: "string";
|
|
947
|
-
}];
|
|
948
|
-
readonly name: "setBaseURI";
|
|
949
|
-
readonly outputs: readonly [];
|
|
950
|
-
readonly stateMutability: "nonpayable";
|
|
951
|
-
readonly type: "function";
|
|
952
|
-
}, {
|
|
953
|
-
readonly inputs: readonly [{
|
|
954
|
-
readonly internalType: "string";
|
|
955
|
-
readonly name: "newContractURI";
|
|
956
|
-
readonly type: "string";
|
|
957
|
-
}];
|
|
958
|
-
readonly name: "setContractURI";
|
|
959
|
-
readonly outputs: readonly [];
|
|
960
|
-
readonly stateMutability: "nonpayable";
|
|
961
|
-
readonly type: "function";
|
|
962
|
-
}, {
|
|
963
|
-
readonly inputs: readonly [{
|
|
964
|
-
readonly internalType: "uint256";
|
|
965
|
-
readonly name: "newMaxSupply";
|
|
966
|
-
readonly type: "uint256";
|
|
967
|
-
}];
|
|
968
|
-
readonly name: "setMaxSupply";
|
|
969
|
-
readonly outputs: readonly [];
|
|
970
|
-
readonly stateMutability: "nonpayable";
|
|
971
|
-
readonly type: "function";
|
|
972
|
-
}, {
|
|
973
|
-
readonly inputs: readonly [{
|
|
974
|
-
readonly internalType: "bytes32";
|
|
975
|
-
readonly name: "newProvenanceHash";
|
|
976
|
-
readonly type: "bytes32";
|
|
977
|
-
}];
|
|
978
|
-
readonly name: "setProvenanceHash";
|
|
979
|
-
readonly outputs: readonly [];
|
|
980
|
-
readonly stateMutability: "nonpayable";
|
|
981
|
-
readonly type: "function";
|
|
982
|
-
}, {
|
|
983
|
-
readonly inputs: readonly [{
|
|
984
|
-
readonly components: readonly [{
|
|
985
|
-
readonly internalType: "address";
|
|
986
|
-
readonly name: "royaltyAddress";
|
|
987
|
-
readonly type: "address";
|
|
988
|
-
}, {
|
|
989
|
-
readonly internalType: "uint96";
|
|
990
|
-
readonly name: "royaltyBps";
|
|
991
|
-
readonly type: "uint96";
|
|
992
|
-
}];
|
|
993
|
-
readonly internalType: "struct ISeaDropTokenContractMetadata.RoyaltyInfo";
|
|
994
|
-
readonly name: "newInfo";
|
|
995
|
-
readonly type: "tuple";
|
|
996
|
-
}];
|
|
997
|
-
readonly name: "setRoyaltyInfo";
|
|
998
|
-
readonly outputs: readonly [];
|
|
999
|
-
readonly stateMutability: "nonpayable";
|
|
1000
|
-
readonly type: "function";
|
|
1001
|
-
}, {
|
|
1002
|
-
readonly inputs: readonly [{
|
|
1003
|
-
readonly internalType: "address";
|
|
1004
|
-
readonly name: "newValidator";
|
|
1005
|
-
readonly type: "address";
|
|
1006
|
-
}];
|
|
1007
|
-
readonly name: "setTransferValidator";
|
|
1008
|
-
readonly outputs: readonly [];
|
|
1009
|
-
readonly stateMutability: "nonpayable";
|
|
1010
|
-
readonly type: "function";
|
|
1011
|
-
}, {
|
|
1012
|
-
readonly inputs: readonly [{
|
|
1013
|
-
readonly internalType: "bytes4";
|
|
1014
|
-
readonly name: "interfaceId";
|
|
1015
|
-
readonly type: "bytes4";
|
|
1016
|
-
}];
|
|
1017
|
-
readonly name: "supportsInterface";
|
|
1018
|
-
readonly outputs: readonly [{
|
|
1019
|
-
readonly internalType: "bool";
|
|
1020
|
-
readonly name: "";
|
|
1021
|
-
readonly type: "bool";
|
|
1022
|
-
}];
|
|
1023
|
-
readonly stateMutability: "view";
|
|
1024
|
-
readonly type: "function";
|
|
1025
|
-
}, {
|
|
1026
|
-
readonly inputs: readonly [];
|
|
1027
|
-
readonly name: "symbol";
|
|
1028
|
-
readonly outputs: readonly [{
|
|
1029
|
-
readonly internalType: "string";
|
|
1030
|
-
readonly name: "";
|
|
1031
|
-
readonly type: "string";
|
|
1032
|
-
}];
|
|
1033
|
-
readonly stateMutability: "view";
|
|
1034
|
-
readonly type: "function";
|
|
1035
|
-
}, {
|
|
1036
|
-
readonly inputs: readonly [{
|
|
1037
|
-
readonly internalType: "uint256";
|
|
1038
|
-
readonly name: "tokenId";
|
|
1039
|
-
readonly type: "uint256";
|
|
1040
|
-
}];
|
|
1041
|
-
readonly name: "tokenURI";
|
|
1042
|
-
readonly outputs: readonly [{
|
|
1043
|
-
readonly internalType: "string";
|
|
1044
|
-
readonly name: "";
|
|
1045
|
-
readonly type: "string";
|
|
1046
|
-
}];
|
|
1047
|
-
readonly stateMutability: "view";
|
|
1048
|
-
readonly type: "function";
|
|
1049
|
-
}, {
|
|
1050
|
-
readonly inputs: readonly [];
|
|
1051
|
-
readonly name: "totalSupply";
|
|
1052
|
-
readonly outputs: readonly [{
|
|
1053
|
-
readonly internalType: "uint256";
|
|
1054
|
-
readonly name: "";
|
|
1055
|
-
readonly type: "uint256";
|
|
1056
|
-
}];
|
|
1057
|
-
readonly stateMutability: "view";
|
|
1058
|
-
readonly type: "function";
|
|
1059
|
-
}, {
|
|
1060
|
-
readonly inputs: readonly [{
|
|
1061
|
-
readonly internalType: "address";
|
|
1062
|
-
readonly name: "from";
|
|
1063
|
-
readonly type: "address";
|
|
1064
|
-
}, {
|
|
1065
|
-
readonly internalType: "address";
|
|
1066
|
-
readonly name: "to";
|
|
1067
|
-
readonly type: "address";
|
|
1068
|
-
}, {
|
|
1069
|
-
readonly internalType: "uint256";
|
|
1070
|
-
readonly name: "tokenId";
|
|
1071
|
-
readonly type: "uint256";
|
|
1072
|
-
}];
|
|
1073
|
-
readonly name: "transferFrom";
|
|
1074
|
-
readonly outputs: readonly [];
|
|
1075
|
-
readonly stateMutability: "nonpayable";
|
|
1076
|
-
readonly type: "function";
|
|
1077
|
-
}, {
|
|
1078
|
-
readonly inputs: readonly [{
|
|
1079
|
-
readonly internalType: "address";
|
|
1080
|
-
readonly name: "newPotentialOwner";
|
|
1081
|
-
readonly type: "address";
|
|
1082
|
-
}];
|
|
1083
|
-
readonly name: "transferOwnership";
|
|
1084
|
-
readonly outputs: readonly [];
|
|
1085
|
-
readonly stateMutability: "nonpayable";
|
|
1086
|
-
readonly type: "function";
|
|
1087
|
-
}, {
|
|
1088
|
-
readonly inputs: readonly [{
|
|
1089
|
-
readonly internalType: "address";
|
|
1090
|
-
readonly name: "seaDropImpl";
|
|
1091
|
-
readonly type: "address";
|
|
1092
|
-
}, {
|
|
1093
|
-
readonly components: readonly [{
|
|
1094
|
-
readonly internalType: "bytes32";
|
|
1095
|
-
readonly name: "merkleRoot";
|
|
1096
|
-
readonly type: "bytes32";
|
|
1097
|
-
}, {
|
|
1098
|
-
readonly internalType: "string[]";
|
|
1099
|
-
readonly name: "publicKeyURIs";
|
|
1100
|
-
readonly type: "string[]";
|
|
1101
|
-
}, {
|
|
1102
|
-
readonly internalType: "string";
|
|
1103
|
-
readonly name: "allowListURI";
|
|
1104
|
-
readonly type: "string";
|
|
1105
|
-
}];
|
|
1106
|
-
readonly internalType: "struct AllowListData";
|
|
1107
|
-
readonly name: "allowListData";
|
|
1108
|
-
readonly type: "tuple";
|
|
1109
|
-
}];
|
|
1110
|
-
readonly name: "updateAllowList";
|
|
1111
|
-
readonly outputs: readonly [];
|
|
1112
|
-
readonly stateMutability: "nonpayable";
|
|
1113
|
-
readonly type: "function";
|
|
1114
|
-
}, {
|
|
1115
|
-
readonly inputs: readonly [{
|
|
1116
|
-
readonly internalType: "address";
|
|
1117
|
-
readonly name: "seaDropImpl";
|
|
1118
|
-
readonly type: "address";
|
|
1119
|
-
}, {
|
|
1120
|
-
readonly internalType: "address";
|
|
1121
|
-
readonly name: "feeRecipient";
|
|
1122
|
-
readonly type: "address";
|
|
1123
|
-
}, {
|
|
1124
|
-
readonly internalType: "bool";
|
|
1125
|
-
readonly name: "allowed";
|
|
1126
|
-
readonly type: "bool";
|
|
1127
|
-
}];
|
|
1128
|
-
readonly name: "updateAllowedFeeRecipient";
|
|
1129
|
-
readonly outputs: readonly [];
|
|
1130
|
-
readonly stateMutability: "nonpayable";
|
|
1131
|
-
readonly type: "function";
|
|
1132
|
-
}, {
|
|
1133
|
-
readonly inputs: readonly [{
|
|
1134
|
-
readonly internalType: "address[]";
|
|
1135
|
-
readonly name: "allowedSeaDrop";
|
|
1136
|
-
readonly type: "address[]";
|
|
1137
|
-
}];
|
|
1138
|
-
readonly name: "updateAllowedSeaDrop";
|
|
1139
|
-
readonly outputs: readonly [];
|
|
1140
|
-
readonly stateMutability: "nonpayable";
|
|
1141
|
-
readonly type: "function";
|
|
1142
|
-
}, {
|
|
1143
|
-
readonly inputs: readonly [{
|
|
1144
|
-
readonly internalType: "address";
|
|
1145
|
-
readonly name: "seaDropImpl";
|
|
1146
|
-
readonly type: "address";
|
|
1147
|
-
}, {
|
|
1148
|
-
readonly internalType: "address";
|
|
1149
|
-
readonly name: "payoutAddress";
|
|
1150
|
-
readonly type: "address";
|
|
1151
|
-
}];
|
|
1152
|
-
readonly name: "updateCreatorPayoutAddress";
|
|
1153
|
-
readonly outputs: readonly [];
|
|
1154
|
-
readonly stateMutability: "nonpayable";
|
|
1155
|
-
readonly type: "function";
|
|
1156
|
-
}, {
|
|
1157
|
-
readonly inputs: readonly [{
|
|
1158
|
-
readonly internalType: "address";
|
|
1159
|
-
readonly name: "seaDropImpl";
|
|
1160
|
-
readonly type: "address";
|
|
1161
|
-
}, {
|
|
1162
|
-
readonly internalType: "string";
|
|
1163
|
-
readonly name: "dropURI";
|
|
1164
|
-
readonly type: "string";
|
|
1165
|
-
}];
|
|
1166
|
-
readonly name: "updateDropURI";
|
|
1167
|
-
readonly outputs: readonly [];
|
|
1168
|
-
readonly stateMutability: "nonpayable";
|
|
1169
|
-
readonly type: "function";
|
|
1170
|
-
}, {
|
|
1171
|
-
readonly inputs: readonly [{
|
|
1172
|
-
readonly internalType: "address";
|
|
1173
|
-
readonly name: "seaDropImpl";
|
|
1174
|
-
readonly type: "address";
|
|
1175
|
-
}, {
|
|
1176
|
-
readonly internalType: "address";
|
|
1177
|
-
readonly name: "payer";
|
|
1178
|
-
readonly type: "address";
|
|
1179
|
-
}, {
|
|
1180
|
-
readonly internalType: "bool";
|
|
1181
|
-
readonly name: "allowed";
|
|
1182
|
-
readonly type: "bool";
|
|
1183
|
-
}];
|
|
1184
|
-
readonly name: "updatePayer";
|
|
1185
|
-
readonly outputs: readonly [];
|
|
1186
|
-
readonly stateMutability: "nonpayable";
|
|
1187
|
-
readonly type: "function";
|
|
1188
|
-
}, {
|
|
1189
|
-
readonly inputs: readonly [{
|
|
1190
|
-
readonly internalType: "address";
|
|
1191
|
-
readonly name: "seaDropImpl";
|
|
1192
|
-
readonly type: "address";
|
|
1193
|
-
}, {
|
|
1194
|
-
readonly components: readonly [{
|
|
1195
|
-
readonly internalType: "uint80";
|
|
1196
|
-
readonly name: "mintPrice";
|
|
1197
|
-
readonly type: "uint80";
|
|
1198
|
-
}, {
|
|
1199
|
-
readonly internalType: "uint48";
|
|
1200
|
-
readonly name: "startTime";
|
|
1201
|
-
readonly type: "uint48";
|
|
1202
|
-
}, {
|
|
1203
|
-
readonly internalType: "uint48";
|
|
1204
|
-
readonly name: "endTime";
|
|
1205
|
-
readonly type: "uint48";
|
|
1206
|
-
}, {
|
|
1207
|
-
readonly internalType: "uint16";
|
|
1208
|
-
readonly name: "maxTotalMintableByWallet";
|
|
1209
|
-
readonly type: "uint16";
|
|
1210
|
-
}, {
|
|
1211
|
-
readonly internalType: "uint16";
|
|
1212
|
-
readonly name: "feeBps";
|
|
1213
|
-
readonly type: "uint16";
|
|
1214
|
-
}, {
|
|
1215
|
-
readonly internalType: "bool";
|
|
1216
|
-
readonly name: "restrictFeeRecipients";
|
|
1217
|
-
readonly type: "bool";
|
|
1218
|
-
}];
|
|
1219
|
-
readonly internalType: "struct PublicDrop";
|
|
1220
|
-
readonly name: "publicDrop";
|
|
1221
|
-
readonly type: "tuple";
|
|
1222
|
-
}];
|
|
1223
|
-
readonly name: "updatePublicDrop";
|
|
1224
|
-
readonly outputs: readonly [];
|
|
1225
|
-
readonly stateMutability: "nonpayable";
|
|
1226
|
-
readonly type: "function";
|
|
1227
|
-
}, {
|
|
1228
|
-
readonly inputs: readonly [{
|
|
1229
|
-
readonly internalType: "address";
|
|
1230
|
-
readonly name: "seaDropImpl";
|
|
1231
|
-
readonly type: "address";
|
|
1232
|
-
}, {
|
|
1233
|
-
readonly internalType: "address";
|
|
1234
|
-
readonly name: "signer";
|
|
1235
|
-
readonly type: "address";
|
|
1236
|
-
}, {
|
|
1237
|
-
readonly components: readonly [{
|
|
1238
|
-
readonly internalType: "uint80";
|
|
1239
|
-
readonly name: "minMintPrice";
|
|
1240
|
-
readonly type: "uint80";
|
|
1241
|
-
}, {
|
|
1242
|
-
readonly internalType: "uint24";
|
|
1243
|
-
readonly name: "maxMaxTotalMintableByWallet";
|
|
1244
|
-
readonly type: "uint24";
|
|
1245
|
-
}, {
|
|
1246
|
-
readonly internalType: "uint40";
|
|
1247
|
-
readonly name: "minStartTime";
|
|
1248
|
-
readonly type: "uint40";
|
|
1249
|
-
}, {
|
|
1250
|
-
readonly internalType: "uint40";
|
|
1251
|
-
readonly name: "maxEndTime";
|
|
1252
|
-
readonly type: "uint40";
|
|
1253
|
-
}, {
|
|
1254
|
-
readonly internalType: "uint40";
|
|
1255
|
-
readonly name: "maxMaxTokenSupplyForStage";
|
|
1256
|
-
readonly type: "uint40";
|
|
1257
|
-
}, {
|
|
1258
|
-
readonly internalType: "uint16";
|
|
1259
|
-
readonly name: "minFeeBps";
|
|
1260
|
-
readonly type: "uint16";
|
|
1261
|
-
}, {
|
|
1262
|
-
readonly internalType: "uint16";
|
|
1263
|
-
readonly name: "maxFeeBps";
|
|
1264
|
-
readonly type: "uint16";
|
|
1265
|
-
}];
|
|
1266
|
-
readonly internalType: "struct SignedMintValidationParams";
|
|
1267
|
-
readonly name: "signedMintValidationParams";
|
|
1268
|
-
readonly type: "tuple";
|
|
1269
|
-
}];
|
|
1270
|
-
readonly name: "updateSignedMintValidationParams";
|
|
1271
|
-
readonly outputs: readonly [];
|
|
1272
|
-
readonly stateMutability: "nonpayable";
|
|
1273
|
-
readonly type: "function";
|
|
1274
|
-
}, {
|
|
1275
|
-
readonly inputs: readonly [{
|
|
1276
|
-
readonly internalType: "address";
|
|
1277
|
-
readonly name: "seaDropImpl";
|
|
1278
|
-
readonly type: "address";
|
|
1279
|
-
}, {
|
|
1280
|
-
readonly internalType: "address";
|
|
1281
|
-
readonly name: "allowedNftToken";
|
|
1282
|
-
readonly type: "address";
|
|
1283
|
-
}, {
|
|
1284
|
-
readonly components: readonly [{
|
|
1285
|
-
readonly internalType: "uint80";
|
|
1286
|
-
readonly name: "mintPrice";
|
|
1287
|
-
readonly type: "uint80";
|
|
1288
|
-
}, {
|
|
1289
|
-
readonly internalType: "uint16";
|
|
1290
|
-
readonly name: "maxTotalMintableByWallet";
|
|
1291
|
-
readonly type: "uint16";
|
|
1292
|
-
}, {
|
|
1293
|
-
readonly internalType: "uint48";
|
|
1294
|
-
readonly name: "startTime";
|
|
1295
|
-
readonly type: "uint48";
|
|
1296
|
-
}, {
|
|
1297
|
-
readonly internalType: "uint48";
|
|
1298
|
-
readonly name: "endTime";
|
|
1299
|
-
readonly type: "uint48";
|
|
1300
|
-
}, {
|
|
1301
|
-
readonly internalType: "uint8";
|
|
1302
|
-
readonly name: "dropStageIndex";
|
|
1303
|
-
readonly type: "uint8";
|
|
1304
|
-
}, {
|
|
1305
|
-
readonly internalType: "uint32";
|
|
1306
|
-
readonly name: "maxTokenSupplyForStage";
|
|
1307
|
-
readonly type: "uint32";
|
|
1308
|
-
}, {
|
|
1309
|
-
readonly internalType: "uint16";
|
|
1310
|
-
readonly name: "feeBps";
|
|
1311
|
-
readonly type: "uint16";
|
|
1312
|
-
}, {
|
|
1313
|
-
readonly internalType: "bool";
|
|
1314
|
-
readonly name: "restrictFeeRecipients";
|
|
1315
|
-
readonly type: "bool";
|
|
1316
|
-
}];
|
|
1317
|
-
readonly internalType: "struct TokenGatedDropStage";
|
|
1318
|
-
readonly name: "dropStage";
|
|
1319
|
-
readonly type: "tuple";
|
|
1320
|
-
}];
|
|
1321
|
-
readonly name: "updateTokenGatedDrop";
|
|
1322
|
-
readonly outputs: readonly [];
|
|
1323
|
-
readonly stateMutability: "nonpayable";
|
|
1324
|
-
readonly type: "function";
|
|
1325
|
-
}];
|
|
1326
|
-
/**
|
|
1327
|
-
* Type-safe ABI for ERC721SeaDrop_json
|
|
1328
|
-
*/
|
|
1329
|
-
export type ERC721SeaDrop_jsonAbi = typeof ERC721SeaDrop_jsonAbi;
|
|
1330
|
-
/**
|
|
1331
|
-
* Contract instance type for ERC721SeaDrop_json
|
|
1332
|
-
*/
|
|
1333
|
-
export type ERC721SeaDrop_jsonContract = any;
|
|
1334
|
-
/**
|
|
1335
|
-
* ERC721SeaDrop_json Contract Class
|
|
1336
|
-
*
|
|
1337
|
-
* Provides a class-based API similar to TypeChain for interacting with the contract.
|
|
1338
|
-
*
|
|
1339
|
-
* @example
|
|
1340
|
-
* ```typescript
|
|
1341
|
-
* import { createPublicClient, createWalletClient, http } from 'viem';
|
|
1342
|
-
* import { mainnet } from 'viem/chains';
|
|
1343
|
-
* import { ERC721SeaDrop_json } from 'ERC721SeaDrop_json';
|
|
1344
|
-
*
|
|
1345
|
-
* const publicClient = createPublicClient({ chain: mainnet, transport: http() });
|
|
1346
|
-
* const walletClient = createWalletClient({ chain: mainnet, transport: http() });
|
|
1347
|
-
*
|
|
1348
|
-
* const contract = new ERC721SeaDrop_json('0x...', { publicClient, walletClient });
|
|
1349
|
-
*
|
|
1350
|
-
* // Read functions
|
|
1351
|
-
* const result = await contract.balanceOf('0x...');
|
|
1352
|
-
*
|
|
1353
|
-
* // Write functions
|
|
1354
|
-
* const hash = await contract.transfer('0x...', 1000n);
|
|
1355
|
-
*
|
|
1356
|
-
* // Simulate transactions (dry-run)
|
|
1357
|
-
* const simulation = await contract.simulate.transfer('0x...', 1000n);
|
|
1358
|
-
* console.log('Gas estimate:', simulation.request.gas);
|
|
1359
|
-
*
|
|
1360
|
-
* // Watch events
|
|
1361
|
-
* const unwatch = contract.watch.Transfer((event) => {
|
|
1362
|
-
* console.log('Transfer event:', event);
|
|
1363
|
-
* });
|
|
1364
|
-
* ```
|
|
1365
|
-
*/
|
|
1366
|
-
export declare class ERC721SeaDrop_json {
|
|
1367
|
-
private contract;
|
|
1368
|
-
private contractAddress;
|
|
1369
|
-
private publicClient;
|
|
1370
|
-
constructor(address: Address, clients: {
|
|
1371
|
-
publicClient: PublicClient;
|
|
1372
|
-
walletClient?: WalletClient;
|
|
1373
|
-
});
|
|
1374
|
-
/**
|
|
1375
|
-
* Get the contract address
|
|
1376
|
-
*/
|
|
1377
|
-
get address(): Address;
|
|
1378
|
-
/**
|
|
1379
|
-
* Get the underlying viem contract instance
|
|
1380
|
-
*/
|
|
1381
|
-
getContract(): ERC721SeaDrop_jsonContract;
|
|
1382
|
-
/**
|
|
1383
|
-
* balanceOf
|
|
1384
|
-
* view
|
|
1385
|
-
*/
|
|
1386
|
-
balanceOf(owner: `0x${string}`): Promise<bigint>;
|
|
1387
|
-
/**
|
|
1388
|
-
* baseURI
|
|
1389
|
-
* view
|
|
1390
|
-
*/
|
|
1391
|
-
baseURI(): Promise<string>;
|
|
1392
|
-
/**
|
|
1393
|
-
* contractURI
|
|
1394
|
-
* view
|
|
1395
|
-
*/
|
|
1396
|
-
contractURI(): Promise<string>;
|
|
1397
|
-
/**
|
|
1398
|
-
* getApproved
|
|
1399
|
-
* view
|
|
1400
|
-
*/
|
|
1401
|
-
getApproved(tokenId: bigint): Promise<`0x${string}`>;
|
|
1402
|
-
/**
|
|
1403
|
-
* getMintStats
|
|
1404
|
-
* view
|
|
1405
|
-
*/
|
|
1406
|
-
getMintStats(minter: `0x${string}`): Promise<[bigint, bigint, bigint]>;
|
|
1407
|
-
/**
|
|
1408
|
-
* getTransferValidationFunction
|
|
1409
|
-
* pure
|
|
1410
|
-
*/
|
|
1411
|
-
getTransferValidationFunction(): Promise<[`0x${string}`, boolean]>;
|
|
1412
|
-
/**
|
|
1413
|
-
* getTransferValidator
|
|
1414
|
-
* view
|
|
1415
|
-
*/
|
|
1416
|
-
getTransferValidator(): Promise<`0x${string}`>;
|
|
1417
|
-
/**
|
|
1418
|
-
* isApprovedForAll
|
|
1419
|
-
* view
|
|
1420
|
-
*/
|
|
1421
|
-
isApprovedForAll(owner: `0x${string}`, operator: `0x${string}`): Promise<boolean>;
|
|
1422
|
-
/**
|
|
1423
|
-
* maxSupply
|
|
1424
|
-
* view
|
|
1425
|
-
*/
|
|
1426
|
-
maxSupply(): Promise<bigint>;
|
|
1427
|
-
/**
|
|
1428
|
-
* name
|
|
1429
|
-
* view
|
|
1430
|
-
*/
|
|
1431
|
-
name(): Promise<string>;
|
|
1432
|
-
/**
|
|
1433
|
-
* owner
|
|
1434
|
-
* view
|
|
1435
|
-
*/
|
|
1436
|
-
owner(): Promise<`0x${string}`>;
|
|
1437
|
-
/**
|
|
1438
|
-
* ownerOf
|
|
1439
|
-
* view
|
|
1440
|
-
*/
|
|
1441
|
-
ownerOf(tokenId: bigint): Promise<`0x${string}`>;
|
|
1442
|
-
/**
|
|
1443
|
-
* provenanceHash
|
|
1444
|
-
* view
|
|
1445
|
-
*/
|
|
1446
|
-
provenanceHash(): Promise<`0x${string}`>;
|
|
1447
|
-
/**
|
|
1448
|
-
* royaltyAddress
|
|
1449
|
-
* view
|
|
1450
|
-
*/
|
|
1451
|
-
royaltyAddress(): Promise<`0x${string}`>;
|
|
1452
|
-
/**
|
|
1453
|
-
* royaltyBasisPoints
|
|
1454
|
-
* view
|
|
1455
|
-
*/
|
|
1456
|
-
royaltyBasisPoints(): Promise<bigint>;
|
|
1457
|
-
/**
|
|
1458
|
-
* royaltyInfo
|
|
1459
|
-
* view
|
|
1460
|
-
*/
|
|
1461
|
-
royaltyInfo(arg0: bigint, _salePrice: bigint): Promise<[`0x${string}`, bigint]>;
|
|
1462
|
-
/**
|
|
1463
|
-
* supportsInterface
|
|
1464
|
-
* view
|
|
1465
|
-
*/
|
|
1466
|
-
supportsInterface(interfaceId: `0x${string}`): Promise<boolean>;
|
|
1467
|
-
/**
|
|
1468
|
-
* symbol
|
|
1469
|
-
* view
|
|
1470
|
-
*/
|
|
1471
|
-
symbol(): Promise<string>;
|
|
1472
|
-
/**
|
|
1473
|
-
* tokenURI
|
|
1474
|
-
* view
|
|
1475
|
-
*/
|
|
1476
|
-
tokenURI(tokenId: bigint): Promise<string>;
|
|
1477
|
-
/**
|
|
1478
|
-
* totalSupply
|
|
1479
|
-
* view
|
|
1480
|
-
*/
|
|
1481
|
-
totalSupply(): Promise<bigint>;
|
|
1482
|
-
/**
|
|
1483
|
-
* acceptOwnership
|
|
1484
|
-
* nonpayable
|
|
1485
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1486
|
-
*/
|
|
1487
|
-
acceptOwnership(options?: {
|
|
1488
|
-
accessList?: import('viem').AccessList;
|
|
1489
|
-
authorizationList?: import('viem').AuthorizationList;
|
|
1490
|
-
chain?: import('viem').Chain | null;
|
|
1491
|
-
dataSuffix?: `0x${string}`;
|
|
1492
|
-
gas?: bigint;
|
|
1493
|
-
gasPrice?: bigint;
|
|
1494
|
-
maxFeePerGas?: bigint;
|
|
1495
|
-
maxPriorityFeePerGas?: bigint;
|
|
1496
|
-
nonce?: number;
|
|
1497
|
-
value?: bigint;
|
|
1498
|
-
}): Promise<`0x${string}`>;
|
|
1499
|
-
/**
|
|
1500
|
-
* approve
|
|
1501
|
-
* nonpayable
|
|
1502
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1503
|
-
*/
|
|
1504
|
-
approve(to: `0x${string}`, tokenId: bigint, options?: {
|
|
1505
|
-
accessList?: import('viem').AccessList;
|
|
1506
|
-
authorizationList?: import('viem').AuthorizationList;
|
|
1507
|
-
chain?: import('viem').Chain | null;
|
|
1508
|
-
dataSuffix?: `0x${string}`;
|
|
1509
|
-
gas?: bigint;
|
|
1510
|
-
gasPrice?: bigint;
|
|
1511
|
-
maxFeePerGas?: bigint;
|
|
1512
|
-
maxPriorityFeePerGas?: bigint;
|
|
1513
|
-
nonce?: number;
|
|
1514
|
-
value?: bigint;
|
|
1515
|
-
}): Promise<`0x${string}`>;
|
|
1516
|
-
/**
|
|
1517
|
-
* burn
|
|
1518
|
-
* nonpayable
|
|
1519
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1520
|
-
*/
|
|
1521
|
-
burn(tokenId: bigint, options?: {
|
|
1522
|
-
accessList?: import('viem').AccessList;
|
|
1523
|
-
authorizationList?: import('viem').AuthorizationList;
|
|
1524
|
-
chain?: import('viem').Chain | null;
|
|
1525
|
-
dataSuffix?: `0x${string}`;
|
|
1526
|
-
gas?: bigint;
|
|
1527
|
-
gasPrice?: bigint;
|
|
1528
|
-
maxFeePerGas?: bigint;
|
|
1529
|
-
maxPriorityFeePerGas?: bigint;
|
|
1530
|
-
nonce?: number;
|
|
1531
|
-
value?: bigint;
|
|
1532
|
-
}): Promise<`0x${string}`>;
|
|
1533
|
-
/**
|
|
1534
|
-
* cancelOwnershipTransfer
|
|
1535
|
-
* nonpayable
|
|
1536
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1537
|
-
*/
|
|
1538
|
-
cancelOwnershipTransfer(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
|
-
* emitBatchMetadataUpdate
|
|
1552
|
-
* nonpayable
|
|
1553
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1554
|
-
*/
|
|
1555
|
-
emitBatchMetadataUpdate(fromTokenId: bigint, toTokenId: 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
|
-
* mintSeaDrop
|
|
1569
|
-
* nonpayable
|
|
1570
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1571
|
-
*/
|
|
1572
|
-
mintSeaDrop(minter: `0x${string}`, quantity: 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
|
-
* multiConfigure
|
|
1586
|
-
* nonpayable
|
|
1587
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1588
|
-
*/
|
|
1589
|
-
multiConfigure(config: ERC721SeaDropStructsErrorsAndEvents_MultiConfigureStruct, 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
|
-
* renounceOwnership
|
|
1603
|
-
* nonpayable
|
|
1604
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1605
|
-
*/
|
|
1606
|
-
renounceOwnership(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
|
-
safeTransferFrom(from: `0x${string}`, to: `0x${string}`, tokenId: bigint, options?: {
|
|
1619
|
-
accessList?: import('viem').AccessList;
|
|
1620
|
-
authorizationList?: import('viem').AuthorizationList;
|
|
1621
|
-
chain?: import('viem').Chain | null;
|
|
1622
|
-
dataSuffix?: `0x${string}`;
|
|
1623
|
-
gas?: bigint;
|
|
1624
|
-
gasPrice?: bigint;
|
|
1625
|
-
maxFeePerGas?: bigint;
|
|
1626
|
-
maxPriorityFeePerGas?: bigint;
|
|
1627
|
-
nonce?: number;
|
|
1628
|
-
value?: bigint;
|
|
1629
|
-
}): Promise<`0x${string}`>;
|
|
1630
|
-
safeTransferFrom(from: `0x${string}`, to: `0x${string}`, tokenId: bigint, _data: `0x${string}`, options?: {
|
|
1631
|
-
accessList?: import('viem').AccessList;
|
|
1632
|
-
authorizationList?: import('viem').AuthorizationList;
|
|
1633
|
-
chain?: import('viem').Chain | null;
|
|
1634
|
-
dataSuffix?: `0x${string}`;
|
|
1635
|
-
gas?: bigint;
|
|
1636
|
-
gasPrice?: bigint;
|
|
1637
|
-
maxFeePerGas?: bigint;
|
|
1638
|
-
maxPriorityFeePerGas?: bigint;
|
|
1639
|
-
nonce?: number;
|
|
1640
|
-
value?: bigint;
|
|
1641
|
-
}): Promise<`0x${string}`>;
|
|
1642
|
-
/**
|
|
1643
|
-
* setApprovalForAll
|
|
1644
|
-
* nonpayable
|
|
1645
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1646
|
-
*/
|
|
1647
|
-
setApprovalForAll(operator: `0x${string}`, approved: boolean, options?: {
|
|
1648
|
-
accessList?: import('viem').AccessList;
|
|
1649
|
-
authorizationList?: import('viem').AuthorizationList;
|
|
1650
|
-
chain?: import('viem').Chain | null;
|
|
1651
|
-
dataSuffix?: `0x${string}`;
|
|
1652
|
-
gas?: bigint;
|
|
1653
|
-
gasPrice?: bigint;
|
|
1654
|
-
maxFeePerGas?: bigint;
|
|
1655
|
-
maxPriorityFeePerGas?: bigint;
|
|
1656
|
-
nonce?: number;
|
|
1657
|
-
value?: bigint;
|
|
1658
|
-
}): Promise<`0x${string}`>;
|
|
1659
|
-
/**
|
|
1660
|
-
* setBaseURI
|
|
1661
|
-
* nonpayable
|
|
1662
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1663
|
-
*/
|
|
1664
|
-
setBaseURI(newBaseURI: string, options?: {
|
|
1665
|
-
accessList?: import('viem').AccessList;
|
|
1666
|
-
authorizationList?: import('viem').AuthorizationList;
|
|
1667
|
-
chain?: import('viem').Chain | null;
|
|
1668
|
-
dataSuffix?: `0x${string}`;
|
|
1669
|
-
gas?: bigint;
|
|
1670
|
-
gasPrice?: bigint;
|
|
1671
|
-
maxFeePerGas?: bigint;
|
|
1672
|
-
maxPriorityFeePerGas?: bigint;
|
|
1673
|
-
nonce?: number;
|
|
1674
|
-
value?: bigint;
|
|
1675
|
-
}): Promise<`0x${string}`>;
|
|
1676
|
-
/**
|
|
1677
|
-
* setContractURI
|
|
1678
|
-
* nonpayable
|
|
1679
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1680
|
-
*/
|
|
1681
|
-
setContractURI(newContractURI: 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
|
-
* setMaxSupply
|
|
1695
|
-
* nonpayable
|
|
1696
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1697
|
-
*/
|
|
1698
|
-
setMaxSupply(newMaxSupply: bigint, 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
|
-
* setProvenanceHash
|
|
1712
|
-
* nonpayable
|
|
1713
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1714
|
-
*/
|
|
1715
|
-
setProvenanceHash(newProvenanceHash: `0x${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
|
-
* setRoyaltyInfo
|
|
1729
|
-
* nonpayable
|
|
1730
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1731
|
-
*/
|
|
1732
|
-
setRoyaltyInfo(newInfo: ISeaDropTokenContractMetadata_RoyaltyInfo, 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
|
-
* setTransferValidator
|
|
1746
|
-
* nonpayable
|
|
1747
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1748
|
-
*/
|
|
1749
|
-
setTransferValidator(newValidator: `0x${string}`, 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
|
-
* transferFrom
|
|
1763
|
-
* nonpayable
|
|
1764
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1765
|
-
*/
|
|
1766
|
-
transferFrom(from: `0x${string}`, to: `0x${string}`, tokenId: bigint, 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
|
-
* transferOwnership
|
|
1780
|
-
* nonpayable
|
|
1781
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1782
|
-
*/
|
|
1783
|
-
transferOwnership(newPotentialOwner: `0x${string}`, 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
|
-
* updateAllowList
|
|
1797
|
-
* nonpayable
|
|
1798
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1799
|
-
*/
|
|
1800
|
-
updateAllowList(seaDropImpl: `0x${string}`, allowListData: AllowListData, 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
|
-
* updateAllowedFeeRecipient
|
|
1814
|
-
* nonpayable
|
|
1815
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1816
|
-
*/
|
|
1817
|
-
updateAllowedFeeRecipient(seaDropImpl: `0x${string}`, feeRecipient: `0x${string}`, allowed: boolean, 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
|
-
* updateAllowedSeaDrop
|
|
1831
|
-
* nonpayable
|
|
1832
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1833
|
-
*/
|
|
1834
|
-
updateAllowedSeaDrop(allowedSeaDrop: `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
|
-
* updateCreatorPayoutAddress
|
|
1848
|
-
* nonpayable
|
|
1849
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1850
|
-
*/
|
|
1851
|
-
updateCreatorPayoutAddress(seaDropImpl: `0x${string}`, payoutAddress: `0x${string}`, 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
|
-
* updateDropURI
|
|
1865
|
-
* nonpayable
|
|
1866
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1867
|
-
*/
|
|
1868
|
-
updateDropURI(seaDropImpl: `0x${string}`, dropURI: string, 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
|
-
* updatePayer
|
|
1882
|
-
* nonpayable
|
|
1883
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1884
|
-
*/
|
|
1885
|
-
updatePayer(seaDropImpl: `0x${string}`, payer: `0x${string}`, allowed: boolean, 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
|
-
* updatePublicDrop
|
|
1899
|
-
* nonpayable
|
|
1900
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1901
|
-
*/
|
|
1902
|
-
updatePublicDrop(seaDropImpl: `0x${string}`, publicDrop: PublicDrop, 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
|
-
* updateSignedMintValidationParams
|
|
1916
|
-
* nonpayable
|
|
1917
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1918
|
-
*/
|
|
1919
|
-
updateSignedMintValidationParams(seaDropImpl: `0x${string}`, signer: `0x${string}`, signedMintValidationParams: SignedMintValidationParams, 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
|
-
* updateTokenGatedDrop
|
|
1933
|
-
* nonpayable
|
|
1934
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1935
|
-
*/
|
|
1936
|
-
updateTokenGatedDrop(seaDropImpl: `0x${string}`, allowedNftToken: `0x${string}`, dropStage: TokenGatedDropStage, 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
|
-
* Simulate contract write operations (dry-run without sending transaction)
|
|
1950
|
-
*
|
|
1951
|
-
* @example
|
|
1952
|
-
* const result = await contract.simulate.transfer('0x...', 1000n);
|
|
1953
|
-
* console.log('Gas estimate:', result.request.gas);
|
|
1954
|
-
* console.log('Would succeed:', result.result);
|
|
1955
|
-
*/
|
|
1956
|
-
get simulate(): {
|
|
1957
|
-
/**
|
|
1958
|
-
* Simulate acceptOwnership
|
|
1959
|
-
* Returns gas estimate and result without sending transaction
|
|
1960
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1961
|
-
*/
|
|
1962
|
-
acceptOwnership(options?: {
|
|
1963
|
-
accessList?: import("viem").AccessList;
|
|
1964
|
-
authorizationList?: import("viem").AuthorizationList;
|
|
1965
|
-
chain?: import("viem").Chain | null;
|
|
1966
|
-
dataSuffix?: `0x${string}`;
|
|
1967
|
-
gas?: bigint;
|
|
1968
|
-
gasPrice?: bigint;
|
|
1969
|
-
maxFeePerGas?: bigint;
|
|
1970
|
-
maxPriorityFeePerGas?: bigint;
|
|
1971
|
-
nonce?: number;
|
|
1972
|
-
value?: bigint;
|
|
1973
|
-
}): Promise<void>;
|
|
1974
|
-
/**
|
|
1975
|
-
* Simulate approve
|
|
1976
|
-
* Returns gas estimate and result without sending transaction
|
|
1977
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1978
|
-
*/
|
|
1979
|
-
approve(to: `0x${string}`, tokenId: bigint, options?: {
|
|
1980
|
-
accessList?: import("viem").AccessList;
|
|
1981
|
-
authorizationList?: import("viem").AuthorizationList;
|
|
1982
|
-
chain?: import("viem").Chain | null;
|
|
1983
|
-
dataSuffix?: `0x${string}`;
|
|
1984
|
-
gas?: bigint;
|
|
1985
|
-
gasPrice?: bigint;
|
|
1986
|
-
maxFeePerGas?: bigint;
|
|
1987
|
-
maxPriorityFeePerGas?: bigint;
|
|
1988
|
-
nonce?: number;
|
|
1989
|
-
value?: bigint;
|
|
1990
|
-
}): Promise<void>;
|
|
1991
|
-
/**
|
|
1992
|
-
* Simulate burn
|
|
1993
|
-
* Returns gas estimate and result without sending transaction
|
|
1994
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
1995
|
-
*/
|
|
1996
|
-
burn(tokenId: bigint, options?: {
|
|
1997
|
-
accessList?: import("viem").AccessList;
|
|
1998
|
-
authorizationList?: import("viem").AuthorizationList;
|
|
1999
|
-
chain?: import("viem").Chain | null;
|
|
2000
|
-
dataSuffix?: `0x${string}`;
|
|
2001
|
-
gas?: bigint;
|
|
2002
|
-
gasPrice?: bigint;
|
|
2003
|
-
maxFeePerGas?: bigint;
|
|
2004
|
-
maxPriorityFeePerGas?: bigint;
|
|
2005
|
-
nonce?: number;
|
|
2006
|
-
value?: bigint;
|
|
2007
|
-
}): Promise<void>;
|
|
2008
|
-
/**
|
|
2009
|
-
* Simulate cancelOwnershipTransfer
|
|
2010
|
-
* Returns gas estimate and result without sending transaction
|
|
2011
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2012
|
-
*/
|
|
2013
|
-
cancelOwnershipTransfer(options?: {
|
|
2014
|
-
accessList?: import("viem").AccessList;
|
|
2015
|
-
authorizationList?: import("viem").AuthorizationList;
|
|
2016
|
-
chain?: import("viem").Chain | null;
|
|
2017
|
-
dataSuffix?: `0x${string}`;
|
|
2018
|
-
gas?: bigint;
|
|
2019
|
-
gasPrice?: bigint;
|
|
2020
|
-
maxFeePerGas?: bigint;
|
|
2021
|
-
maxPriorityFeePerGas?: bigint;
|
|
2022
|
-
nonce?: number;
|
|
2023
|
-
value?: bigint;
|
|
2024
|
-
}): Promise<void>;
|
|
2025
|
-
/**
|
|
2026
|
-
* Simulate emitBatchMetadataUpdate
|
|
2027
|
-
* Returns gas estimate and result without sending transaction
|
|
2028
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2029
|
-
*/
|
|
2030
|
-
emitBatchMetadataUpdate(fromTokenId: bigint, toTokenId: bigint, 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 mintSeaDrop
|
|
2044
|
-
* Returns gas estimate and result without sending transaction
|
|
2045
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2046
|
-
*/
|
|
2047
|
-
mintSeaDrop(minter: `0x${string}`, quantity: 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 multiConfigure
|
|
2061
|
-
* Returns gas estimate and result without sending transaction
|
|
2062
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2063
|
-
*/
|
|
2064
|
-
multiConfigure(config: ERC721SeaDropStructsErrorsAndEvents_MultiConfigureStruct, 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 renounceOwnership
|
|
2078
|
-
* Returns gas estimate and result without sending transaction
|
|
2079
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2080
|
-
*/
|
|
2081
|
-
renounceOwnership(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 safeTransferFrom
|
|
2095
|
-
* Returns gas estimate and result without sending transaction
|
|
2096
|
-
* Supports multiple overloads: (address, address, uint256), (address, address, uint256, bytes)
|
|
2097
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2098
|
-
*/
|
|
2099
|
-
safeTransferFrom(...args: any[]): Promise<any>;
|
|
2100
|
-
/**
|
|
2101
|
-
* Simulate setApprovalForAll
|
|
2102
|
-
* Returns gas estimate and result without sending transaction
|
|
2103
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2104
|
-
*/
|
|
2105
|
-
setApprovalForAll(operator: `0x${string}`, approved: boolean, options?: {
|
|
2106
|
-
accessList?: import("viem").AccessList;
|
|
2107
|
-
authorizationList?: import("viem").AuthorizationList;
|
|
2108
|
-
chain?: import("viem").Chain | null;
|
|
2109
|
-
dataSuffix?: `0x${string}`;
|
|
2110
|
-
gas?: bigint;
|
|
2111
|
-
gasPrice?: bigint;
|
|
2112
|
-
maxFeePerGas?: bigint;
|
|
2113
|
-
maxPriorityFeePerGas?: bigint;
|
|
2114
|
-
nonce?: number;
|
|
2115
|
-
value?: bigint;
|
|
2116
|
-
}): Promise<void>;
|
|
2117
|
-
/**
|
|
2118
|
-
* Simulate setBaseURI
|
|
2119
|
-
* Returns gas estimate and result without sending transaction
|
|
2120
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2121
|
-
*/
|
|
2122
|
-
setBaseURI(newBaseURI: string, options?: {
|
|
2123
|
-
accessList?: import("viem").AccessList;
|
|
2124
|
-
authorizationList?: import("viem").AuthorizationList;
|
|
2125
|
-
chain?: import("viem").Chain | null;
|
|
2126
|
-
dataSuffix?: `0x${string}`;
|
|
2127
|
-
gas?: bigint;
|
|
2128
|
-
gasPrice?: bigint;
|
|
2129
|
-
maxFeePerGas?: bigint;
|
|
2130
|
-
maxPriorityFeePerGas?: bigint;
|
|
2131
|
-
nonce?: number;
|
|
2132
|
-
value?: bigint;
|
|
2133
|
-
}): Promise<void>;
|
|
2134
|
-
/**
|
|
2135
|
-
* Simulate setContractURI
|
|
2136
|
-
* Returns gas estimate and result without sending transaction
|
|
2137
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2138
|
-
*/
|
|
2139
|
-
setContractURI(newContractURI: string, options?: {
|
|
2140
|
-
accessList?: import("viem").AccessList;
|
|
2141
|
-
authorizationList?: import("viem").AuthorizationList;
|
|
2142
|
-
chain?: import("viem").Chain | null;
|
|
2143
|
-
dataSuffix?: `0x${string}`;
|
|
2144
|
-
gas?: bigint;
|
|
2145
|
-
gasPrice?: bigint;
|
|
2146
|
-
maxFeePerGas?: bigint;
|
|
2147
|
-
maxPriorityFeePerGas?: bigint;
|
|
2148
|
-
nonce?: number;
|
|
2149
|
-
value?: bigint;
|
|
2150
|
-
}): Promise<void>;
|
|
2151
|
-
/**
|
|
2152
|
-
* Simulate setMaxSupply
|
|
2153
|
-
* Returns gas estimate and result without sending transaction
|
|
2154
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2155
|
-
*/
|
|
2156
|
-
setMaxSupply(newMaxSupply: bigint, options?: {
|
|
2157
|
-
accessList?: import("viem").AccessList;
|
|
2158
|
-
authorizationList?: import("viem").AuthorizationList;
|
|
2159
|
-
chain?: import("viem").Chain | null;
|
|
2160
|
-
dataSuffix?: `0x${string}`;
|
|
2161
|
-
gas?: bigint;
|
|
2162
|
-
gasPrice?: bigint;
|
|
2163
|
-
maxFeePerGas?: bigint;
|
|
2164
|
-
maxPriorityFeePerGas?: bigint;
|
|
2165
|
-
nonce?: number;
|
|
2166
|
-
value?: bigint;
|
|
2167
|
-
}): Promise<void>;
|
|
2168
|
-
/**
|
|
2169
|
-
* Simulate setProvenanceHash
|
|
2170
|
-
* Returns gas estimate and result without sending transaction
|
|
2171
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2172
|
-
*/
|
|
2173
|
-
setProvenanceHash(newProvenanceHash: `0x${string}`, 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 setRoyaltyInfo
|
|
2187
|
-
* Returns gas estimate and result without sending transaction
|
|
2188
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2189
|
-
*/
|
|
2190
|
-
setRoyaltyInfo(newInfo: ISeaDropTokenContractMetadata_RoyaltyInfo, 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 setTransferValidator
|
|
2204
|
-
* Returns gas estimate and result without sending transaction
|
|
2205
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2206
|
-
*/
|
|
2207
|
-
setTransferValidator(newValidator: `0x${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 transferFrom
|
|
2221
|
-
* Returns gas estimate and result without sending transaction
|
|
2222
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2223
|
-
*/
|
|
2224
|
-
transferFrom(from: `0x${string}`, to: `0x${string}`, tokenId: 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 transferOwnership
|
|
2238
|
-
* Returns gas estimate and result without sending transaction
|
|
2239
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2240
|
-
*/
|
|
2241
|
-
transferOwnership(newPotentialOwner: `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 updateAllowList
|
|
2255
|
-
* Returns gas estimate and result without sending transaction
|
|
2256
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2257
|
-
*/
|
|
2258
|
-
updateAllowList(seaDropImpl: `0x${string}`, allowListData: AllowListData, 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 updateAllowedFeeRecipient
|
|
2272
|
-
* Returns gas estimate and result without sending transaction
|
|
2273
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2274
|
-
*/
|
|
2275
|
-
updateAllowedFeeRecipient(seaDropImpl: `0x${string}`, feeRecipient: `0x${string}`, allowed: boolean, 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 updateAllowedSeaDrop
|
|
2289
|
-
* Returns gas estimate and result without sending transaction
|
|
2290
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2291
|
-
*/
|
|
2292
|
-
updateAllowedSeaDrop(allowedSeaDrop: `0x${string}`[], 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 updateCreatorPayoutAddress
|
|
2306
|
-
* Returns gas estimate and result without sending transaction
|
|
2307
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2308
|
-
*/
|
|
2309
|
-
updateCreatorPayoutAddress(seaDropImpl: `0x${string}`, payoutAddress: `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 updateDropURI
|
|
2323
|
-
* Returns gas estimate and result without sending transaction
|
|
2324
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2325
|
-
*/
|
|
2326
|
-
updateDropURI(seaDropImpl: `0x${string}`, dropURI: string, 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 updatePayer
|
|
2340
|
-
* Returns gas estimate and result without sending transaction
|
|
2341
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2342
|
-
*/
|
|
2343
|
-
updatePayer(seaDropImpl: `0x${string}`, payer: `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 updatePublicDrop
|
|
2357
|
-
* Returns gas estimate and result without sending transaction
|
|
2358
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2359
|
-
*/
|
|
2360
|
-
updatePublicDrop(seaDropImpl: `0x${string}`, publicDrop: PublicDrop, 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 updateSignedMintValidationParams
|
|
2374
|
-
* Returns gas estimate and result without sending transaction
|
|
2375
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2376
|
-
*/
|
|
2377
|
-
updateSignedMintValidationParams(seaDropImpl: `0x${string}`, signer: `0x${string}`, signedMintValidationParams: SignedMintValidationParams, 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 updateTokenGatedDrop
|
|
2391
|
-
* Returns gas estimate and result without sending transaction
|
|
2392
|
-
* @param options Optional transaction parameters (value, gas, nonce, etc.)
|
|
2393
|
-
*/
|
|
2394
|
-
updateTokenGatedDrop(seaDropImpl: `0x${string}`, allowedNftToken: `0x${string}`, dropStage: TokenGatedDropStage, 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
|
-
/**
|
|
2408
|
-
* Watch contract events
|
|
2409
|
-
*
|
|
2410
|
-
* @example
|
|
2411
|
-
* // Watch all Transfer events
|
|
2412
|
-
* const unwatch = contract.watch.Transfer((event) => {
|
|
2413
|
-
* console.log('Transfer:', event);
|
|
2414
|
-
* });
|
|
2415
|
-
*
|
|
2416
|
-
* // Stop watching
|
|
2417
|
-
* unwatch();
|
|
2418
|
-
*/
|
|
2419
|
-
get watch(): {
|
|
2420
|
-
/**
|
|
2421
|
-
* Watch AllowedSeaDropUpdated events
|
|
2422
|
-
* @param callback Function to call when event is emitted
|
|
2423
|
-
* @param filter Optional filter for indexed parameters
|
|
2424
|
-
* @returns Unwatch function to stop listening
|
|
2425
|
-
*/
|
|
2426
|
-
AllowedSeaDropUpdated: (callback: (event: {
|
|
2427
|
-
allowedSeaDrop: `0x${string}`[];
|
|
2428
|
-
}) => void) => () => void;
|
|
2429
|
-
/**
|
|
2430
|
-
* Watch Approval events
|
|
2431
|
-
* @param callback Function to call when event is emitted
|
|
2432
|
-
* @param filter Optional filter for indexed parameters
|
|
2433
|
-
* @returns Unwatch function to stop listening
|
|
2434
|
-
*/
|
|
2435
|
-
Approval: (callback: (event: {
|
|
2436
|
-
owner: `0x${string}`;
|
|
2437
|
-
approved: `0x${string}`;
|
|
2438
|
-
tokenId: bigint;
|
|
2439
|
-
}) => void, filter?: {
|
|
2440
|
-
owner: `0x${string}`;
|
|
2441
|
-
approved: `0x${string}`;
|
|
2442
|
-
tokenId: bigint;
|
|
2443
|
-
}) => () => void;
|
|
2444
|
-
/**
|
|
2445
|
-
* Watch ApprovalForAll events
|
|
2446
|
-
* @param callback Function to call when event is emitted
|
|
2447
|
-
* @param filter Optional filter for indexed parameters
|
|
2448
|
-
* @returns Unwatch function to stop listening
|
|
2449
|
-
*/
|
|
2450
|
-
ApprovalForAll: (callback: (event: {
|
|
2451
|
-
owner: `0x${string}`;
|
|
2452
|
-
operator: `0x${string}`;
|
|
2453
|
-
approved: boolean;
|
|
2454
|
-
}) => void, filter?: {
|
|
2455
|
-
owner: `0x${string}`;
|
|
2456
|
-
operator: `0x${string}`;
|
|
2457
|
-
}) => () => void;
|
|
2458
|
-
/**
|
|
2459
|
-
* Watch BatchMetadataUpdate events
|
|
2460
|
-
* @param callback Function to call when event is emitted
|
|
2461
|
-
* @param filter Optional filter for indexed parameters
|
|
2462
|
-
* @returns Unwatch function to stop listening
|
|
2463
|
-
*/
|
|
2464
|
-
BatchMetadataUpdate: (callback: (event: {
|
|
2465
|
-
_fromTokenId: bigint;
|
|
2466
|
-
_toTokenId: bigint;
|
|
2467
|
-
}) => void) => () => void;
|
|
2468
|
-
/**
|
|
2469
|
-
* Watch ConsecutiveTransfer events
|
|
2470
|
-
* @param callback Function to call when event is emitted
|
|
2471
|
-
* @param filter Optional filter for indexed parameters
|
|
2472
|
-
* @returns Unwatch function to stop listening
|
|
2473
|
-
*/
|
|
2474
|
-
ConsecutiveTransfer: (callback: (event: {
|
|
2475
|
-
fromTokenId: bigint;
|
|
2476
|
-
from: `0x${string}`;
|
|
2477
|
-
to: `0x${string}`;
|
|
2478
|
-
toTokenId: bigint;
|
|
2479
|
-
}) => void, filter?: {
|
|
2480
|
-
fromTokenId: bigint;
|
|
2481
|
-
from: `0x${string}`;
|
|
2482
|
-
to: `0x${string}`;
|
|
2483
|
-
}) => () => void;
|
|
2484
|
-
/**
|
|
2485
|
-
* Watch ContractURIUpdated events
|
|
2486
|
-
* @param callback Function to call when event is emitted
|
|
2487
|
-
* @param filter Optional filter for indexed parameters
|
|
2488
|
-
* @returns Unwatch function to stop listening
|
|
2489
|
-
*/
|
|
2490
|
-
ContractURIUpdated: (callback: (event: {
|
|
2491
|
-
newContractURI: string;
|
|
2492
|
-
}) => void) => () => void;
|
|
2493
|
-
/**
|
|
2494
|
-
* Watch MaxSupplyUpdated events
|
|
2495
|
-
* @param callback Function to call when event is emitted
|
|
2496
|
-
* @param filter Optional filter for indexed parameters
|
|
2497
|
-
* @returns Unwatch function to stop listening
|
|
2498
|
-
*/
|
|
2499
|
-
MaxSupplyUpdated: (callback: (event: {
|
|
2500
|
-
newMaxSupply: bigint;
|
|
2501
|
-
}) => void) => () => void;
|
|
2502
|
-
/**
|
|
2503
|
-
* Watch OwnershipTransferred events
|
|
2504
|
-
* @param callback Function to call when event is emitted
|
|
2505
|
-
* @param filter Optional filter for indexed parameters
|
|
2506
|
-
* @returns Unwatch function to stop listening
|
|
2507
|
-
*/
|
|
2508
|
-
OwnershipTransferred: (callback: (event: {
|
|
2509
|
-
previousOwner: `0x${string}`;
|
|
2510
|
-
newOwner: `0x${string}`;
|
|
2511
|
-
}) => void, filter?: {
|
|
2512
|
-
previousOwner: `0x${string}`;
|
|
2513
|
-
newOwner: `0x${string}`;
|
|
2514
|
-
}) => () => void;
|
|
2515
|
-
/**
|
|
2516
|
-
* Watch PotentialOwnerUpdated events
|
|
2517
|
-
* @param callback Function to call when event is emitted
|
|
2518
|
-
* @param filter Optional filter for indexed parameters
|
|
2519
|
-
* @returns Unwatch function to stop listening
|
|
2520
|
-
*/
|
|
2521
|
-
PotentialOwnerUpdated: (callback: (event: {
|
|
2522
|
-
newPotentialAdministrator: `0x${string}`;
|
|
2523
|
-
}) => void) => () => void;
|
|
2524
|
-
/**
|
|
2525
|
-
* Watch ProvenanceHashUpdated events
|
|
2526
|
-
* @param callback Function to call when event is emitted
|
|
2527
|
-
* @param filter Optional filter for indexed parameters
|
|
2528
|
-
* @returns Unwatch function to stop listening
|
|
2529
|
-
*/
|
|
2530
|
-
ProvenanceHashUpdated: (callback: (event: {
|
|
2531
|
-
previousHash: `0x${string}`;
|
|
2532
|
-
newHash: `0x${string}`;
|
|
2533
|
-
}) => void) => () => void;
|
|
2534
|
-
/**
|
|
2535
|
-
* Watch RoyaltyInfoUpdated 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
|
-
RoyaltyInfoUpdated: (callback: (event: {
|
|
2541
|
-
receiver: `0x${string}`;
|
|
2542
|
-
bps: bigint;
|
|
2543
|
-
}) => void) => () => void;
|
|
2544
|
-
/**
|
|
2545
|
-
* Watch SeaDropTokenDeployed events
|
|
2546
|
-
* @param callback Function to call when event is emitted
|
|
2547
|
-
* @param filter Optional filter for indexed parameters
|
|
2548
|
-
* @returns Unwatch function to stop listening
|
|
2549
|
-
*/
|
|
2550
|
-
SeaDropTokenDeployed: (callback: (event: {}) => void) => () => void;
|
|
2551
|
-
/**
|
|
2552
|
-
* Watch Transfer events
|
|
2553
|
-
* @param callback Function to call when event is emitted
|
|
2554
|
-
* @param filter Optional filter for indexed parameters
|
|
2555
|
-
* @returns Unwatch function to stop listening
|
|
2556
|
-
*/
|
|
2557
|
-
Transfer: (callback: (event: {
|
|
2558
|
-
from: `0x${string}`;
|
|
2559
|
-
to: `0x${string}`;
|
|
2560
|
-
tokenId: bigint;
|
|
2561
|
-
}) => void, filter?: {
|
|
2562
|
-
from: `0x${string}`;
|
|
2563
|
-
to: `0x${string}`;
|
|
2564
|
-
tokenId: bigint;
|
|
2565
|
-
}) => () => void;
|
|
2566
|
-
/**
|
|
2567
|
-
* Watch TransferValidatorUpdated events
|
|
2568
|
-
* @param callback Function to call when event is emitted
|
|
2569
|
-
* @param filter Optional filter for indexed parameters
|
|
2570
|
-
* @returns Unwatch function to stop listening
|
|
2571
|
-
*/
|
|
2572
|
-
TransferValidatorUpdated: (callback: (event: {
|
|
2573
|
-
oldValidator: `0x${string}`;
|
|
2574
|
-
newValidator: `0x${string}`;
|
|
2575
|
-
}) => void) => () => void;
|
|
2576
|
-
};
|
|
2577
|
-
}
|