@kasufinance/kasu-sdk 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/.github/workflows/ci.yml +39 -0
  2. package/.github/workflows/main.yml +17 -13
  3. package/README.md +146 -0
  4. package/package.json +1 -1
  5. package/src/contracts/IClearingCoordinatorAbi.ts +0 -406
  6. package/src/contracts/IERC20MetadataAbi.ts +0 -364
  7. package/src/contracts/IFeeManagerAbi.ts +0 -182
  8. package/src/contracts/IKSULockingAbi.ts +0 -965
  9. package/src/contracts/IKasuAllowListAbi.ts +0 -605
  10. package/src/contracts/IKasuControllerAbi.ts +0 -703
  11. package/src/contracts/IKasuNFTsAbi.ts +0 -2744
  12. package/src/contracts/IKsuPriceAbi.ts +0 -87
  13. package/src/contracts/ILendingPoolAbi.ts +0 -2081
  14. package/src/contracts/ILendingPoolFactoryAbi.ts +0 -161
  15. package/src/contracts/ILendingPoolManagerAbi.ts +0 -1917
  16. package/src/contracts/ILendingPoolTrancheAbi.ts +0 -1911
  17. package/src/contracts/ISystemVariablesAbi.ts +0 -908
  18. package/src/contracts/IUserLoyaltyRewardsAbi.ts +0 -544
  19. package/src/contracts/IUserManagerAbi.ts +0 -612
  20. package/src/contracts/KSULockBonusAbi.ts +0 -124
  21. package/src/contracts/KasuPoolExternalTVLAbi.ts +0 -1071
  22. package/src/contracts/SwapperAbi.ts +0 -266
  23. package/src/contracts/common.ts +0 -44
  24. package/src/contracts/factories/IClearingCoordinatorAbi__factory.ts +0 -438
  25. package/src/contracts/factories/IERC20MetadataAbi__factory.ts +0 -248
  26. package/src/contracts/factories/IFeeManagerAbi__factory.ts +0 -90
  27. package/src/contracts/factories/IKSULockingAbi__factory.ts +0 -778
  28. package/src/contracts/factories/IKasuAllowListAbi__factory.ts +0 -479
  29. package/src/contracts/factories/IKasuControllerAbi__factory.ts +0 -447
  30. package/src/contracts/factories/IKasuNFTsAbi__factory.ts +0 -2116
  31. package/src/contracts/factories/IKsuPriceAbi__factory.ts +0 -36
  32. package/src/contracts/factories/ILendingPoolAbi__factory.ts +0 -1455
  33. package/src/contracts/factories/ILendingPoolFactoryAbi__factory.ts +0 -125
  34. package/src/contracts/factories/ILendingPoolManagerAbi__factory.ts +0 -1375
  35. package/src/contracts/factories/ILendingPoolTrancheAbi__factory.ts +0 -1345
  36. package/src/contracts/factories/ISystemVariablesAbi__factory.ts +0 -455
  37. package/src/contracts/factories/IUserLoyaltyRewardsAbi__factory.ts +0 -316
  38. package/src/contracts/factories/IUserManagerAbi__factory.ts +0 -345
  39. package/src/contracts/factories/KSULockBonusAbi__factory.ts +0 -115
  40. package/src/contracts/factories/KasuPoolExternalTVLAbi__factory.ts +0 -840
  41. package/src/contracts/factories/SwapperAbi__factory.ts +0 -167
  42. package/src/contracts/factories/index.ts +0 -21
  43. package/src/contracts/index.ts +0 -40
  44. package/tsconfig.tsbuildinfo +0 -1
  45. package/versioner.sh +0 -6
@@ -1,2744 +0,0 @@
1
- /* Autogenerated file. Do not edit manually. */
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- import type {
5
- BaseContract,
6
- BigNumber,
7
- BigNumberish,
8
- BytesLike,
9
- CallOverrides,
10
- ContractTransaction,
11
- Overrides,
12
- PayableOverrides,
13
- PopulatedTransaction,
14
- Signer,
15
- utils,
16
- } from "ethers";
17
- import type {
18
- FunctionFragment,
19
- Result,
20
- EventFragment,
21
- } from "@ethersproject/abi";
22
- import type { Listener, Provider } from "@ethersproject/providers";
23
- import type {
24
- TypedEventFilter,
25
- TypedEvent,
26
- TypedListener,
27
- OnEvent,
28
- } from "./common";
29
-
30
- export type CollectionSecurityPolicyStruct = {
31
- transferSecurityLevel: BigNumberish;
32
- operatorWhitelistId: BigNumberish;
33
- permittedContractReceiversId: BigNumberish;
34
- };
35
-
36
- export type CollectionSecurityPolicyStructOutput = [
37
- number,
38
- BigNumber,
39
- BigNumber
40
- ] & {
41
- transferSecurityLevel: number;
42
- operatorWhitelistId: BigNumber;
43
- permittedContractReceiversId: BigNumber;
44
- };
45
-
46
- export declare namespace IERC721A {
47
- export type TokenOwnershipStruct = {
48
- addr: string;
49
- startTimestamp: BigNumberish;
50
- burned: boolean;
51
- extraData: BigNumberish;
52
- };
53
-
54
- export type TokenOwnershipStructOutput = [
55
- string,
56
- BigNumber,
57
- boolean,
58
- number
59
- ] & {
60
- addr: string;
61
- startTimestamp: BigNumber;
62
- burned: boolean;
63
- extraData: number;
64
- };
65
- }
66
-
67
- export declare namespace IERC721M {
68
- export type MintStageInfoStruct = {
69
- price: BigNumberish;
70
- mintFee: BigNumberish;
71
- walletLimit: BigNumberish;
72
- merkleRoot: BytesLike;
73
- maxStageSupply: BigNumberish;
74
- startTimeUnixSeconds: BigNumberish;
75
- endTimeUnixSeconds: BigNumberish;
76
- };
77
-
78
- export type MintStageInfoStructOutput = [
79
- BigNumber,
80
- BigNumber,
81
- number,
82
- string,
83
- number,
84
- BigNumber,
85
- BigNumber
86
- ] & {
87
- price: BigNumber;
88
- mintFee: BigNumber;
89
- walletLimit: number;
90
- merkleRoot: string;
91
- maxStageSupply: number;
92
- startTimeUnixSeconds: BigNumber;
93
- endTimeUnixSeconds: BigNumber;
94
- };
95
- }
96
-
97
- export interface IKasuNFTsAbiInterface extends utils.Interface {
98
- functions: {
99
- "DEFAULT_OPERATOR_WHITELIST_ID()": FunctionFragment;
100
- "DEFAULT_TRANSFER_SECURITY_LEVEL()": FunctionFragment;
101
- "DEFAULT_TRANSFER_VALIDATOR()": FunctionFragment;
102
- "FUND_RECEIVER()": FunctionFragment;
103
- "approve(address,uint256)": FunctionFragment;
104
- "assertValidCosign(address,uint32,uint64,bytes)": FunctionFragment;
105
- "balanceOf(address)": FunctionFragment;
106
- "contractURI()": FunctionFragment;
107
- "crossmint(uint32,address,bytes32[],uint64,bytes)": FunctionFragment;
108
- "explicitOwnershipOf(uint256)": FunctionFragment;
109
- "explicitOwnershipsOf(uint256[])": FunctionFragment;
110
- "getActiveStageFromTimestamp(uint64)": FunctionFragment;
111
- "getApproved(uint256)": FunctionFragment;
112
- "getCosignDigest(address,uint32,uint64)": FunctionFragment;
113
- "getCosignNonce(address)": FunctionFragment;
114
- "getGlobalWalletLimit()": FunctionFragment;
115
- "getMaxMintableSupply()": FunctionFragment;
116
- "getMintCurrency()": FunctionFragment;
117
- "getMintable()": FunctionFragment;
118
- "getNumberStages()": FunctionFragment;
119
- "getPermittedContractReceivers()": FunctionFragment;
120
- "getSecurityPolicy()": FunctionFragment;
121
- "getStageInfo(uint256)": FunctionFragment;
122
- "getTransferValidator()": FunctionFragment;
123
- "getWhitelistedOperators()": FunctionFragment;
124
- "isApprovedForAll(address,address)": FunctionFragment;
125
- "isContractReceiverPermitted(address)": FunctionFragment;
126
- "isOperatorWhitelisted(address)": FunctionFragment;
127
- "isTransferAllowed(address,address,address)": FunctionFragment;
128
- "mint(uint32,bytes32[],uint64,bytes)": FunctionFragment;
129
- "mintWithLimit(uint32,uint32,bytes32[],uint64,bytes)": FunctionFragment;
130
- "name()": FunctionFragment;
131
- "owner()": FunctionFragment;
132
- "ownerMint(uint32,address)": FunctionFragment;
133
- "ownerOf(uint256)": FunctionFragment;
134
- "renounceOwnership()": FunctionFragment;
135
- "royaltyInfo(uint256,uint256)": FunctionFragment;
136
- "safeTransferFrom(address,address,uint256)": FunctionFragment;
137
- "safeTransferFrom(address,address,uint256,bytes)": FunctionFragment;
138
- "setApprovalForAll(address,bool)": FunctionFragment;
139
- "setBaseURI(string)": FunctionFragment;
140
- "setContractURI(string)": FunctionFragment;
141
- "setCosigner(address)": FunctionFragment;
142
- "setCrossmintAddress(address)": FunctionFragment;
143
- "setDefaultRoyalty(address,uint96)": FunctionFragment;
144
- "setGlobalWalletLimit(uint256)": FunctionFragment;
145
- "setMaxMintableSupply(uint256)": FunctionFragment;
146
- "setMintable(bool)": FunctionFragment;
147
- "setStages((uint80,uint80,uint32,bytes32,uint24,uint64,uint64)[])": FunctionFragment;
148
- "setTimestampExpirySeconds(uint64)": FunctionFragment;
149
- "setToCustomSecurityPolicy(uint8,uint120,uint120)": FunctionFragment;
150
- "setToCustomValidatorAndSecurityPolicy(address,uint8,uint120,uint120)": FunctionFragment;
151
- "setToDefaultSecurityPolicy()": FunctionFragment;
152
- "setTokenRoyalty(uint256,address,uint96)": FunctionFragment;
153
- "setTokenURISuffix(string)": FunctionFragment;
154
- "setTransferValidator(address)": FunctionFragment;
155
- "supportsInterface(bytes4)": FunctionFragment;
156
- "symbol()": FunctionFragment;
157
- "tokenURI(uint256)": FunctionFragment;
158
- "tokensOfOwner(address)": FunctionFragment;
159
- "tokensOfOwnerIn(address,uint256,uint256)": FunctionFragment;
160
- "totalMintedByAddress(address)": FunctionFragment;
161
- "totalSupply()": FunctionFragment;
162
- "transferFrom(address,address,uint256)": FunctionFragment;
163
- "transferOwnership(address)": FunctionFragment;
164
- "withdraw()": FunctionFragment;
165
- "withdrawERC20()": FunctionFragment;
166
- };
167
-
168
- getFunction(
169
- nameOrSignatureOrTopic:
170
- | "DEFAULT_OPERATOR_WHITELIST_ID"
171
- | "DEFAULT_TRANSFER_SECURITY_LEVEL"
172
- | "DEFAULT_TRANSFER_VALIDATOR"
173
- | "FUND_RECEIVER"
174
- | "approve"
175
- | "assertValidCosign"
176
- | "balanceOf"
177
- | "contractURI"
178
- | "crossmint"
179
- | "explicitOwnershipOf"
180
- | "explicitOwnershipsOf"
181
- | "getActiveStageFromTimestamp"
182
- | "getApproved"
183
- | "getCosignDigest"
184
- | "getCosignNonce"
185
- | "getGlobalWalletLimit"
186
- | "getMaxMintableSupply"
187
- | "getMintCurrency"
188
- | "getMintable"
189
- | "getNumberStages"
190
- | "getPermittedContractReceivers"
191
- | "getSecurityPolicy"
192
- | "getStageInfo"
193
- | "getTransferValidator"
194
- | "getWhitelistedOperators"
195
- | "isApprovedForAll"
196
- | "isContractReceiverPermitted"
197
- | "isOperatorWhitelisted"
198
- | "isTransferAllowed"
199
- | "mint"
200
- | "mintWithLimit"
201
- | "name"
202
- | "owner"
203
- | "ownerMint"
204
- | "ownerOf"
205
- | "renounceOwnership"
206
- | "royaltyInfo"
207
- | "safeTransferFrom(address,address,uint256)"
208
- | "safeTransferFrom(address,address,uint256,bytes)"
209
- | "setApprovalForAll"
210
- | "setBaseURI"
211
- | "setContractURI"
212
- | "setCosigner"
213
- | "setCrossmintAddress"
214
- | "setDefaultRoyalty"
215
- | "setGlobalWalletLimit"
216
- | "setMaxMintableSupply"
217
- | "setMintable"
218
- | "setStages"
219
- | "setTimestampExpirySeconds"
220
- | "setToCustomSecurityPolicy"
221
- | "setToCustomValidatorAndSecurityPolicy"
222
- | "setToDefaultSecurityPolicy"
223
- | "setTokenRoyalty"
224
- | "setTokenURISuffix"
225
- | "setTransferValidator"
226
- | "supportsInterface"
227
- | "symbol"
228
- | "tokenURI"
229
- | "tokensOfOwner"
230
- | "tokensOfOwnerIn"
231
- | "totalMintedByAddress"
232
- | "totalSupply"
233
- | "transferFrom"
234
- | "transferOwnership"
235
- | "withdraw"
236
- | "withdrawERC20"
237
- ): FunctionFragment;
238
-
239
- encodeFunctionData(
240
- functionFragment: "DEFAULT_OPERATOR_WHITELIST_ID",
241
- values?: undefined
242
- ): string;
243
- encodeFunctionData(
244
- functionFragment: "DEFAULT_TRANSFER_SECURITY_LEVEL",
245
- values?: undefined
246
- ): string;
247
- encodeFunctionData(
248
- functionFragment: "DEFAULT_TRANSFER_VALIDATOR",
249
- values?: undefined
250
- ): string;
251
- encodeFunctionData(
252
- functionFragment: "FUND_RECEIVER",
253
- values?: undefined
254
- ): string;
255
- encodeFunctionData(
256
- functionFragment: "approve",
257
- values: [string, BigNumberish]
258
- ): string;
259
- encodeFunctionData(
260
- functionFragment: "assertValidCosign",
261
- values: [string, BigNumberish, BigNumberish, BytesLike]
262
- ): string;
263
- encodeFunctionData(functionFragment: "balanceOf", values: [string]): string;
264
- encodeFunctionData(
265
- functionFragment: "contractURI",
266
- values?: undefined
267
- ): string;
268
- encodeFunctionData(
269
- functionFragment: "crossmint",
270
- values: [BigNumberish, string, BytesLike[], BigNumberish, BytesLike]
271
- ): string;
272
- encodeFunctionData(
273
- functionFragment: "explicitOwnershipOf",
274
- values: [BigNumberish]
275
- ): string;
276
- encodeFunctionData(
277
- functionFragment: "explicitOwnershipsOf",
278
- values: [BigNumberish[]]
279
- ): string;
280
- encodeFunctionData(
281
- functionFragment: "getActiveStageFromTimestamp",
282
- values: [BigNumberish]
283
- ): string;
284
- encodeFunctionData(
285
- functionFragment: "getApproved",
286
- values: [BigNumberish]
287
- ): string;
288
- encodeFunctionData(
289
- functionFragment: "getCosignDigest",
290
- values: [string, BigNumberish, BigNumberish]
291
- ): string;
292
- encodeFunctionData(
293
- functionFragment: "getCosignNonce",
294
- values: [string]
295
- ): string;
296
- encodeFunctionData(
297
- functionFragment: "getGlobalWalletLimit",
298
- values?: undefined
299
- ): string;
300
- encodeFunctionData(
301
- functionFragment: "getMaxMintableSupply",
302
- values?: undefined
303
- ): string;
304
- encodeFunctionData(
305
- functionFragment: "getMintCurrency",
306
- values?: undefined
307
- ): string;
308
- encodeFunctionData(
309
- functionFragment: "getMintable",
310
- values?: undefined
311
- ): string;
312
- encodeFunctionData(
313
- functionFragment: "getNumberStages",
314
- values?: undefined
315
- ): string;
316
- encodeFunctionData(
317
- functionFragment: "getPermittedContractReceivers",
318
- values?: undefined
319
- ): string;
320
- encodeFunctionData(
321
- functionFragment: "getSecurityPolicy",
322
- values?: undefined
323
- ): string;
324
- encodeFunctionData(
325
- functionFragment: "getStageInfo",
326
- values: [BigNumberish]
327
- ): string;
328
- encodeFunctionData(
329
- functionFragment: "getTransferValidator",
330
- values?: undefined
331
- ): string;
332
- encodeFunctionData(
333
- functionFragment: "getWhitelistedOperators",
334
- values?: undefined
335
- ): string;
336
- encodeFunctionData(
337
- functionFragment: "isApprovedForAll",
338
- values: [string, string]
339
- ): string;
340
- encodeFunctionData(
341
- functionFragment: "isContractReceiverPermitted",
342
- values: [string]
343
- ): string;
344
- encodeFunctionData(
345
- functionFragment: "isOperatorWhitelisted",
346
- values: [string]
347
- ): string;
348
- encodeFunctionData(
349
- functionFragment: "isTransferAllowed",
350
- values: [string, string, string]
351
- ): string;
352
- encodeFunctionData(
353
- functionFragment: "mint",
354
- values: [BigNumberish, BytesLike[], BigNumberish, BytesLike]
355
- ): string;
356
- encodeFunctionData(
357
- functionFragment: "mintWithLimit",
358
- values: [BigNumberish, BigNumberish, BytesLike[], BigNumberish, BytesLike]
359
- ): string;
360
- encodeFunctionData(functionFragment: "name", values?: undefined): string;
361
- encodeFunctionData(functionFragment: "owner", values?: undefined): string;
362
- encodeFunctionData(
363
- functionFragment: "ownerMint",
364
- values: [BigNumberish, string]
365
- ): string;
366
- encodeFunctionData(
367
- functionFragment: "ownerOf",
368
- values: [BigNumberish]
369
- ): string;
370
- encodeFunctionData(
371
- functionFragment: "renounceOwnership",
372
- values?: undefined
373
- ): string;
374
- encodeFunctionData(
375
- functionFragment: "royaltyInfo",
376
- values: [BigNumberish, BigNumberish]
377
- ): string;
378
- encodeFunctionData(
379
- functionFragment: "safeTransferFrom(address,address,uint256)",
380
- values: [string, string, BigNumberish]
381
- ): string;
382
- encodeFunctionData(
383
- functionFragment: "safeTransferFrom(address,address,uint256,bytes)",
384
- values: [string, string, BigNumberish, BytesLike]
385
- ): string;
386
- encodeFunctionData(
387
- functionFragment: "setApprovalForAll",
388
- values: [string, boolean]
389
- ): string;
390
- encodeFunctionData(functionFragment: "setBaseURI", values: [string]): string;
391
- encodeFunctionData(
392
- functionFragment: "setContractURI",
393
- values: [string]
394
- ): string;
395
- encodeFunctionData(functionFragment: "setCosigner", values: [string]): string;
396
- encodeFunctionData(
397
- functionFragment: "setCrossmintAddress",
398
- values: [string]
399
- ): string;
400
- encodeFunctionData(
401
- functionFragment: "setDefaultRoyalty",
402
- values: [string, BigNumberish]
403
- ): string;
404
- encodeFunctionData(
405
- functionFragment: "setGlobalWalletLimit",
406
- values: [BigNumberish]
407
- ): string;
408
- encodeFunctionData(
409
- functionFragment: "setMaxMintableSupply",
410
- values: [BigNumberish]
411
- ): string;
412
- encodeFunctionData(
413
- functionFragment: "setMintable",
414
- values: [boolean]
415
- ): string;
416
- encodeFunctionData(
417
- functionFragment: "setStages",
418
- values: [IERC721M.MintStageInfoStruct[]]
419
- ): string;
420
- encodeFunctionData(
421
- functionFragment: "setTimestampExpirySeconds",
422
- values: [BigNumberish]
423
- ): string;
424
- encodeFunctionData(
425
- functionFragment: "setToCustomSecurityPolicy",
426
- values: [BigNumberish, BigNumberish, BigNumberish]
427
- ): string;
428
- encodeFunctionData(
429
- functionFragment: "setToCustomValidatorAndSecurityPolicy",
430
- values: [string, BigNumberish, BigNumberish, BigNumberish]
431
- ): string;
432
- encodeFunctionData(
433
- functionFragment: "setToDefaultSecurityPolicy",
434
- values?: undefined
435
- ): string;
436
- encodeFunctionData(
437
- functionFragment: "setTokenRoyalty",
438
- values: [BigNumberish, string, BigNumberish]
439
- ): string;
440
- encodeFunctionData(
441
- functionFragment: "setTokenURISuffix",
442
- values: [string]
443
- ): string;
444
- encodeFunctionData(
445
- functionFragment: "setTransferValidator",
446
- values: [string]
447
- ): string;
448
- encodeFunctionData(
449
- functionFragment: "supportsInterface",
450
- values: [BytesLike]
451
- ): string;
452
- encodeFunctionData(functionFragment: "symbol", values?: undefined): string;
453
- encodeFunctionData(
454
- functionFragment: "tokenURI",
455
- values: [BigNumberish]
456
- ): string;
457
- encodeFunctionData(
458
- functionFragment: "tokensOfOwner",
459
- values: [string]
460
- ): string;
461
- encodeFunctionData(
462
- functionFragment: "tokensOfOwnerIn",
463
- values: [string, BigNumberish, BigNumberish]
464
- ): string;
465
- encodeFunctionData(
466
- functionFragment: "totalMintedByAddress",
467
- values: [string]
468
- ): string;
469
- encodeFunctionData(
470
- functionFragment: "totalSupply",
471
- values?: undefined
472
- ): string;
473
- encodeFunctionData(
474
- functionFragment: "transferFrom",
475
- values: [string, string, BigNumberish]
476
- ): string;
477
- encodeFunctionData(
478
- functionFragment: "transferOwnership",
479
- values: [string]
480
- ): string;
481
- encodeFunctionData(functionFragment: "withdraw", values?: undefined): string;
482
- encodeFunctionData(
483
- functionFragment: "withdrawERC20",
484
- values?: undefined
485
- ): string;
486
-
487
- decodeFunctionResult(
488
- functionFragment: "DEFAULT_OPERATOR_WHITELIST_ID",
489
- data: BytesLike
490
- ): Result;
491
- decodeFunctionResult(
492
- functionFragment: "DEFAULT_TRANSFER_SECURITY_LEVEL",
493
- data: BytesLike
494
- ): Result;
495
- decodeFunctionResult(
496
- functionFragment: "DEFAULT_TRANSFER_VALIDATOR",
497
- data: BytesLike
498
- ): Result;
499
- decodeFunctionResult(
500
- functionFragment: "FUND_RECEIVER",
501
- data: BytesLike
502
- ): Result;
503
- decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result;
504
- decodeFunctionResult(
505
- functionFragment: "assertValidCosign",
506
- data: BytesLike
507
- ): Result;
508
- decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
509
- decodeFunctionResult(
510
- functionFragment: "contractURI",
511
- data: BytesLike
512
- ): Result;
513
- decodeFunctionResult(functionFragment: "crossmint", data: BytesLike): Result;
514
- decodeFunctionResult(
515
- functionFragment: "explicitOwnershipOf",
516
- data: BytesLike
517
- ): Result;
518
- decodeFunctionResult(
519
- functionFragment: "explicitOwnershipsOf",
520
- data: BytesLike
521
- ): Result;
522
- decodeFunctionResult(
523
- functionFragment: "getActiveStageFromTimestamp",
524
- data: BytesLike
525
- ): Result;
526
- decodeFunctionResult(
527
- functionFragment: "getApproved",
528
- data: BytesLike
529
- ): Result;
530
- decodeFunctionResult(
531
- functionFragment: "getCosignDigest",
532
- data: BytesLike
533
- ): Result;
534
- decodeFunctionResult(
535
- functionFragment: "getCosignNonce",
536
- data: BytesLike
537
- ): Result;
538
- decodeFunctionResult(
539
- functionFragment: "getGlobalWalletLimit",
540
- data: BytesLike
541
- ): Result;
542
- decodeFunctionResult(
543
- functionFragment: "getMaxMintableSupply",
544
- data: BytesLike
545
- ): Result;
546
- decodeFunctionResult(
547
- functionFragment: "getMintCurrency",
548
- data: BytesLike
549
- ): Result;
550
- decodeFunctionResult(
551
- functionFragment: "getMintable",
552
- data: BytesLike
553
- ): Result;
554
- decodeFunctionResult(
555
- functionFragment: "getNumberStages",
556
- data: BytesLike
557
- ): Result;
558
- decodeFunctionResult(
559
- functionFragment: "getPermittedContractReceivers",
560
- data: BytesLike
561
- ): Result;
562
- decodeFunctionResult(
563
- functionFragment: "getSecurityPolicy",
564
- data: BytesLike
565
- ): Result;
566
- decodeFunctionResult(
567
- functionFragment: "getStageInfo",
568
- data: BytesLike
569
- ): Result;
570
- decodeFunctionResult(
571
- functionFragment: "getTransferValidator",
572
- data: BytesLike
573
- ): Result;
574
- decodeFunctionResult(
575
- functionFragment: "getWhitelistedOperators",
576
- data: BytesLike
577
- ): Result;
578
- decodeFunctionResult(
579
- functionFragment: "isApprovedForAll",
580
- data: BytesLike
581
- ): Result;
582
- decodeFunctionResult(
583
- functionFragment: "isContractReceiverPermitted",
584
- data: BytesLike
585
- ): Result;
586
- decodeFunctionResult(
587
- functionFragment: "isOperatorWhitelisted",
588
- data: BytesLike
589
- ): Result;
590
- decodeFunctionResult(
591
- functionFragment: "isTransferAllowed",
592
- data: BytesLike
593
- ): Result;
594
- decodeFunctionResult(functionFragment: "mint", data: BytesLike): Result;
595
- decodeFunctionResult(
596
- functionFragment: "mintWithLimit",
597
- data: BytesLike
598
- ): Result;
599
- decodeFunctionResult(functionFragment: "name", data: BytesLike): Result;
600
- decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
601
- decodeFunctionResult(functionFragment: "ownerMint", data: BytesLike): Result;
602
- decodeFunctionResult(functionFragment: "ownerOf", data: BytesLike): Result;
603
- decodeFunctionResult(
604
- functionFragment: "renounceOwnership",
605
- data: BytesLike
606
- ): Result;
607
- decodeFunctionResult(
608
- functionFragment: "royaltyInfo",
609
- data: BytesLike
610
- ): Result;
611
- decodeFunctionResult(
612
- functionFragment: "safeTransferFrom(address,address,uint256)",
613
- data: BytesLike
614
- ): Result;
615
- decodeFunctionResult(
616
- functionFragment: "safeTransferFrom(address,address,uint256,bytes)",
617
- data: BytesLike
618
- ): Result;
619
- decodeFunctionResult(
620
- functionFragment: "setApprovalForAll",
621
- data: BytesLike
622
- ): Result;
623
- decodeFunctionResult(functionFragment: "setBaseURI", data: BytesLike): Result;
624
- decodeFunctionResult(
625
- functionFragment: "setContractURI",
626
- data: BytesLike
627
- ): Result;
628
- decodeFunctionResult(
629
- functionFragment: "setCosigner",
630
- data: BytesLike
631
- ): Result;
632
- decodeFunctionResult(
633
- functionFragment: "setCrossmintAddress",
634
- data: BytesLike
635
- ): Result;
636
- decodeFunctionResult(
637
- functionFragment: "setDefaultRoyalty",
638
- data: BytesLike
639
- ): Result;
640
- decodeFunctionResult(
641
- functionFragment: "setGlobalWalletLimit",
642
- data: BytesLike
643
- ): Result;
644
- decodeFunctionResult(
645
- functionFragment: "setMaxMintableSupply",
646
- data: BytesLike
647
- ): Result;
648
- decodeFunctionResult(
649
- functionFragment: "setMintable",
650
- data: BytesLike
651
- ): Result;
652
- decodeFunctionResult(functionFragment: "setStages", data: BytesLike): Result;
653
- decodeFunctionResult(
654
- functionFragment: "setTimestampExpirySeconds",
655
- data: BytesLike
656
- ): Result;
657
- decodeFunctionResult(
658
- functionFragment: "setToCustomSecurityPolicy",
659
- data: BytesLike
660
- ): Result;
661
- decodeFunctionResult(
662
- functionFragment: "setToCustomValidatorAndSecurityPolicy",
663
- data: BytesLike
664
- ): Result;
665
- decodeFunctionResult(
666
- functionFragment: "setToDefaultSecurityPolicy",
667
- data: BytesLike
668
- ): Result;
669
- decodeFunctionResult(
670
- functionFragment: "setTokenRoyalty",
671
- data: BytesLike
672
- ): Result;
673
- decodeFunctionResult(
674
- functionFragment: "setTokenURISuffix",
675
- data: BytesLike
676
- ): Result;
677
- decodeFunctionResult(
678
- functionFragment: "setTransferValidator",
679
- data: BytesLike
680
- ): Result;
681
- decodeFunctionResult(
682
- functionFragment: "supportsInterface",
683
- data: BytesLike
684
- ): Result;
685
- decodeFunctionResult(functionFragment: "symbol", data: BytesLike): Result;
686
- decodeFunctionResult(functionFragment: "tokenURI", data: BytesLike): Result;
687
- decodeFunctionResult(
688
- functionFragment: "tokensOfOwner",
689
- data: BytesLike
690
- ): Result;
691
- decodeFunctionResult(
692
- functionFragment: "tokensOfOwnerIn",
693
- data: BytesLike
694
- ): Result;
695
- decodeFunctionResult(
696
- functionFragment: "totalMintedByAddress",
697
- data: BytesLike
698
- ): Result;
699
- decodeFunctionResult(
700
- functionFragment: "totalSupply",
701
- data: BytesLike
702
- ): Result;
703
- decodeFunctionResult(
704
- functionFragment: "transferFrom",
705
- data: BytesLike
706
- ): Result;
707
- decodeFunctionResult(
708
- functionFragment: "transferOwnership",
709
- data: BytesLike
710
- ): Result;
711
- decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
712
- decodeFunctionResult(
713
- functionFragment: "withdrawERC20",
714
- data: BytesLike
715
- ): Result;
716
-
717
- events: {
718
- "Approval(address,address,uint256)": EventFragment;
719
- "ApprovalForAll(address,address,bool)": EventFragment;
720
- "ConsecutiveTransfer(uint256,uint256,address,address)": EventFragment;
721
- "DefaultRoyaltySet(address,uint96)": EventFragment;
722
- "OwnershipTransferred(address,address)": EventFragment;
723
- "SetActiveStage(uint256)": EventFragment;
724
- "SetBaseURI(string)": EventFragment;
725
- "SetCosigner(address)": EventFragment;
726
- "SetCrossmintAddress(address)": EventFragment;
727
- "SetGlobalWalletLimit(uint256)": EventFragment;
728
- "SetMaxMintableSupply(uint256)": EventFragment;
729
- "SetMintCurrency(address)": EventFragment;
730
- "SetMintable(bool)": EventFragment;
731
- "SetTimestampExpirySeconds(uint64)": EventFragment;
732
- "TokenRoyaltySet(uint256,address,uint96)": EventFragment;
733
- "Transfer(address,address,uint256)": EventFragment;
734
- "TransferValidatorUpdated(address,address)": EventFragment;
735
- "UpdateStage(uint256,uint80,uint80,uint32,bytes32,uint24,uint64,uint64)": EventFragment;
736
- "Withdraw(uint256)": EventFragment;
737
- "WithdrawERC20(address,uint256)": EventFragment;
738
- };
739
-
740
- getEvent(nameOrSignatureOrTopic: "Approval"): EventFragment;
741
- getEvent(nameOrSignatureOrTopic: "ApprovalForAll"): EventFragment;
742
- getEvent(nameOrSignatureOrTopic: "ConsecutiveTransfer"): EventFragment;
743
- getEvent(nameOrSignatureOrTopic: "DefaultRoyaltySet"): EventFragment;
744
- getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment;
745
- getEvent(nameOrSignatureOrTopic: "SetActiveStage"): EventFragment;
746
- getEvent(nameOrSignatureOrTopic: "SetBaseURI"): EventFragment;
747
- getEvent(nameOrSignatureOrTopic: "SetCosigner"): EventFragment;
748
- getEvent(nameOrSignatureOrTopic: "SetCrossmintAddress"): EventFragment;
749
- getEvent(nameOrSignatureOrTopic: "SetGlobalWalletLimit"): EventFragment;
750
- getEvent(nameOrSignatureOrTopic: "SetMaxMintableSupply"): EventFragment;
751
- getEvent(nameOrSignatureOrTopic: "SetMintCurrency"): EventFragment;
752
- getEvent(nameOrSignatureOrTopic: "SetMintable"): EventFragment;
753
- getEvent(nameOrSignatureOrTopic: "SetTimestampExpirySeconds"): EventFragment;
754
- getEvent(nameOrSignatureOrTopic: "TokenRoyaltySet"): EventFragment;
755
- getEvent(nameOrSignatureOrTopic: "Transfer"): EventFragment;
756
- getEvent(nameOrSignatureOrTopic: "TransferValidatorUpdated"): EventFragment;
757
- getEvent(nameOrSignatureOrTopic: "UpdateStage"): EventFragment;
758
- getEvent(nameOrSignatureOrTopic: "Withdraw"): EventFragment;
759
- getEvent(nameOrSignatureOrTopic: "WithdrawERC20"): EventFragment;
760
- }
761
-
762
- export interface ApprovalEventObject {
763
- owner: string;
764
- approved: string;
765
- tokenId: BigNumber;
766
- }
767
- export type ApprovalEvent = TypedEvent<
768
- [string, string, BigNumber],
769
- ApprovalEventObject
770
- >;
771
-
772
- export type ApprovalEventFilter = TypedEventFilter<ApprovalEvent>;
773
-
774
- export interface ApprovalForAllEventObject {
775
- owner: string;
776
- operator: string;
777
- approved: boolean;
778
- }
779
- export type ApprovalForAllEvent = TypedEvent<
780
- [string, string, boolean],
781
- ApprovalForAllEventObject
782
- >;
783
-
784
- export type ApprovalForAllEventFilter = TypedEventFilter<ApprovalForAllEvent>;
785
-
786
- export interface ConsecutiveTransferEventObject {
787
- fromTokenId: BigNumber;
788
- toTokenId: BigNumber;
789
- from: string;
790
- to: string;
791
- }
792
- export type ConsecutiveTransferEvent = TypedEvent<
793
- [BigNumber, BigNumber, string, string],
794
- ConsecutiveTransferEventObject
795
- >;
796
-
797
- export type ConsecutiveTransferEventFilter =
798
- TypedEventFilter<ConsecutiveTransferEvent>;
799
-
800
- export interface DefaultRoyaltySetEventObject {
801
- receiver: string;
802
- feeNumerator: BigNumber;
803
- }
804
- export type DefaultRoyaltySetEvent = TypedEvent<
805
- [string, BigNumber],
806
- DefaultRoyaltySetEventObject
807
- >;
808
-
809
- export type DefaultRoyaltySetEventFilter =
810
- TypedEventFilter<DefaultRoyaltySetEvent>;
811
-
812
- export interface OwnershipTransferredEventObject {
813
- previousOwner: string;
814
- newOwner: string;
815
- }
816
- export type OwnershipTransferredEvent = TypedEvent<
817
- [string, string],
818
- OwnershipTransferredEventObject
819
- >;
820
-
821
- export type OwnershipTransferredEventFilter =
822
- TypedEventFilter<OwnershipTransferredEvent>;
823
-
824
- export interface SetActiveStageEventObject {
825
- activeStage: BigNumber;
826
- }
827
- export type SetActiveStageEvent = TypedEvent<
828
- [BigNumber],
829
- SetActiveStageEventObject
830
- >;
831
-
832
- export type SetActiveStageEventFilter = TypedEventFilter<SetActiveStageEvent>;
833
-
834
- export interface SetBaseURIEventObject {
835
- baseURI: string;
836
- }
837
- export type SetBaseURIEvent = TypedEvent<[string], SetBaseURIEventObject>;
838
-
839
- export type SetBaseURIEventFilter = TypedEventFilter<SetBaseURIEvent>;
840
-
841
- export interface SetCosignerEventObject {
842
- cosigner: string;
843
- }
844
- export type SetCosignerEvent = TypedEvent<[string], SetCosignerEventObject>;
845
-
846
- export type SetCosignerEventFilter = TypedEventFilter<SetCosignerEvent>;
847
-
848
- export interface SetCrossmintAddressEventObject {
849
- crossmintAddress: string;
850
- }
851
- export type SetCrossmintAddressEvent = TypedEvent<
852
- [string],
853
- SetCrossmintAddressEventObject
854
- >;
855
-
856
- export type SetCrossmintAddressEventFilter =
857
- TypedEventFilter<SetCrossmintAddressEvent>;
858
-
859
- export interface SetGlobalWalletLimitEventObject {
860
- globalWalletLimit: BigNumber;
861
- }
862
- export type SetGlobalWalletLimitEvent = TypedEvent<
863
- [BigNumber],
864
- SetGlobalWalletLimitEventObject
865
- >;
866
-
867
- export type SetGlobalWalletLimitEventFilter =
868
- TypedEventFilter<SetGlobalWalletLimitEvent>;
869
-
870
- export interface SetMaxMintableSupplyEventObject {
871
- maxMintableSupply: BigNumber;
872
- }
873
- export type SetMaxMintableSupplyEvent = TypedEvent<
874
- [BigNumber],
875
- SetMaxMintableSupplyEventObject
876
- >;
877
-
878
- export type SetMaxMintableSupplyEventFilter =
879
- TypedEventFilter<SetMaxMintableSupplyEvent>;
880
-
881
- export interface SetMintCurrencyEventObject {
882
- mintCurrency: string;
883
- }
884
- export type SetMintCurrencyEvent = TypedEvent<
885
- [string],
886
- SetMintCurrencyEventObject
887
- >;
888
-
889
- export type SetMintCurrencyEventFilter = TypedEventFilter<SetMintCurrencyEvent>;
890
-
891
- export interface SetMintableEventObject {
892
- mintable: boolean;
893
- }
894
- export type SetMintableEvent = TypedEvent<[boolean], SetMintableEventObject>;
895
-
896
- export type SetMintableEventFilter = TypedEventFilter<SetMintableEvent>;
897
-
898
- export interface SetTimestampExpirySecondsEventObject {
899
- expiry: BigNumber;
900
- }
901
- export type SetTimestampExpirySecondsEvent = TypedEvent<
902
- [BigNumber],
903
- SetTimestampExpirySecondsEventObject
904
- >;
905
-
906
- export type SetTimestampExpirySecondsEventFilter =
907
- TypedEventFilter<SetTimestampExpirySecondsEvent>;
908
-
909
- export interface TokenRoyaltySetEventObject {
910
- tokenId: BigNumber;
911
- receiver: string;
912
- feeNumerator: BigNumber;
913
- }
914
- export type TokenRoyaltySetEvent = TypedEvent<
915
- [BigNumber, string, BigNumber],
916
- TokenRoyaltySetEventObject
917
- >;
918
-
919
- export type TokenRoyaltySetEventFilter = TypedEventFilter<TokenRoyaltySetEvent>;
920
-
921
- export interface TransferEventObject {
922
- from: string;
923
- to: string;
924
- tokenId: BigNumber;
925
- }
926
- export type TransferEvent = TypedEvent<
927
- [string, string, BigNumber],
928
- TransferEventObject
929
- >;
930
-
931
- export type TransferEventFilter = TypedEventFilter<TransferEvent>;
932
-
933
- export interface TransferValidatorUpdatedEventObject {
934
- oldValidator: string;
935
- newValidator: string;
936
- }
937
- export type TransferValidatorUpdatedEvent = TypedEvent<
938
- [string, string],
939
- TransferValidatorUpdatedEventObject
940
- >;
941
-
942
- export type TransferValidatorUpdatedEventFilter =
943
- TypedEventFilter<TransferValidatorUpdatedEvent>;
944
-
945
- export interface UpdateStageEventObject {
946
- stage: BigNumber;
947
- price: BigNumber;
948
- mintFee: BigNumber;
949
- walletLimit: number;
950
- merkleRoot: string;
951
- maxStageSupply: number;
952
- startTimeUnixSeconds: BigNumber;
953
- endTimeUnixSeconds: BigNumber;
954
- }
955
- export type UpdateStageEvent = TypedEvent<
956
- [
957
- BigNumber,
958
- BigNumber,
959
- BigNumber,
960
- number,
961
- string,
962
- number,
963
- BigNumber,
964
- BigNumber
965
- ],
966
- UpdateStageEventObject
967
- >;
968
-
969
- export type UpdateStageEventFilter = TypedEventFilter<UpdateStageEvent>;
970
-
971
- export interface WithdrawEventObject {
972
- value: BigNumber;
973
- }
974
- export type WithdrawEvent = TypedEvent<[BigNumber], WithdrawEventObject>;
975
-
976
- export type WithdrawEventFilter = TypedEventFilter<WithdrawEvent>;
977
-
978
- export interface WithdrawERC20EventObject {
979
- mintCurrency: string;
980
- value: BigNumber;
981
- }
982
- export type WithdrawERC20Event = TypedEvent<
983
- [string, BigNumber],
984
- WithdrawERC20EventObject
985
- >;
986
-
987
- export type WithdrawERC20EventFilter = TypedEventFilter<WithdrawERC20Event>;
988
-
989
- export interface IKasuNFTsAbi extends BaseContract {
990
- connect(signerOrProvider: Signer | Provider | string): this;
991
- attach(addressOrName: string): this;
992
- deployed(): Promise<this>;
993
-
994
- interface: IKasuNFTsAbiInterface;
995
-
996
- queryFilter<TEvent extends TypedEvent>(
997
- event: TypedEventFilter<TEvent>,
998
- fromBlockOrBlockhash?: string | number | undefined,
999
- toBlock?: string | number | undefined
1000
- ): Promise<Array<TEvent>>;
1001
-
1002
- listeners<TEvent extends TypedEvent>(
1003
- eventFilter?: TypedEventFilter<TEvent>
1004
- ): Array<TypedListener<TEvent>>;
1005
- listeners(eventName?: string): Array<Listener>;
1006
- removeAllListeners<TEvent extends TypedEvent>(
1007
- eventFilter: TypedEventFilter<TEvent>
1008
- ): this;
1009
- removeAllListeners(eventName?: string): this;
1010
- off: OnEvent<this>;
1011
- on: OnEvent<this>;
1012
- once: OnEvent<this>;
1013
- removeListener: OnEvent<this>;
1014
-
1015
- functions: {
1016
- DEFAULT_OPERATOR_WHITELIST_ID(
1017
- overrides?: CallOverrides
1018
- ): Promise<[BigNumber]>;
1019
-
1020
- DEFAULT_TRANSFER_SECURITY_LEVEL(
1021
- overrides?: CallOverrides
1022
- ): Promise<[number]>;
1023
-
1024
- DEFAULT_TRANSFER_VALIDATOR(overrides?: CallOverrides): Promise<[string]>;
1025
-
1026
- FUND_RECEIVER(overrides?: CallOverrides): Promise<[string]>;
1027
-
1028
- approve(
1029
- to: string,
1030
- tokenId: BigNumberish,
1031
- overrides?: PayableOverrides & { from?: string }
1032
- ): Promise<ContractTransaction>;
1033
-
1034
- assertValidCosign(
1035
- minter: string,
1036
- qty: BigNumberish,
1037
- timestamp: BigNumberish,
1038
- signature: BytesLike,
1039
- overrides?: CallOverrides
1040
- ): Promise<[void]>;
1041
-
1042
- balanceOf(owner: string, overrides?: CallOverrides): Promise<[BigNumber]>;
1043
-
1044
- contractURI(overrides?: CallOverrides): Promise<[string]>;
1045
-
1046
- crossmint(
1047
- qty: BigNumberish,
1048
- to: string,
1049
- proof: BytesLike[],
1050
- timestamp: BigNumberish,
1051
- signature: BytesLike,
1052
- overrides?: PayableOverrides & { from?: string }
1053
- ): Promise<ContractTransaction>;
1054
-
1055
- explicitOwnershipOf(
1056
- tokenId: BigNumberish,
1057
- overrides?: CallOverrides
1058
- ): Promise<[IERC721A.TokenOwnershipStructOutput]>;
1059
-
1060
- explicitOwnershipsOf(
1061
- tokenIds: BigNumberish[],
1062
- overrides?: CallOverrides
1063
- ): Promise<[IERC721A.TokenOwnershipStructOutput[]]>;
1064
-
1065
- getActiveStageFromTimestamp(
1066
- timestamp: BigNumberish,
1067
- overrides?: CallOverrides
1068
- ): Promise<[BigNumber]>;
1069
-
1070
- getApproved(
1071
- tokenId: BigNumberish,
1072
- overrides?: CallOverrides
1073
- ): Promise<[string]>;
1074
-
1075
- getCosignDigest(
1076
- minter: string,
1077
- qty: BigNumberish,
1078
- timestamp: BigNumberish,
1079
- overrides?: CallOverrides
1080
- ): Promise<[string]>;
1081
-
1082
- getCosignNonce(
1083
- minter: string,
1084
- overrides?: CallOverrides
1085
- ): Promise<[BigNumber]>;
1086
-
1087
- getGlobalWalletLimit(overrides?: CallOverrides): Promise<[BigNumber]>;
1088
-
1089
- getMaxMintableSupply(overrides?: CallOverrides): Promise<[BigNumber]>;
1090
-
1091
- getMintCurrency(overrides?: CallOverrides): Promise<[string]>;
1092
-
1093
- getMintable(overrides?: CallOverrides): Promise<[boolean]>;
1094
-
1095
- getNumberStages(overrides?: CallOverrides): Promise<[BigNumber]>;
1096
-
1097
- getPermittedContractReceivers(
1098
- overrides?: CallOverrides
1099
- ): Promise<[string[]]>;
1100
-
1101
- getSecurityPolicy(
1102
- overrides?: CallOverrides
1103
- ): Promise<[CollectionSecurityPolicyStructOutput]>;
1104
-
1105
- getStageInfo(
1106
- index: BigNumberish,
1107
- overrides?: CallOverrides
1108
- ): Promise<[IERC721M.MintStageInfoStructOutput, number, BigNumber]>;
1109
-
1110
- getTransferValidator(overrides?: CallOverrides): Promise<[string]>;
1111
-
1112
- getWhitelistedOperators(overrides?: CallOverrides): Promise<[string[]]>;
1113
-
1114
- isApprovedForAll(
1115
- owner: string,
1116
- operator: string,
1117
- overrides?: CallOverrides
1118
- ): Promise<[boolean]>;
1119
-
1120
- isContractReceiverPermitted(
1121
- receiver: string,
1122
- overrides?: CallOverrides
1123
- ): Promise<[boolean]>;
1124
-
1125
- isOperatorWhitelisted(
1126
- operator: string,
1127
- overrides?: CallOverrides
1128
- ): Promise<[boolean]>;
1129
-
1130
- isTransferAllowed(
1131
- caller: string,
1132
- from: string,
1133
- to: string,
1134
- overrides?: CallOverrides
1135
- ): Promise<[boolean]>;
1136
-
1137
- mint(
1138
- qty: BigNumberish,
1139
- proof: BytesLike[],
1140
- timestamp: BigNumberish,
1141
- signature: BytesLike,
1142
- overrides?: PayableOverrides & { from?: string }
1143
- ): Promise<ContractTransaction>;
1144
-
1145
- mintWithLimit(
1146
- qty: BigNumberish,
1147
- limit: BigNumberish,
1148
- proof: BytesLike[],
1149
- timestamp: BigNumberish,
1150
- signature: BytesLike,
1151
- overrides?: PayableOverrides & { from?: string }
1152
- ): Promise<ContractTransaction>;
1153
-
1154
- name(overrides?: CallOverrides): Promise<[string]>;
1155
-
1156
- owner(overrides?: CallOverrides): Promise<[string]>;
1157
-
1158
- ownerMint(
1159
- qty: BigNumberish,
1160
- to: string,
1161
- overrides?: Overrides & { from?: string }
1162
- ): Promise<ContractTransaction>;
1163
-
1164
- ownerOf(
1165
- tokenId: BigNumberish,
1166
- overrides?: CallOverrides
1167
- ): Promise<[string]>;
1168
-
1169
- renounceOwnership(
1170
- overrides?: Overrides & { from?: string }
1171
- ): Promise<ContractTransaction>;
1172
-
1173
- royaltyInfo(
1174
- tokenId: BigNumberish,
1175
- salePrice: BigNumberish,
1176
- overrides?: CallOverrides
1177
- ): Promise<[string, BigNumber]>;
1178
-
1179
- "safeTransferFrom(address,address,uint256)"(
1180
- from: string,
1181
- to: string,
1182
- tokenId: BigNumberish,
1183
- overrides?: PayableOverrides & { from?: string }
1184
- ): Promise<ContractTransaction>;
1185
-
1186
- "safeTransferFrom(address,address,uint256,bytes)"(
1187
- from: string,
1188
- to: string,
1189
- tokenId: BigNumberish,
1190
- _data: BytesLike,
1191
- overrides?: PayableOverrides & { from?: string }
1192
- ): Promise<ContractTransaction>;
1193
-
1194
- setApprovalForAll(
1195
- operator: string,
1196
- approved: boolean,
1197
- overrides?: Overrides & { from?: string }
1198
- ): Promise<ContractTransaction>;
1199
-
1200
- setBaseURI(
1201
- baseURI: string,
1202
- overrides?: Overrides & { from?: string }
1203
- ): Promise<ContractTransaction>;
1204
-
1205
- setContractURI(
1206
- uri: string,
1207
- overrides?: Overrides & { from?: string }
1208
- ): Promise<ContractTransaction>;
1209
-
1210
- setCosigner(
1211
- cosigner: string,
1212
- overrides?: Overrides & { from?: string }
1213
- ): Promise<ContractTransaction>;
1214
-
1215
- setCrossmintAddress(
1216
- crossmintAddress: string,
1217
- overrides?: Overrides & { from?: string }
1218
- ): Promise<ContractTransaction>;
1219
-
1220
- setDefaultRoyalty(
1221
- receiver: string,
1222
- feeNumerator: BigNumberish,
1223
- overrides?: Overrides & { from?: string }
1224
- ): Promise<ContractTransaction>;
1225
-
1226
- setGlobalWalletLimit(
1227
- globalWalletLimit: BigNumberish,
1228
- overrides?: Overrides & { from?: string }
1229
- ): Promise<ContractTransaction>;
1230
-
1231
- setMaxMintableSupply(
1232
- maxMintableSupply: BigNumberish,
1233
- overrides?: Overrides & { from?: string }
1234
- ): Promise<ContractTransaction>;
1235
-
1236
- setMintable(
1237
- mintable: boolean,
1238
- overrides?: Overrides & { from?: string }
1239
- ): Promise<ContractTransaction>;
1240
-
1241
- setStages(
1242
- newStages: IERC721M.MintStageInfoStruct[],
1243
- overrides?: Overrides & { from?: string }
1244
- ): Promise<ContractTransaction>;
1245
-
1246
- setTimestampExpirySeconds(
1247
- expiry: BigNumberish,
1248
- overrides?: Overrides & { from?: string }
1249
- ): Promise<ContractTransaction>;
1250
-
1251
- setToCustomSecurityPolicy(
1252
- level: BigNumberish,
1253
- operatorWhitelistId: BigNumberish,
1254
- permittedContractReceiversAllowlistId: BigNumberish,
1255
- overrides?: Overrides & { from?: string }
1256
- ): Promise<ContractTransaction>;
1257
-
1258
- setToCustomValidatorAndSecurityPolicy(
1259
- validator: string,
1260
- level: BigNumberish,
1261
- operatorWhitelistId: BigNumberish,
1262
- permittedContractReceiversAllowlistId: BigNumberish,
1263
- overrides?: Overrides & { from?: string }
1264
- ): Promise<ContractTransaction>;
1265
-
1266
- setToDefaultSecurityPolicy(
1267
- overrides?: Overrides & { from?: string }
1268
- ): Promise<ContractTransaction>;
1269
-
1270
- setTokenRoyalty(
1271
- tokenId: BigNumberish,
1272
- receiver: string,
1273
- feeNumerator: BigNumberish,
1274
- overrides?: Overrides & { from?: string }
1275
- ): Promise<ContractTransaction>;
1276
-
1277
- setTokenURISuffix(
1278
- suffix: string,
1279
- overrides?: Overrides & { from?: string }
1280
- ): Promise<ContractTransaction>;
1281
-
1282
- setTransferValidator(
1283
- transferValidator_: string,
1284
- overrides?: Overrides & { from?: string }
1285
- ): Promise<ContractTransaction>;
1286
-
1287
- supportsInterface(
1288
- interfaceId: BytesLike,
1289
- overrides?: CallOverrides
1290
- ): Promise<[boolean]>;
1291
-
1292
- symbol(overrides?: CallOverrides): Promise<[string]>;
1293
-
1294
- tokenURI(
1295
- tokenId: BigNumberish,
1296
- overrides?: CallOverrides
1297
- ): Promise<[string]>;
1298
-
1299
- tokensOfOwner(
1300
- owner: string,
1301
- overrides?: CallOverrides
1302
- ): Promise<[BigNumber[]]>;
1303
-
1304
- tokensOfOwnerIn(
1305
- owner: string,
1306
- start: BigNumberish,
1307
- stop: BigNumberish,
1308
- overrides?: CallOverrides
1309
- ): Promise<[BigNumber[]]>;
1310
-
1311
- totalMintedByAddress(
1312
- a: string,
1313
- overrides?: CallOverrides
1314
- ): Promise<[BigNumber]>;
1315
-
1316
- totalSupply(overrides?: CallOverrides): Promise<[BigNumber]>;
1317
-
1318
- transferFrom(
1319
- from: string,
1320
- to: string,
1321
- tokenId: BigNumberish,
1322
- overrides?: PayableOverrides & { from?: string }
1323
- ): Promise<ContractTransaction>;
1324
-
1325
- transferOwnership(
1326
- newOwner: string,
1327
- overrides?: Overrides & { from?: string }
1328
- ): Promise<ContractTransaction>;
1329
-
1330
- withdraw(
1331
- overrides?: Overrides & { from?: string }
1332
- ): Promise<ContractTransaction>;
1333
-
1334
- withdrawERC20(
1335
- overrides?: Overrides & { from?: string }
1336
- ): Promise<ContractTransaction>;
1337
- };
1338
-
1339
- DEFAULT_OPERATOR_WHITELIST_ID(overrides?: CallOverrides): Promise<BigNumber>;
1340
-
1341
- DEFAULT_TRANSFER_SECURITY_LEVEL(overrides?: CallOverrides): Promise<number>;
1342
-
1343
- DEFAULT_TRANSFER_VALIDATOR(overrides?: CallOverrides): Promise<string>;
1344
-
1345
- FUND_RECEIVER(overrides?: CallOverrides): Promise<string>;
1346
-
1347
- approve(
1348
- to: string,
1349
- tokenId: BigNumberish,
1350
- overrides?: PayableOverrides & { from?: string }
1351
- ): Promise<ContractTransaction>;
1352
-
1353
- assertValidCosign(
1354
- minter: string,
1355
- qty: BigNumberish,
1356
- timestamp: BigNumberish,
1357
- signature: BytesLike,
1358
- overrides?: CallOverrides
1359
- ): Promise<void>;
1360
-
1361
- balanceOf(owner: string, overrides?: CallOverrides): Promise<BigNumber>;
1362
-
1363
- contractURI(overrides?: CallOverrides): Promise<string>;
1364
-
1365
- crossmint(
1366
- qty: BigNumberish,
1367
- to: string,
1368
- proof: BytesLike[],
1369
- timestamp: BigNumberish,
1370
- signature: BytesLike,
1371
- overrides?: PayableOverrides & { from?: string }
1372
- ): Promise<ContractTransaction>;
1373
-
1374
- explicitOwnershipOf(
1375
- tokenId: BigNumberish,
1376
- overrides?: CallOverrides
1377
- ): Promise<IERC721A.TokenOwnershipStructOutput>;
1378
-
1379
- explicitOwnershipsOf(
1380
- tokenIds: BigNumberish[],
1381
- overrides?: CallOverrides
1382
- ): Promise<IERC721A.TokenOwnershipStructOutput[]>;
1383
-
1384
- getActiveStageFromTimestamp(
1385
- timestamp: BigNumberish,
1386
- overrides?: CallOverrides
1387
- ): Promise<BigNumber>;
1388
-
1389
- getApproved(
1390
- tokenId: BigNumberish,
1391
- overrides?: CallOverrides
1392
- ): Promise<string>;
1393
-
1394
- getCosignDigest(
1395
- minter: string,
1396
- qty: BigNumberish,
1397
- timestamp: BigNumberish,
1398
- overrides?: CallOverrides
1399
- ): Promise<string>;
1400
-
1401
- getCosignNonce(minter: string, overrides?: CallOverrides): Promise<BigNumber>;
1402
-
1403
- getGlobalWalletLimit(overrides?: CallOverrides): Promise<BigNumber>;
1404
-
1405
- getMaxMintableSupply(overrides?: CallOverrides): Promise<BigNumber>;
1406
-
1407
- getMintCurrency(overrides?: CallOverrides): Promise<string>;
1408
-
1409
- getMintable(overrides?: CallOverrides): Promise<boolean>;
1410
-
1411
- getNumberStages(overrides?: CallOverrides): Promise<BigNumber>;
1412
-
1413
- getPermittedContractReceivers(overrides?: CallOverrides): Promise<string[]>;
1414
-
1415
- getSecurityPolicy(
1416
- overrides?: CallOverrides
1417
- ): Promise<CollectionSecurityPolicyStructOutput>;
1418
-
1419
- getStageInfo(
1420
- index: BigNumberish,
1421
- overrides?: CallOverrides
1422
- ): Promise<[IERC721M.MintStageInfoStructOutput, number, BigNumber]>;
1423
-
1424
- getTransferValidator(overrides?: CallOverrides): Promise<string>;
1425
-
1426
- getWhitelistedOperators(overrides?: CallOverrides): Promise<string[]>;
1427
-
1428
- isApprovedForAll(
1429
- owner: string,
1430
- operator: string,
1431
- overrides?: CallOverrides
1432
- ): Promise<boolean>;
1433
-
1434
- isContractReceiverPermitted(
1435
- receiver: string,
1436
- overrides?: CallOverrides
1437
- ): Promise<boolean>;
1438
-
1439
- isOperatorWhitelisted(
1440
- operator: string,
1441
- overrides?: CallOverrides
1442
- ): Promise<boolean>;
1443
-
1444
- isTransferAllowed(
1445
- caller: string,
1446
- from: string,
1447
- to: string,
1448
- overrides?: CallOverrides
1449
- ): Promise<boolean>;
1450
-
1451
- mint(
1452
- qty: BigNumberish,
1453
- proof: BytesLike[],
1454
- timestamp: BigNumberish,
1455
- signature: BytesLike,
1456
- overrides?: PayableOverrides & { from?: string }
1457
- ): Promise<ContractTransaction>;
1458
-
1459
- mintWithLimit(
1460
- qty: BigNumberish,
1461
- limit: BigNumberish,
1462
- proof: BytesLike[],
1463
- timestamp: BigNumberish,
1464
- signature: BytesLike,
1465
- overrides?: PayableOverrides & { from?: string }
1466
- ): Promise<ContractTransaction>;
1467
-
1468
- name(overrides?: CallOverrides): Promise<string>;
1469
-
1470
- owner(overrides?: CallOverrides): Promise<string>;
1471
-
1472
- ownerMint(
1473
- qty: BigNumberish,
1474
- to: string,
1475
- overrides?: Overrides & { from?: string }
1476
- ): Promise<ContractTransaction>;
1477
-
1478
- ownerOf(tokenId: BigNumberish, overrides?: CallOverrides): Promise<string>;
1479
-
1480
- renounceOwnership(
1481
- overrides?: Overrides & { from?: string }
1482
- ): Promise<ContractTransaction>;
1483
-
1484
- royaltyInfo(
1485
- tokenId: BigNumberish,
1486
- salePrice: BigNumberish,
1487
- overrides?: CallOverrides
1488
- ): Promise<[string, BigNumber]>;
1489
-
1490
- "safeTransferFrom(address,address,uint256)"(
1491
- from: string,
1492
- to: string,
1493
- tokenId: BigNumberish,
1494
- overrides?: PayableOverrides & { from?: string }
1495
- ): Promise<ContractTransaction>;
1496
-
1497
- "safeTransferFrom(address,address,uint256,bytes)"(
1498
- from: string,
1499
- to: string,
1500
- tokenId: BigNumberish,
1501
- _data: BytesLike,
1502
- overrides?: PayableOverrides & { from?: string }
1503
- ): Promise<ContractTransaction>;
1504
-
1505
- setApprovalForAll(
1506
- operator: string,
1507
- approved: boolean,
1508
- overrides?: Overrides & { from?: string }
1509
- ): Promise<ContractTransaction>;
1510
-
1511
- setBaseURI(
1512
- baseURI: string,
1513
- overrides?: Overrides & { from?: string }
1514
- ): Promise<ContractTransaction>;
1515
-
1516
- setContractURI(
1517
- uri: string,
1518
- overrides?: Overrides & { from?: string }
1519
- ): Promise<ContractTransaction>;
1520
-
1521
- setCosigner(
1522
- cosigner: string,
1523
- overrides?: Overrides & { from?: string }
1524
- ): Promise<ContractTransaction>;
1525
-
1526
- setCrossmintAddress(
1527
- crossmintAddress: string,
1528
- overrides?: Overrides & { from?: string }
1529
- ): Promise<ContractTransaction>;
1530
-
1531
- setDefaultRoyalty(
1532
- receiver: string,
1533
- feeNumerator: BigNumberish,
1534
- overrides?: Overrides & { from?: string }
1535
- ): Promise<ContractTransaction>;
1536
-
1537
- setGlobalWalletLimit(
1538
- globalWalletLimit: BigNumberish,
1539
- overrides?: Overrides & { from?: string }
1540
- ): Promise<ContractTransaction>;
1541
-
1542
- setMaxMintableSupply(
1543
- maxMintableSupply: BigNumberish,
1544
- overrides?: Overrides & { from?: string }
1545
- ): Promise<ContractTransaction>;
1546
-
1547
- setMintable(
1548
- mintable: boolean,
1549
- overrides?: Overrides & { from?: string }
1550
- ): Promise<ContractTransaction>;
1551
-
1552
- setStages(
1553
- newStages: IERC721M.MintStageInfoStruct[],
1554
- overrides?: Overrides & { from?: string }
1555
- ): Promise<ContractTransaction>;
1556
-
1557
- setTimestampExpirySeconds(
1558
- expiry: BigNumberish,
1559
- overrides?: Overrides & { from?: string }
1560
- ): Promise<ContractTransaction>;
1561
-
1562
- setToCustomSecurityPolicy(
1563
- level: BigNumberish,
1564
- operatorWhitelistId: BigNumberish,
1565
- permittedContractReceiversAllowlistId: BigNumberish,
1566
- overrides?: Overrides & { from?: string }
1567
- ): Promise<ContractTransaction>;
1568
-
1569
- setToCustomValidatorAndSecurityPolicy(
1570
- validator: string,
1571
- level: BigNumberish,
1572
- operatorWhitelistId: BigNumberish,
1573
- permittedContractReceiversAllowlistId: BigNumberish,
1574
- overrides?: Overrides & { from?: string }
1575
- ): Promise<ContractTransaction>;
1576
-
1577
- setToDefaultSecurityPolicy(
1578
- overrides?: Overrides & { from?: string }
1579
- ): Promise<ContractTransaction>;
1580
-
1581
- setTokenRoyalty(
1582
- tokenId: BigNumberish,
1583
- receiver: string,
1584
- feeNumerator: BigNumberish,
1585
- overrides?: Overrides & { from?: string }
1586
- ): Promise<ContractTransaction>;
1587
-
1588
- setTokenURISuffix(
1589
- suffix: string,
1590
- overrides?: Overrides & { from?: string }
1591
- ): Promise<ContractTransaction>;
1592
-
1593
- setTransferValidator(
1594
- transferValidator_: string,
1595
- overrides?: Overrides & { from?: string }
1596
- ): Promise<ContractTransaction>;
1597
-
1598
- supportsInterface(
1599
- interfaceId: BytesLike,
1600
- overrides?: CallOverrides
1601
- ): Promise<boolean>;
1602
-
1603
- symbol(overrides?: CallOverrides): Promise<string>;
1604
-
1605
- tokenURI(tokenId: BigNumberish, overrides?: CallOverrides): Promise<string>;
1606
-
1607
- tokensOfOwner(owner: string, overrides?: CallOverrides): Promise<BigNumber[]>;
1608
-
1609
- tokensOfOwnerIn(
1610
- owner: string,
1611
- start: BigNumberish,
1612
- stop: BigNumberish,
1613
- overrides?: CallOverrides
1614
- ): Promise<BigNumber[]>;
1615
-
1616
- totalMintedByAddress(
1617
- a: string,
1618
- overrides?: CallOverrides
1619
- ): Promise<BigNumber>;
1620
-
1621
- totalSupply(overrides?: CallOverrides): Promise<BigNumber>;
1622
-
1623
- transferFrom(
1624
- from: string,
1625
- to: string,
1626
- tokenId: BigNumberish,
1627
- overrides?: PayableOverrides & { from?: string }
1628
- ): Promise<ContractTransaction>;
1629
-
1630
- transferOwnership(
1631
- newOwner: string,
1632
- overrides?: Overrides & { from?: string }
1633
- ): Promise<ContractTransaction>;
1634
-
1635
- withdraw(
1636
- overrides?: Overrides & { from?: string }
1637
- ): Promise<ContractTransaction>;
1638
-
1639
- withdrawERC20(
1640
- overrides?: Overrides & { from?: string }
1641
- ): Promise<ContractTransaction>;
1642
-
1643
- callStatic: {
1644
- DEFAULT_OPERATOR_WHITELIST_ID(
1645
- overrides?: CallOverrides
1646
- ): Promise<BigNumber>;
1647
-
1648
- DEFAULT_TRANSFER_SECURITY_LEVEL(overrides?: CallOverrides): Promise<number>;
1649
-
1650
- DEFAULT_TRANSFER_VALIDATOR(overrides?: CallOverrides): Promise<string>;
1651
-
1652
- FUND_RECEIVER(overrides?: CallOverrides): Promise<string>;
1653
-
1654
- approve(
1655
- to: string,
1656
- tokenId: BigNumberish,
1657
- overrides?: CallOverrides
1658
- ): Promise<void>;
1659
-
1660
- assertValidCosign(
1661
- minter: string,
1662
- qty: BigNumberish,
1663
- timestamp: BigNumberish,
1664
- signature: BytesLike,
1665
- overrides?: CallOverrides
1666
- ): Promise<void>;
1667
-
1668
- balanceOf(owner: string, overrides?: CallOverrides): Promise<BigNumber>;
1669
-
1670
- contractURI(overrides?: CallOverrides): Promise<string>;
1671
-
1672
- crossmint(
1673
- qty: BigNumberish,
1674
- to: string,
1675
- proof: BytesLike[],
1676
- timestamp: BigNumberish,
1677
- signature: BytesLike,
1678
- overrides?: CallOverrides
1679
- ): Promise<void>;
1680
-
1681
- explicitOwnershipOf(
1682
- tokenId: BigNumberish,
1683
- overrides?: CallOverrides
1684
- ): Promise<IERC721A.TokenOwnershipStructOutput>;
1685
-
1686
- explicitOwnershipsOf(
1687
- tokenIds: BigNumberish[],
1688
- overrides?: CallOverrides
1689
- ): Promise<IERC721A.TokenOwnershipStructOutput[]>;
1690
-
1691
- getActiveStageFromTimestamp(
1692
- timestamp: BigNumberish,
1693
- overrides?: CallOverrides
1694
- ): Promise<BigNumber>;
1695
-
1696
- getApproved(
1697
- tokenId: BigNumberish,
1698
- overrides?: CallOverrides
1699
- ): Promise<string>;
1700
-
1701
- getCosignDigest(
1702
- minter: string,
1703
- qty: BigNumberish,
1704
- timestamp: BigNumberish,
1705
- overrides?: CallOverrides
1706
- ): Promise<string>;
1707
-
1708
- getCosignNonce(
1709
- minter: string,
1710
- overrides?: CallOverrides
1711
- ): Promise<BigNumber>;
1712
-
1713
- getGlobalWalletLimit(overrides?: CallOverrides): Promise<BigNumber>;
1714
-
1715
- getMaxMintableSupply(overrides?: CallOverrides): Promise<BigNumber>;
1716
-
1717
- getMintCurrency(overrides?: CallOverrides): Promise<string>;
1718
-
1719
- getMintable(overrides?: CallOverrides): Promise<boolean>;
1720
-
1721
- getNumberStages(overrides?: CallOverrides): Promise<BigNumber>;
1722
-
1723
- getPermittedContractReceivers(overrides?: CallOverrides): Promise<string[]>;
1724
-
1725
- getSecurityPolicy(
1726
- overrides?: CallOverrides
1727
- ): Promise<CollectionSecurityPolicyStructOutput>;
1728
-
1729
- getStageInfo(
1730
- index: BigNumberish,
1731
- overrides?: CallOverrides
1732
- ): Promise<[IERC721M.MintStageInfoStructOutput, number, BigNumber]>;
1733
-
1734
- getTransferValidator(overrides?: CallOverrides): Promise<string>;
1735
-
1736
- getWhitelistedOperators(overrides?: CallOverrides): Promise<string[]>;
1737
-
1738
- isApprovedForAll(
1739
- owner: string,
1740
- operator: string,
1741
- overrides?: CallOverrides
1742
- ): Promise<boolean>;
1743
-
1744
- isContractReceiverPermitted(
1745
- receiver: string,
1746
- overrides?: CallOverrides
1747
- ): Promise<boolean>;
1748
-
1749
- isOperatorWhitelisted(
1750
- operator: string,
1751
- overrides?: CallOverrides
1752
- ): Promise<boolean>;
1753
-
1754
- isTransferAllowed(
1755
- caller: string,
1756
- from: string,
1757
- to: string,
1758
- overrides?: CallOverrides
1759
- ): Promise<boolean>;
1760
-
1761
- mint(
1762
- qty: BigNumberish,
1763
- proof: BytesLike[],
1764
- timestamp: BigNumberish,
1765
- signature: BytesLike,
1766
- overrides?: CallOverrides
1767
- ): Promise<void>;
1768
-
1769
- mintWithLimit(
1770
- qty: BigNumberish,
1771
- limit: BigNumberish,
1772
- proof: BytesLike[],
1773
- timestamp: BigNumberish,
1774
- signature: BytesLike,
1775
- overrides?: CallOverrides
1776
- ): Promise<void>;
1777
-
1778
- name(overrides?: CallOverrides): Promise<string>;
1779
-
1780
- owner(overrides?: CallOverrides): Promise<string>;
1781
-
1782
- ownerMint(
1783
- qty: BigNumberish,
1784
- to: string,
1785
- overrides?: CallOverrides
1786
- ): Promise<void>;
1787
-
1788
- ownerOf(tokenId: BigNumberish, overrides?: CallOverrides): Promise<string>;
1789
-
1790
- renounceOwnership(overrides?: CallOverrides): Promise<void>;
1791
-
1792
- royaltyInfo(
1793
- tokenId: BigNumberish,
1794
- salePrice: BigNumberish,
1795
- overrides?: CallOverrides
1796
- ): Promise<[string, BigNumber]>;
1797
-
1798
- "safeTransferFrom(address,address,uint256)"(
1799
- from: string,
1800
- to: string,
1801
- tokenId: BigNumberish,
1802
- overrides?: CallOverrides
1803
- ): Promise<void>;
1804
-
1805
- "safeTransferFrom(address,address,uint256,bytes)"(
1806
- from: string,
1807
- to: string,
1808
- tokenId: BigNumberish,
1809
- _data: BytesLike,
1810
- overrides?: CallOverrides
1811
- ): Promise<void>;
1812
-
1813
- setApprovalForAll(
1814
- operator: string,
1815
- approved: boolean,
1816
- overrides?: CallOverrides
1817
- ): Promise<void>;
1818
-
1819
- setBaseURI(baseURI: string, overrides?: CallOverrides): Promise<void>;
1820
-
1821
- setContractURI(uri: string, overrides?: CallOverrides): Promise<void>;
1822
-
1823
- setCosigner(cosigner: string, overrides?: CallOverrides): Promise<void>;
1824
-
1825
- setCrossmintAddress(
1826
- crossmintAddress: string,
1827
- overrides?: CallOverrides
1828
- ): Promise<void>;
1829
-
1830
- setDefaultRoyalty(
1831
- receiver: string,
1832
- feeNumerator: BigNumberish,
1833
- overrides?: CallOverrides
1834
- ): Promise<void>;
1835
-
1836
- setGlobalWalletLimit(
1837
- globalWalletLimit: BigNumberish,
1838
- overrides?: CallOverrides
1839
- ): Promise<void>;
1840
-
1841
- setMaxMintableSupply(
1842
- maxMintableSupply: BigNumberish,
1843
- overrides?: CallOverrides
1844
- ): Promise<void>;
1845
-
1846
- setMintable(mintable: boolean, overrides?: CallOverrides): Promise<void>;
1847
-
1848
- setStages(
1849
- newStages: IERC721M.MintStageInfoStruct[],
1850
- overrides?: CallOverrides
1851
- ): Promise<void>;
1852
-
1853
- setTimestampExpirySeconds(
1854
- expiry: BigNumberish,
1855
- overrides?: CallOverrides
1856
- ): Promise<void>;
1857
-
1858
- setToCustomSecurityPolicy(
1859
- level: BigNumberish,
1860
- operatorWhitelistId: BigNumberish,
1861
- permittedContractReceiversAllowlistId: BigNumberish,
1862
- overrides?: CallOverrides
1863
- ): Promise<void>;
1864
-
1865
- setToCustomValidatorAndSecurityPolicy(
1866
- validator: string,
1867
- level: BigNumberish,
1868
- operatorWhitelistId: BigNumberish,
1869
- permittedContractReceiversAllowlistId: BigNumberish,
1870
- overrides?: CallOverrides
1871
- ): Promise<void>;
1872
-
1873
- setToDefaultSecurityPolicy(overrides?: CallOverrides): Promise<void>;
1874
-
1875
- setTokenRoyalty(
1876
- tokenId: BigNumberish,
1877
- receiver: string,
1878
- feeNumerator: BigNumberish,
1879
- overrides?: CallOverrides
1880
- ): Promise<void>;
1881
-
1882
- setTokenURISuffix(suffix: string, overrides?: CallOverrides): Promise<void>;
1883
-
1884
- setTransferValidator(
1885
- transferValidator_: string,
1886
- overrides?: CallOverrides
1887
- ): Promise<void>;
1888
-
1889
- supportsInterface(
1890
- interfaceId: BytesLike,
1891
- overrides?: CallOverrides
1892
- ): Promise<boolean>;
1893
-
1894
- symbol(overrides?: CallOverrides): Promise<string>;
1895
-
1896
- tokenURI(tokenId: BigNumberish, overrides?: CallOverrides): Promise<string>;
1897
-
1898
- tokensOfOwner(
1899
- owner: string,
1900
- overrides?: CallOverrides
1901
- ): Promise<BigNumber[]>;
1902
-
1903
- tokensOfOwnerIn(
1904
- owner: string,
1905
- start: BigNumberish,
1906
- stop: BigNumberish,
1907
- overrides?: CallOverrides
1908
- ): Promise<BigNumber[]>;
1909
-
1910
- totalMintedByAddress(
1911
- a: string,
1912
- overrides?: CallOverrides
1913
- ): Promise<BigNumber>;
1914
-
1915
- totalSupply(overrides?: CallOverrides): Promise<BigNumber>;
1916
-
1917
- transferFrom(
1918
- from: string,
1919
- to: string,
1920
- tokenId: BigNumberish,
1921
- overrides?: CallOverrides
1922
- ): Promise<void>;
1923
-
1924
- transferOwnership(
1925
- newOwner: string,
1926
- overrides?: CallOverrides
1927
- ): Promise<void>;
1928
-
1929
- withdraw(overrides?: CallOverrides): Promise<void>;
1930
-
1931
- withdrawERC20(overrides?: CallOverrides): Promise<void>;
1932
- };
1933
-
1934
- filters: {
1935
- "Approval(address,address,uint256)"(
1936
- owner?: string | null,
1937
- approved?: string | null,
1938
- tokenId?: BigNumberish | null
1939
- ): ApprovalEventFilter;
1940
- Approval(
1941
- owner?: string | null,
1942
- approved?: string | null,
1943
- tokenId?: BigNumberish | null
1944
- ): ApprovalEventFilter;
1945
-
1946
- "ApprovalForAll(address,address,bool)"(
1947
- owner?: string | null,
1948
- operator?: string | null,
1949
- approved?: null
1950
- ): ApprovalForAllEventFilter;
1951
- ApprovalForAll(
1952
- owner?: string | null,
1953
- operator?: string | null,
1954
- approved?: null
1955
- ): ApprovalForAllEventFilter;
1956
-
1957
- "ConsecutiveTransfer(uint256,uint256,address,address)"(
1958
- fromTokenId?: BigNumberish | null,
1959
- toTokenId?: null,
1960
- from?: string | null,
1961
- to?: string | null
1962
- ): ConsecutiveTransferEventFilter;
1963
- ConsecutiveTransfer(
1964
- fromTokenId?: BigNumberish | null,
1965
- toTokenId?: null,
1966
- from?: string | null,
1967
- to?: string | null
1968
- ): ConsecutiveTransferEventFilter;
1969
-
1970
- "DefaultRoyaltySet(address,uint96)"(
1971
- receiver?: string | null,
1972
- feeNumerator?: null
1973
- ): DefaultRoyaltySetEventFilter;
1974
- DefaultRoyaltySet(
1975
- receiver?: string | null,
1976
- feeNumerator?: null
1977
- ): DefaultRoyaltySetEventFilter;
1978
-
1979
- "OwnershipTransferred(address,address)"(
1980
- previousOwner?: string | null,
1981
- newOwner?: string | null
1982
- ): OwnershipTransferredEventFilter;
1983
- OwnershipTransferred(
1984
- previousOwner?: string | null,
1985
- newOwner?: string | null
1986
- ): OwnershipTransferredEventFilter;
1987
-
1988
- "SetActiveStage(uint256)"(activeStage?: null): SetActiveStageEventFilter;
1989
- SetActiveStage(activeStage?: null): SetActiveStageEventFilter;
1990
-
1991
- "SetBaseURI(string)"(baseURI?: null): SetBaseURIEventFilter;
1992
- SetBaseURI(baseURI?: null): SetBaseURIEventFilter;
1993
-
1994
- "SetCosigner(address)"(cosigner?: null): SetCosignerEventFilter;
1995
- SetCosigner(cosigner?: null): SetCosignerEventFilter;
1996
-
1997
- "SetCrossmintAddress(address)"(
1998
- crossmintAddress?: null
1999
- ): SetCrossmintAddressEventFilter;
2000
- SetCrossmintAddress(
2001
- crossmintAddress?: null
2002
- ): SetCrossmintAddressEventFilter;
2003
-
2004
- "SetGlobalWalletLimit(uint256)"(
2005
- globalWalletLimit?: null
2006
- ): SetGlobalWalletLimitEventFilter;
2007
- SetGlobalWalletLimit(
2008
- globalWalletLimit?: null
2009
- ): SetGlobalWalletLimitEventFilter;
2010
-
2011
- "SetMaxMintableSupply(uint256)"(
2012
- maxMintableSupply?: null
2013
- ): SetMaxMintableSupplyEventFilter;
2014
- SetMaxMintableSupply(
2015
- maxMintableSupply?: null
2016
- ): SetMaxMintableSupplyEventFilter;
2017
-
2018
- "SetMintCurrency(address)"(mintCurrency?: null): SetMintCurrencyEventFilter;
2019
- SetMintCurrency(mintCurrency?: null): SetMintCurrencyEventFilter;
2020
-
2021
- "SetMintable(bool)"(mintable?: null): SetMintableEventFilter;
2022
- SetMintable(mintable?: null): SetMintableEventFilter;
2023
-
2024
- "SetTimestampExpirySeconds(uint64)"(
2025
- expiry?: null
2026
- ): SetTimestampExpirySecondsEventFilter;
2027
- SetTimestampExpirySeconds(
2028
- expiry?: null
2029
- ): SetTimestampExpirySecondsEventFilter;
2030
-
2031
- "TokenRoyaltySet(uint256,address,uint96)"(
2032
- tokenId?: BigNumberish | null,
2033
- receiver?: string | null,
2034
- feeNumerator?: null
2035
- ): TokenRoyaltySetEventFilter;
2036
- TokenRoyaltySet(
2037
- tokenId?: BigNumberish | null,
2038
- receiver?: string | null,
2039
- feeNumerator?: null
2040
- ): TokenRoyaltySetEventFilter;
2041
-
2042
- "Transfer(address,address,uint256)"(
2043
- from?: string | null,
2044
- to?: string | null,
2045
- tokenId?: BigNumberish | null
2046
- ): TransferEventFilter;
2047
- Transfer(
2048
- from?: string | null,
2049
- to?: string | null,
2050
- tokenId?: BigNumberish | null
2051
- ): TransferEventFilter;
2052
-
2053
- "TransferValidatorUpdated(address,address)"(
2054
- oldValidator?: null,
2055
- newValidator?: null
2056
- ): TransferValidatorUpdatedEventFilter;
2057
- TransferValidatorUpdated(
2058
- oldValidator?: null,
2059
- newValidator?: null
2060
- ): TransferValidatorUpdatedEventFilter;
2061
-
2062
- "UpdateStage(uint256,uint80,uint80,uint32,bytes32,uint24,uint64,uint64)"(
2063
- stage?: null,
2064
- price?: null,
2065
- mintFee?: null,
2066
- walletLimit?: null,
2067
- merkleRoot?: null,
2068
- maxStageSupply?: null,
2069
- startTimeUnixSeconds?: null,
2070
- endTimeUnixSeconds?: null
2071
- ): UpdateStageEventFilter;
2072
- UpdateStage(
2073
- stage?: null,
2074
- price?: null,
2075
- mintFee?: null,
2076
- walletLimit?: null,
2077
- merkleRoot?: null,
2078
- maxStageSupply?: null,
2079
- startTimeUnixSeconds?: null,
2080
- endTimeUnixSeconds?: null
2081
- ): UpdateStageEventFilter;
2082
-
2083
- "Withdraw(uint256)"(value?: null): WithdrawEventFilter;
2084
- Withdraw(value?: null): WithdrawEventFilter;
2085
-
2086
- "WithdrawERC20(address,uint256)"(
2087
- mintCurrency?: null,
2088
- value?: null
2089
- ): WithdrawERC20EventFilter;
2090
- WithdrawERC20(mintCurrency?: null, value?: null): WithdrawERC20EventFilter;
2091
- };
2092
-
2093
- estimateGas: {
2094
- DEFAULT_OPERATOR_WHITELIST_ID(
2095
- overrides?: CallOverrides
2096
- ): Promise<BigNumber>;
2097
-
2098
- DEFAULT_TRANSFER_SECURITY_LEVEL(
2099
- overrides?: CallOverrides
2100
- ): Promise<BigNumber>;
2101
-
2102
- DEFAULT_TRANSFER_VALIDATOR(overrides?: CallOverrides): Promise<BigNumber>;
2103
-
2104
- FUND_RECEIVER(overrides?: CallOverrides): Promise<BigNumber>;
2105
-
2106
- approve(
2107
- to: string,
2108
- tokenId: BigNumberish,
2109
- overrides?: PayableOverrides & { from?: string }
2110
- ): Promise<BigNumber>;
2111
-
2112
- assertValidCosign(
2113
- minter: string,
2114
- qty: BigNumberish,
2115
- timestamp: BigNumberish,
2116
- signature: BytesLike,
2117
- overrides?: CallOverrides
2118
- ): Promise<BigNumber>;
2119
-
2120
- balanceOf(owner: string, overrides?: CallOverrides): Promise<BigNumber>;
2121
-
2122
- contractURI(overrides?: CallOverrides): Promise<BigNumber>;
2123
-
2124
- crossmint(
2125
- qty: BigNumberish,
2126
- to: string,
2127
- proof: BytesLike[],
2128
- timestamp: BigNumberish,
2129
- signature: BytesLike,
2130
- overrides?: PayableOverrides & { from?: string }
2131
- ): Promise<BigNumber>;
2132
-
2133
- explicitOwnershipOf(
2134
- tokenId: BigNumberish,
2135
- overrides?: CallOverrides
2136
- ): Promise<BigNumber>;
2137
-
2138
- explicitOwnershipsOf(
2139
- tokenIds: BigNumberish[],
2140
- overrides?: CallOverrides
2141
- ): Promise<BigNumber>;
2142
-
2143
- getActiveStageFromTimestamp(
2144
- timestamp: BigNumberish,
2145
- overrides?: CallOverrides
2146
- ): Promise<BigNumber>;
2147
-
2148
- getApproved(
2149
- tokenId: BigNumberish,
2150
- overrides?: CallOverrides
2151
- ): Promise<BigNumber>;
2152
-
2153
- getCosignDigest(
2154
- minter: string,
2155
- qty: BigNumberish,
2156
- timestamp: BigNumberish,
2157
- overrides?: CallOverrides
2158
- ): Promise<BigNumber>;
2159
-
2160
- getCosignNonce(
2161
- minter: string,
2162
- overrides?: CallOverrides
2163
- ): Promise<BigNumber>;
2164
-
2165
- getGlobalWalletLimit(overrides?: CallOverrides): Promise<BigNumber>;
2166
-
2167
- getMaxMintableSupply(overrides?: CallOverrides): Promise<BigNumber>;
2168
-
2169
- getMintCurrency(overrides?: CallOverrides): Promise<BigNumber>;
2170
-
2171
- getMintable(overrides?: CallOverrides): Promise<BigNumber>;
2172
-
2173
- getNumberStages(overrides?: CallOverrides): Promise<BigNumber>;
2174
-
2175
- getPermittedContractReceivers(
2176
- overrides?: CallOverrides
2177
- ): Promise<BigNumber>;
2178
-
2179
- getSecurityPolicy(overrides?: CallOverrides): Promise<BigNumber>;
2180
-
2181
- getStageInfo(
2182
- index: BigNumberish,
2183
- overrides?: CallOverrides
2184
- ): Promise<BigNumber>;
2185
-
2186
- getTransferValidator(overrides?: CallOverrides): Promise<BigNumber>;
2187
-
2188
- getWhitelistedOperators(overrides?: CallOverrides): Promise<BigNumber>;
2189
-
2190
- isApprovedForAll(
2191
- owner: string,
2192
- operator: string,
2193
- overrides?: CallOverrides
2194
- ): Promise<BigNumber>;
2195
-
2196
- isContractReceiverPermitted(
2197
- receiver: string,
2198
- overrides?: CallOverrides
2199
- ): Promise<BigNumber>;
2200
-
2201
- isOperatorWhitelisted(
2202
- operator: string,
2203
- overrides?: CallOverrides
2204
- ): Promise<BigNumber>;
2205
-
2206
- isTransferAllowed(
2207
- caller: string,
2208
- from: string,
2209
- to: string,
2210
- overrides?: CallOverrides
2211
- ): Promise<BigNumber>;
2212
-
2213
- mint(
2214
- qty: BigNumberish,
2215
- proof: BytesLike[],
2216
- timestamp: BigNumberish,
2217
- signature: BytesLike,
2218
- overrides?: PayableOverrides & { from?: string }
2219
- ): Promise<BigNumber>;
2220
-
2221
- mintWithLimit(
2222
- qty: BigNumberish,
2223
- limit: BigNumberish,
2224
- proof: BytesLike[],
2225
- timestamp: BigNumberish,
2226
- signature: BytesLike,
2227
- overrides?: PayableOverrides & { from?: string }
2228
- ): Promise<BigNumber>;
2229
-
2230
- name(overrides?: CallOverrides): Promise<BigNumber>;
2231
-
2232
- owner(overrides?: CallOverrides): Promise<BigNumber>;
2233
-
2234
- ownerMint(
2235
- qty: BigNumberish,
2236
- to: string,
2237
- overrides?: Overrides & { from?: string }
2238
- ): Promise<BigNumber>;
2239
-
2240
- ownerOf(
2241
- tokenId: BigNumberish,
2242
- overrides?: CallOverrides
2243
- ): Promise<BigNumber>;
2244
-
2245
- renounceOwnership(
2246
- overrides?: Overrides & { from?: string }
2247
- ): Promise<BigNumber>;
2248
-
2249
- royaltyInfo(
2250
- tokenId: BigNumberish,
2251
- salePrice: BigNumberish,
2252
- overrides?: CallOverrides
2253
- ): Promise<BigNumber>;
2254
-
2255
- "safeTransferFrom(address,address,uint256)"(
2256
- from: string,
2257
- to: string,
2258
- tokenId: BigNumberish,
2259
- overrides?: PayableOverrides & { from?: string }
2260
- ): Promise<BigNumber>;
2261
-
2262
- "safeTransferFrom(address,address,uint256,bytes)"(
2263
- from: string,
2264
- to: string,
2265
- tokenId: BigNumberish,
2266
- _data: BytesLike,
2267
- overrides?: PayableOverrides & { from?: string }
2268
- ): Promise<BigNumber>;
2269
-
2270
- setApprovalForAll(
2271
- operator: string,
2272
- approved: boolean,
2273
- overrides?: Overrides & { from?: string }
2274
- ): Promise<BigNumber>;
2275
-
2276
- setBaseURI(
2277
- baseURI: string,
2278
- overrides?: Overrides & { from?: string }
2279
- ): Promise<BigNumber>;
2280
-
2281
- setContractURI(
2282
- uri: string,
2283
- overrides?: Overrides & { from?: string }
2284
- ): Promise<BigNumber>;
2285
-
2286
- setCosigner(
2287
- cosigner: string,
2288
- overrides?: Overrides & { from?: string }
2289
- ): Promise<BigNumber>;
2290
-
2291
- setCrossmintAddress(
2292
- crossmintAddress: string,
2293
- overrides?: Overrides & { from?: string }
2294
- ): Promise<BigNumber>;
2295
-
2296
- setDefaultRoyalty(
2297
- receiver: string,
2298
- feeNumerator: BigNumberish,
2299
- overrides?: Overrides & { from?: string }
2300
- ): Promise<BigNumber>;
2301
-
2302
- setGlobalWalletLimit(
2303
- globalWalletLimit: BigNumberish,
2304
- overrides?: Overrides & { from?: string }
2305
- ): Promise<BigNumber>;
2306
-
2307
- setMaxMintableSupply(
2308
- maxMintableSupply: BigNumberish,
2309
- overrides?: Overrides & { from?: string }
2310
- ): Promise<BigNumber>;
2311
-
2312
- setMintable(
2313
- mintable: boolean,
2314
- overrides?: Overrides & { from?: string }
2315
- ): Promise<BigNumber>;
2316
-
2317
- setStages(
2318
- newStages: IERC721M.MintStageInfoStruct[],
2319
- overrides?: Overrides & { from?: string }
2320
- ): Promise<BigNumber>;
2321
-
2322
- setTimestampExpirySeconds(
2323
- expiry: BigNumberish,
2324
- overrides?: Overrides & { from?: string }
2325
- ): Promise<BigNumber>;
2326
-
2327
- setToCustomSecurityPolicy(
2328
- level: BigNumberish,
2329
- operatorWhitelistId: BigNumberish,
2330
- permittedContractReceiversAllowlistId: BigNumberish,
2331
- overrides?: Overrides & { from?: string }
2332
- ): Promise<BigNumber>;
2333
-
2334
- setToCustomValidatorAndSecurityPolicy(
2335
- validator: string,
2336
- level: BigNumberish,
2337
- operatorWhitelistId: BigNumberish,
2338
- permittedContractReceiversAllowlistId: BigNumberish,
2339
- overrides?: Overrides & { from?: string }
2340
- ): Promise<BigNumber>;
2341
-
2342
- setToDefaultSecurityPolicy(
2343
- overrides?: Overrides & { from?: string }
2344
- ): Promise<BigNumber>;
2345
-
2346
- setTokenRoyalty(
2347
- tokenId: BigNumberish,
2348
- receiver: string,
2349
- feeNumerator: BigNumberish,
2350
- overrides?: Overrides & { from?: string }
2351
- ): Promise<BigNumber>;
2352
-
2353
- setTokenURISuffix(
2354
- suffix: string,
2355
- overrides?: Overrides & { from?: string }
2356
- ): Promise<BigNumber>;
2357
-
2358
- setTransferValidator(
2359
- transferValidator_: string,
2360
- overrides?: Overrides & { from?: string }
2361
- ): Promise<BigNumber>;
2362
-
2363
- supportsInterface(
2364
- interfaceId: BytesLike,
2365
- overrides?: CallOverrides
2366
- ): Promise<BigNumber>;
2367
-
2368
- symbol(overrides?: CallOverrides): Promise<BigNumber>;
2369
-
2370
- tokenURI(
2371
- tokenId: BigNumberish,
2372
- overrides?: CallOverrides
2373
- ): Promise<BigNumber>;
2374
-
2375
- tokensOfOwner(owner: string, overrides?: CallOverrides): Promise<BigNumber>;
2376
-
2377
- tokensOfOwnerIn(
2378
- owner: string,
2379
- start: BigNumberish,
2380
- stop: BigNumberish,
2381
- overrides?: CallOverrides
2382
- ): Promise<BigNumber>;
2383
-
2384
- totalMintedByAddress(
2385
- a: string,
2386
- overrides?: CallOverrides
2387
- ): Promise<BigNumber>;
2388
-
2389
- totalSupply(overrides?: CallOverrides): Promise<BigNumber>;
2390
-
2391
- transferFrom(
2392
- from: string,
2393
- to: string,
2394
- tokenId: BigNumberish,
2395
- overrides?: PayableOverrides & { from?: string }
2396
- ): Promise<BigNumber>;
2397
-
2398
- transferOwnership(
2399
- newOwner: string,
2400
- overrides?: Overrides & { from?: string }
2401
- ): Promise<BigNumber>;
2402
-
2403
- withdraw(overrides?: Overrides & { from?: string }): Promise<BigNumber>;
2404
-
2405
- withdrawERC20(
2406
- overrides?: Overrides & { from?: string }
2407
- ): Promise<BigNumber>;
2408
- };
2409
-
2410
- populateTransaction: {
2411
- DEFAULT_OPERATOR_WHITELIST_ID(
2412
- overrides?: CallOverrides
2413
- ): Promise<PopulatedTransaction>;
2414
-
2415
- DEFAULT_TRANSFER_SECURITY_LEVEL(
2416
- overrides?: CallOverrides
2417
- ): Promise<PopulatedTransaction>;
2418
-
2419
- DEFAULT_TRANSFER_VALIDATOR(
2420
- overrides?: CallOverrides
2421
- ): Promise<PopulatedTransaction>;
2422
-
2423
- FUND_RECEIVER(overrides?: CallOverrides): Promise<PopulatedTransaction>;
2424
-
2425
- approve(
2426
- to: string,
2427
- tokenId: BigNumberish,
2428
- overrides?: PayableOverrides & { from?: string }
2429
- ): Promise<PopulatedTransaction>;
2430
-
2431
- assertValidCosign(
2432
- minter: string,
2433
- qty: BigNumberish,
2434
- timestamp: BigNumberish,
2435
- signature: BytesLike,
2436
- overrides?: CallOverrides
2437
- ): Promise<PopulatedTransaction>;
2438
-
2439
- balanceOf(
2440
- owner: string,
2441
- overrides?: CallOverrides
2442
- ): Promise<PopulatedTransaction>;
2443
-
2444
- contractURI(overrides?: CallOverrides): Promise<PopulatedTransaction>;
2445
-
2446
- crossmint(
2447
- qty: BigNumberish,
2448
- to: string,
2449
- proof: BytesLike[],
2450
- timestamp: BigNumberish,
2451
- signature: BytesLike,
2452
- overrides?: PayableOverrides & { from?: string }
2453
- ): Promise<PopulatedTransaction>;
2454
-
2455
- explicitOwnershipOf(
2456
- tokenId: BigNumberish,
2457
- overrides?: CallOverrides
2458
- ): Promise<PopulatedTransaction>;
2459
-
2460
- explicitOwnershipsOf(
2461
- tokenIds: BigNumberish[],
2462
- overrides?: CallOverrides
2463
- ): Promise<PopulatedTransaction>;
2464
-
2465
- getActiveStageFromTimestamp(
2466
- timestamp: BigNumberish,
2467
- overrides?: CallOverrides
2468
- ): Promise<PopulatedTransaction>;
2469
-
2470
- getApproved(
2471
- tokenId: BigNumberish,
2472
- overrides?: CallOverrides
2473
- ): Promise<PopulatedTransaction>;
2474
-
2475
- getCosignDigest(
2476
- minter: string,
2477
- qty: BigNumberish,
2478
- timestamp: BigNumberish,
2479
- overrides?: CallOverrides
2480
- ): Promise<PopulatedTransaction>;
2481
-
2482
- getCosignNonce(
2483
- minter: string,
2484
- overrides?: CallOverrides
2485
- ): Promise<PopulatedTransaction>;
2486
-
2487
- getGlobalWalletLimit(
2488
- overrides?: CallOverrides
2489
- ): Promise<PopulatedTransaction>;
2490
-
2491
- getMaxMintableSupply(
2492
- overrides?: CallOverrides
2493
- ): Promise<PopulatedTransaction>;
2494
-
2495
- getMintCurrency(overrides?: CallOverrides): Promise<PopulatedTransaction>;
2496
-
2497
- getMintable(overrides?: CallOverrides): Promise<PopulatedTransaction>;
2498
-
2499
- getNumberStages(overrides?: CallOverrides): Promise<PopulatedTransaction>;
2500
-
2501
- getPermittedContractReceivers(
2502
- overrides?: CallOverrides
2503
- ): Promise<PopulatedTransaction>;
2504
-
2505
- getSecurityPolicy(overrides?: CallOverrides): Promise<PopulatedTransaction>;
2506
-
2507
- getStageInfo(
2508
- index: BigNumberish,
2509
- overrides?: CallOverrides
2510
- ): Promise<PopulatedTransaction>;
2511
-
2512
- getTransferValidator(
2513
- overrides?: CallOverrides
2514
- ): Promise<PopulatedTransaction>;
2515
-
2516
- getWhitelistedOperators(
2517
- overrides?: CallOverrides
2518
- ): Promise<PopulatedTransaction>;
2519
-
2520
- isApprovedForAll(
2521
- owner: string,
2522
- operator: string,
2523
- overrides?: CallOverrides
2524
- ): Promise<PopulatedTransaction>;
2525
-
2526
- isContractReceiverPermitted(
2527
- receiver: string,
2528
- overrides?: CallOverrides
2529
- ): Promise<PopulatedTransaction>;
2530
-
2531
- isOperatorWhitelisted(
2532
- operator: string,
2533
- overrides?: CallOverrides
2534
- ): Promise<PopulatedTransaction>;
2535
-
2536
- isTransferAllowed(
2537
- caller: string,
2538
- from: string,
2539
- to: string,
2540
- overrides?: CallOverrides
2541
- ): Promise<PopulatedTransaction>;
2542
-
2543
- mint(
2544
- qty: BigNumberish,
2545
- proof: BytesLike[],
2546
- timestamp: BigNumberish,
2547
- signature: BytesLike,
2548
- overrides?: PayableOverrides & { from?: string }
2549
- ): Promise<PopulatedTransaction>;
2550
-
2551
- mintWithLimit(
2552
- qty: BigNumberish,
2553
- limit: BigNumberish,
2554
- proof: BytesLike[],
2555
- timestamp: BigNumberish,
2556
- signature: BytesLike,
2557
- overrides?: PayableOverrides & { from?: string }
2558
- ): Promise<PopulatedTransaction>;
2559
-
2560
- name(overrides?: CallOverrides): Promise<PopulatedTransaction>;
2561
-
2562
- owner(overrides?: CallOverrides): Promise<PopulatedTransaction>;
2563
-
2564
- ownerMint(
2565
- qty: BigNumberish,
2566
- to: string,
2567
- overrides?: Overrides & { from?: string }
2568
- ): Promise<PopulatedTransaction>;
2569
-
2570
- ownerOf(
2571
- tokenId: BigNumberish,
2572
- overrides?: CallOverrides
2573
- ): Promise<PopulatedTransaction>;
2574
-
2575
- renounceOwnership(
2576
- overrides?: Overrides & { from?: string }
2577
- ): Promise<PopulatedTransaction>;
2578
-
2579
- royaltyInfo(
2580
- tokenId: BigNumberish,
2581
- salePrice: BigNumberish,
2582
- overrides?: CallOverrides
2583
- ): Promise<PopulatedTransaction>;
2584
-
2585
- "safeTransferFrom(address,address,uint256)"(
2586
- from: string,
2587
- to: string,
2588
- tokenId: BigNumberish,
2589
- overrides?: PayableOverrides & { from?: string }
2590
- ): Promise<PopulatedTransaction>;
2591
-
2592
- "safeTransferFrom(address,address,uint256,bytes)"(
2593
- from: string,
2594
- to: string,
2595
- tokenId: BigNumberish,
2596
- _data: BytesLike,
2597
- overrides?: PayableOverrides & { from?: string }
2598
- ): Promise<PopulatedTransaction>;
2599
-
2600
- setApprovalForAll(
2601
- operator: string,
2602
- approved: boolean,
2603
- overrides?: Overrides & { from?: string }
2604
- ): Promise<PopulatedTransaction>;
2605
-
2606
- setBaseURI(
2607
- baseURI: string,
2608
- overrides?: Overrides & { from?: string }
2609
- ): Promise<PopulatedTransaction>;
2610
-
2611
- setContractURI(
2612
- uri: string,
2613
- overrides?: Overrides & { from?: string }
2614
- ): Promise<PopulatedTransaction>;
2615
-
2616
- setCosigner(
2617
- cosigner: string,
2618
- overrides?: Overrides & { from?: string }
2619
- ): Promise<PopulatedTransaction>;
2620
-
2621
- setCrossmintAddress(
2622
- crossmintAddress: string,
2623
- overrides?: Overrides & { from?: string }
2624
- ): Promise<PopulatedTransaction>;
2625
-
2626
- setDefaultRoyalty(
2627
- receiver: string,
2628
- feeNumerator: BigNumberish,
2629
- overrides?: Overrides & { from?: string }
2630
- ): Promise<PopulatedTransaction>;
2631
-
2632
- setGlobalWalletLimit(
2633
- globalWalletLimit: BigNumberish,
2634
- overrides?: Overrides & { from?: string }
2635
- ): Promise<PopulatedTransaction>;
2636
-
2637
- setMaxMintableSupply(
2638
- maxMintableSupply: BigNumberish,
2639
- overrides?: Overrides & { from?: string }
2640
- ): Promise<PopulatedTransaction>;
2641
-
2642
- setMintable(
2643
- mintable: boolean,
2644
- overrides?: Overrides & { from?: string }
2645
- ): Promise<PopulatedTransaction>;
2646
-
2647
- setStages(
2648
- newStages: IERC721M.MintStageInfoStruct[],
2649
- overrides?: Overrides & { from?: string }
2650
- ): Promise<PopulatedTransaction>;
2651
-
2652
- setTimestampExpirySeconds(
2653
- expiry: BigNumberish,
2654
- overrides?: Overrides & { from?: string }
2655
- ): Promise<PopulatedTransaction>;
2656
-
2657
- setToCustomSecurityPolicy(
2658
- level: BigNumberish,
2659
- operatorWhitelistId: BigNumberish,
2660
- permittedContractReceiversAllowlistId: BigNumberish,
2661
- overrides?: Overrides & { from?: string }
2662
- ): Promise<PopulatedTransaction>;
2663
-
2664
- setToCustomValidatorAndSecurityPolicy(
2665
- validator: string,
2666
- level: BigNumberish,
2667
- operatorWhitelistId: BigNumberish,
2668
- permittedContractReceiversAllowlistId: BigNumberish,
2669
- overrides?: Overrides & { from?: string }
2670
- ): Promise<PopulatedTransaction>;
2671
-
2672
- setToDefaultSecurityPolicy(
2673
- overrides?: Overrides & { from?: string }
2674
- ): Promise<PopulatedTransaction>;
2675
-
2676
- setTokenRoyalty(
2677
- tokenId: BigNumberish,
2678
- receiver: string,
2679
- feeNumerator: BigNumberish,
2680
- overrides?: Overrides & { from?: string }
2681
- ): Promise<PopulatedTransaction>;
2682
-
2683
- setTokenURISuffix(
2684
- suffix: string,
2685
- overrides?: Overrides & { from?: string }
2686
- ): Promise<PopulatedTransaction>;
2687
-
2688
- setTransferValidator(
2689
- transferValidator_: string,
2690
- overrides?: Overrides & { from?: string }
2691
- ): Promise<PopulatedTransaction>;
2692
-
2693
- supportsInterface(
2694
- interfaceId: BytesLike,
2695
- overrides?: CallOverrides
2696
- ): Promise<PopulatedTransaction>;
2697
-
2698
- symbol(overrides?: CallOverrides): Promise<PopulatedTransaction>;
2699
-
2700
- tokenURI(
2701
- tokenId: BigNumberish,
2702
- overrides?: CallOverrides
2703
- ): Promise<PopulatedTransaction>;
2704
-
2705
- tokensOfOwner(
2706
- owner: string,
2707
- overrides?: CallOverrides
2708
- ): Promise<PopulatedTransaction>;
2709
-
2710
- tokensOfOwnerIn(
2711
- owner: string,
2712
- start: BigNumberish,
2713
- stop: BigNumberish,
2714
- overrides?: CallOverrides
2715
- ): Promise<PopulatedTransaction>;
2716
-
2717
- totalMintedByAddress(
2718
- a: string,
2719
- overrides?: CallOverrides
2720
- ): Promise<PopulatedTransaction>;
2721
-
2722
- totalSupply(overrides?: CallOverrides): Promise<PopulatedTransaction>;
2723
-
2724
- transferFrom(
2725
- from: string,
2726
- to: string,
2727
- tokenId: BigNumberish,
2728
- overrides?: PayableOverrides & { from?: string }
2729
- ): Promise<PopulatedTransaction>;
2730
-
2731
- transferOwnership(
2732
- newOwner: string,
2733
- overrides?: Overrides & { from?: string }
2734
- ): Promise<PopulatedTransaction>;
2735
-
2736
- withdraw(
2737
- overrides?: Overrides & { from?: string }
2738
- ): Promise<PopulatedTransaction>;
2739
-
2740
- withdrawERC20(
2741
- overrides?: Overrides & { from?: string }
2742
- ): Promise<PopulatedTransaction>;
2743
- };
2744
- }