@zoralabs/protocol-deployments 0.1.9 → 0.1.11
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/.turbo/turbo-build.log +23 -9
- package/CHANGELOG.md +12 -0
- package/dist/_esm-UK4OVIHX.js +3537 -0
- package/dist/_esm-UK4OVIHX.js.map +1 -0
- package/dist/ccip-XSYMJLYD.js +15 -0
- package/dist/ccip-XSYMJLYD.js.map +1 -0
- package/dist/chunk-2FDPSBOH.js +118 -0
- package/dist/chunk-2FDPSBOH.js.map +1 -0
- package/dist/chunk-3EJPJMEH.js +44 -0
- package/dist/chunk-3EJPJMEH.js.map +1 -0
- package/dist/chunk-ANM5XPUU.js +3209 -0
- package/dist/chunk-ANM5XPUU.js.map +1 -0
- package/dist/generated/1155.d.ts +1 -1
- package/dist/generated/mints.d.ts +8 -0
- package/dist/generated/mints.d.ts.map +1 -1
- package/dist/generated/wagmi.d.ts +1360 -574
- package/dist/generated/wagmi.d.ts.map +1 -1
- package/dist/index.cjs +2414 -196
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +832 -200
- package/dist/index.js.map +1 -1
- package/dist/secp256k1-R7PEGLZR.js +2222 -0
- package/dist/secp256k1-R7PEGLZR.js.map +1 -0
- package/dist/typedData.d.ts +193 -0
- package/dist/typedData.d.ts.map +1 -0
- package/dist/types.d.ts +39 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +8 -8
- package/src/generated/1155.ts +14 -14
- package/src/generated/mints.ts +9 -2
- package/src/generated/wagmi.ts +569 -179
- package/src/index.ts +2 -0
- package/src/typedData.ts +342 -0
- package/src/types.ts +107 -0
|
@@ -7,9 +7,81 @@
|
|
|
7
7
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
8
8
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
9
9
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
10
|
-
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/
|
|
10
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2)
|
|
11
11
|
*/
|
|
12
12
|
export declare const erc20MinterABI: readonly [{
|
|
13
|
+
readonly stateMutability: "nonpayable";
|
|
14
|
+
readonly type: "function";
|
|
15
|
+
readonly inputs: readonly [];
|
|
16
|
+
readonly name: "acceptOwnership";
|
|
17
|
+
readonly outputs: readonly [];
|
|
18
|
+
}, {
|
|
19
|
+
readonly stateMutability: "view";
|
|
20
|
+
readonly type: "function";
|
|
21
|
+
readonly inputs: readonly [{
|
|
22
|
+
readonly name: "config";
|
|
23
|
+
readonly internalType: "struct IERC20Minter.PremintSalesConfig";
|
|
24
|
+
readonly type: "tuple";
|
|
25
|
+
readonly components: readonly [{
|
|
26
|
+
readonly name: "duration";
|
|
27
|
+
readonly internalType: "uint64";
|
|
28
|
+
readonly type: "uint64";
|
|
29
|
+
}, {
|
|
30
|
+
readonly name: "maxTokensPerAddress";
|
|
31
|
+
readonly internalType: "uint64";
|
|
32
|
+
readonly type: "uint64";
|
|
33
|
+
}, {
|
|
34
|
+
readonly name: "pricePerToken";
|
|
35
|
+
readonly internalType: "uint256";
|
|
36
|
+
readonly type: "uint256";
|
|
37
|
+
}, {
|
|
38
|
+
readonly name: "fundsRecipient";
|
|
39
|
+
readonly internalType: "address";
|
|
40
|
+
readonly type: "address";
|
|
41
|
+
}, {
|
|
42
|
+
readonly name: "currency";
|
|
43
|
+
readonly internalType: "address";
|
|
44
|
+
readonly type: "address";
|
|
45
|
+
}];
|
|
46
|
+
}];
|
|
47
|
+
readonly name: "buildSalesConfigForPremint";
|
|
48
|
+
readonly outputs: readonly [{
|
|
49
|
+
readonly name: "";
|
|
50
|
+
readonly internalType: "struct IERC20Minter.SalesConfig";
|
|
51
|
+
readonly type: "tuple";
|
|
52
|
+
readonly components: readonly [{
|
|
53
|
+
readonly name: "saleStart";
|
|
54
|
+
readonly internalType: "uint64";
|
|
55
|
+
readonly type: "uint64";
|
|
56
|
+
}, {
|
|
57
|
+
readonly name: "saleEnd";
|
|
58
|
+
readonly internalType: "uint64";
|
|
59
|
+
readonly type: "uint64";
|
|
60
|
+
}, {
|
|
61
|
+
readonly name: "maxTokensPerAddress";
|
|
62
|
+
readonly internalType: "uint64";
|
|
63
|
+
readonly type: "uint64";
|
|
64
|
+
}, {
|
|
65
|
+
readonly name: "pricePerToken";
|
|
66
|
+
readonly internalType: "uint256";
|
|
67
|
+
readonly type: "uint256";
|
|
68
|
+
}, {
|
|
69
|
+
readonly name: "fundsRecipient";
|
|
70
|
+
readonly internalType: "address";
|
|
71
|
+
readonly type: "address";
|
|
72
|
+
}, {
|
|
73
|
+
readonly name: "currency";
|
|
74
|
+
readonly internalType: "address";
|
|
75
|
+
readonly type: "address";
|
|
76
|
+
}];
|
|
77
|
+
}];
|
|
78
|
+
}, {
|
|
79
|
+
readonly stateMutability: "nonpayable";
|
|
80
|
+
readonly type: "function";
|
|
81
|
+
readonly inputs: readonly [];
|
|
82
|
+
readonly name: "cancelOwnershipTransfer";
|
|
83
|
+
readonly outputs: readonly [];
|
|
84
|
+
}, {
|
|
13
85
|
readonly stateMutability: "pure";
|
|
14
86
|
readonly type: "function";
|
|
15
87
|
readonly inputs: readonly [{
|
|
@@ -59,7 +131,7 @@ export declare const erc20MinterABI: readonly [{
|
|
|
59
131
|
readonly type: "uint256";
|
|
60
132
|
}];
|
|
61
133
|
}, {
|
|
62
|
-
readonly stateMutability: "
|
|
134
|
+
readonly stateMutability: "view";
|
|
63
135
|
readonly type: "function";
|
|
64
136
|
readonly inputs: readonly [{
|
|
65
137
|
readonly name: "totalValue";
|
|
@@ -102,6 +174,16 @@ export declare const erc20MinterABI: readonly [{
|
|
|
102
174
|
readonly internalType: "string";
|
|
103
175
|
readonly type: "string";
|
|
104
176
|
}];
|
|
177
|
+
}, {
|
|
178
|
+
readonly stateMutability: "view";
|
|
179
|
+
readonly type: "function";
|
|
180
|
+
readonly inputs: readonly [];
|
|
181
|
+
readonly name: "ethRewardAmount";
|
|
182
|
+
readonly outputs: readonly [{
|
|
183
|
+
readonly name: "";
|
|
184
|
+
readonly internalType: "uint256";
|
|
185
|
+
readonly type: "uint256";
|
|
186
|
+
}];
|
|
105
187
|
}, {
|
|
106
188
|
readonly stateMutability: "view";
|
|
107
189
|
readonly type: "function";
|
|
@@ -120,6 +202,29 @@ export declare const erc20MinterABI: readonly [{
|
|
|
120
202
|
readonly internalType: "address";
|
|
121
203
|
readonly type: "address";
|
|
122
204
|
}];
|
|
205
|
+
}, {
|
|
206
|
+
readonly stateMutability: "view";
|
|
207
|
+
readonly type: "function";
|
|
208
|
+
readonly inputs: readonly [];
|
|
209
|
+
readonly name: "getERC20MinterConfig";
|
|
210
|
+
readonly outputs: readonly [{
|
|
211
|
+
readonly name: "";
|
|
212
|
+
readonly internalType: "struct IERC20Minter.ERC20MinterConfig";
|
|
213
|
+
readonly type: "tuple";
|
|
214
|
+
readonly components: readonly [{
|
|
215
|
+
readonly name: "zoraRewardRecipientAddress";
|
|
216
|
+
readonly internalType: "address";
|
|
217
|
+
readonly type: "address";
|
|
218
|
+
}, {
|
|
219
|
+
readonly name: "rewardRecipientPercentage";
|
|
220
|
+
readonly internalType: "uint256";
|
|
221
|
+
readonly type: "uint256";
|
|
222
|
+
}, {
|
|
223
|
+
readonly name: "ethReward";
|
|
224
|
+
readonly internalType: "uint256";
|
|
225
|
+
readonly type: "uint256";
|
|
226
|
+
}];
|
|
227
|
+
}];
|
|
123
228
|
}, {
|
|
124
229
|
readonly stateMutability: "view";
|
|
125
230
|
readonly type: "function";
|
|
@@ -167,11 +272,23 @@ export declare const erc20MinterABI: readonly [{
|
|
|
167
272
|
readonly name: "_zoraRewardRecipientAddress";
|
|
168
273
|
readonly internalType: "address";
|
|
169
274
|
readonly type: "address";
|
|
275
|
+
}, {
|
|
276
|
+
readonly name: "_owner";
|
|
277
|
+
readonly internalType: "address";
|
|
278
|
+
readonly type: "address";
|
|
279
|
+
}, {
|
|
280
|
+
readonly name: "_rewardPct";
|
|
281
|
+
readonly internalType: "uint256";
|
|
282
|
+
readonly type: "uint256";
|
|
283
|
+
}, {
|
|
284
|
+
readonly name: "_ethReward";
|
|
285
|
+
readonly internalType: "uint256";
|
|
286
|
+
readonly type: "uint256";
|
|
170
287
|
}];
|
|
171
288
|
readonly name: "initialize";
|
|
172
289
|
readonly outputs: readonly [];
|
|
173
290
|
}, {
|
|
174
|
-
readonly stateMutability: "
|
|
291
|
+
readonly stateMutability: "payable";
|
|
175
292
|
readonly type: "function";
|
|
176
293
|
readonly inputs: readonly [{
|
|
177
294
|
readonly name: "mintTo";
|
|
@@ -208,6 +325,44 @@ export declare const erc20MinterABI: readonly [{
|
|
|
208
325
|
}];
|
|
209
326
|
readonly name: "mint";
|
|
210
327
|
readonly outputs: readonly [];
|
|
328
|
+
}, {
|
|
329
|
+
readonly stateMutability: "view";
|
|
330
|
+
readonly type: "function";
|
|
331
|
+
readonly inputs: readonly [];
|
|
332
|
+
readonly name: "minterConfig";
|
|
333
|
+
readonly outputs: readonly [{
|
|
334
|
+
readonly name: "zoraRewardRecipientAddress";
|
|
335
|
+
readonly internalType: "address";
|
|
336
|
+
readonly type: "address";
|
|
337
|
+
}, {
|
|
338
|
+
readonly name: "rewardRecipientPercentage";
|
|
339
|
+
readonly internalType: "uint256";
|
|
340
|
+
readonly type: "uint256";
|
|
341
|
+
}, {
|
|
342
|
+
readonly name: "ethReward";
|
|
343
|
+
readonly internalType: "uint256";
|
|
344
|
+
readonly type: "uint256";
|
|
345
|
+
}];
|
|
346
|
+
}, {
|
|
347
|
+
readonly stateMutability: "view";
|
|
348
|
+
readonly type: "function";
|
|
349
|
+
readonly inputs: readonly [];
|
|
350
|
+
readonly name: "owner";
|
|
351
|
+
readonly outputs: readonly [{
|
|
352
|
+
readonly name: "";
|
|
353
|
+
readonly internalType: "address";
|
|
354
|
+
readonly type: "address";
|
|
355
|
+
}];
|
|
356
|
+
}, {
|
|
357
|
+
readonly stateMutability: "view";
|
|
358
|
+
readonly type: "function";
|
|
359
|
+
readonly inputs: readonly [];
|
|
360
|
+
readonly name: "pendingOwner";
|
|
361
|
+
readonly outputs: readonly [{
|
|
362
|
+
readonly name: "";
|
|
363
|
+
readonly internalType: "address";
|
|
364
|
+
readonly type: "address";
|
|
365
|
+
}];
|
|
211
366
|
}, {
|
|
212
367
|
readonly stateMutability: "pure";
|
|
213
368
|
readonly type: "function";
|
|
@@ -266,6 +421,22 @@ export declare const erc20MinterABI: readonly [{
|
|
|
266
421
|
}];
|
|
267
422
|
readonly name: "resetSale";
|
|
268
423
|
readonly outputs: readonly [];
|
|
424
|
+
}, {
|
|
425
|
+
readonly stateMutability: "nonpayable";
|
|
426
|
+
readonly type: "function";
|
|
427
|
+
readonly inputs: readonly [];
|
|
428
|
+
readonly name: "resignOwnership";
|
|
429
|
+
readonly outputs: readonly [];
|
|
430
|
+
}, {
|
|
431
|
+
readonly stateMutability: "nonpayable";
|
|
432
|
+
readonly type: "function";
|
|
433
|
+
readonly inputs: readonly [{
|
|
434
|
+
readonly name: "_newOwner";
|
|
435
|
+
readonly internalType: "address";
|
|
436
|
+
readonly type: "address";
|
|
437
|
+
}];
|
|
438
|
+
readonly name: "safeTransferOwnership";
|
|
439
|
+
readonly outputs: readonly [];
|
|
269
440
|
}, {
|
|
270
441
|
readonly stateMutability: "view";
|
|
271
442
|
readonly type: "function";
|
|
@@ -309,6 +480,43 @@ export declare const erc20MinterABI: readonly [{
|
|
|
309
480
|
readonly type: "address";
|
|
310
481
|
}];
|
|
311
482
|
}];
|
|
483
|
+
}, {
|
|
484
|
+
readonly stateMutability: "nonpayable";
|
|
485
|
+
readonly type: "function";
|
|
486
|
+
readonly inputs: readonly [{
|
|
487
|
+
readonly name: "config";
|
|
488
|
+
readonly internalType: "struct IERC20Minter.ERC20MinterConfig";
|
|
489
|
+
readonly type: "tuple";
|
|
490
|
+
readonly components: readonly [{
|
|
491
|
+
readonly name: "zoraRewardRecipientAddress";
|
|
492
|
+
readonly internalType: "address";
|
|
493
|
+
readonly type: "address";
|
|
494
|
+
}, {
|
|
495
|
+
readonly name: "rewardRecipientPercentage";
|
|
496
|
+
readonly internalType: "uint256";
|
|
497
|
+
readonly type: "uint256";
|
|
498
|
+
}, {
|
|
499
|
+
readonly name: "ethReward";
|
|
500
|
+
readonly internalType: "uint256";
|
|
501
|
+
readonly type: "uint256";
|
|
502
|
+
}];
|
|
503
|
+
}];
|
|
504
|
+
readonly name: "setERC20MinterConfig";
|
|
505
|
+
readonly outputs: readonly [];
|
|
506
|
+
}, {
|
|
507
|
+
readonly stateMutability: "nonpayable";
|
|
508
|
+
readonly type: "function";
|
|
509
|
+
readonly inputs: readonly [{
|
|
510
|
+
readonly name: "tokenId";
|
|
511
|
+
readonly internalType: "uint256";
|
|
512
|
+
readonly type: "uint256";
|
|
513
|
+
}, {
|
|
514
|
+
readonly name: "encodedPremintSalesConfig";
|
|
515
|
+
readonly internalType: "bytes";
|
|
516
|
+
readonly type: "bytes";
|
|
517
|
+
}];
|
|
518
|
+
readonly name: "setPremintSale";
|
|
519
|
+
readonly outputs: readonly [];
|
|
312
520
|
}, {
|
|
313
521
|
readonly stateMutability: "nonpayable";
|
|
314
522
|
readonly type: "function";
|
|
@@ -348,16 +556,6 @@ export declare const erc20MinterABI: readonly [{
|
|
|
348
556
|
}];
|
|
349
557
|
readonly name: "setSale";
|
|
350
558
|
readonly outputs: readonly [];
|
|
351
|
-
}, {
|
|
352
|
-
readonly stateMutability: "nonpayable";
|
|
353
|
-
readonly type: "function";
|
|
354
|
-
readonly inputs: readonly [{
|
|
355
|
-
readonly name: "recipient";
|
|
356
|
-
readonly internalType: "address";
|
|
357
|
-
readonly type: "address";
|
|
358
|
-
}];
|
|
359
|
-
readonly name: "setZoraRewardsRecipient";
|
|
360
|
-
readonly outputs: readonly [];
|
|
361
559
|
}, {
|
|
362
560
|
readonly stateMutability: "pure";
|
|
363
561
|
readonly type: "function";
|
|
@@ -373,7 +571,7 @@ export declare const erc20MinterABI: readonly [{
|
|
|
373
571
|
readonly type: "bool";
|
|
374
572
|
}];
|
|
375
573
|
}, {
|
|
376
|
-
readonly stateMutability: "
|
|
574
|
+
readonly stateMutability: "view";
|
|
377
575
|
readonly type: "function";
|
|
378
576
|
readonly inputs: readonly [];
|
|
379
577
|
readonly name: "totalRewardPct";
|
|
@@ -383,25 +581,38 @@ export declare const erc20MinterABI: readonly [{
|
|
|
383
581
|
readonly type: "uint256";
|
|
384
582
|
}];
|
|
385
583
|
}, {
|
|
386
|
-
readonly stateMutability: "
|
|
584
|
+
readonly stateMutability: "nonpayable";
|
|
387
585
|
readonly type: "function";
|
|
388
|
-
readonly inputs: readonly [
|
|
389
|
-
|
|
390
|
-
readonly outputs: readonly [{
|
|
391
|
-
readonly name: "";
|
|
586
|
+
readonly inputs: readonly [{
|
|
587
|
+
readonly name: "_newOwner";
|
|
392
588
|
readonly internalType: "address";
|
|
393
589
|
readonly type: "address";
|
|
394
590
|
}];
|
|
591
|
+
readonly name: "transferOwnership";
|
|
592
|
+
readonly outputs: readonly [];
|
|
395
593
|
}, {
|
|
396
594
|
readonly type: "event";
|
|
397
595
|
readonly anonymous: false;
|
|
398
596
|
readonly inputs: readonly [{
|
|
399
|
-
readonly name: "
|
|
400
|
-
readonly internalType: "
|
|
401
|
-
readonly type: "
|
|
597
|
+
readonly name: "config";
|
|
598
|
+
readonly internalType: "struct IERC20Minter.ERC20MinterConfig";
|
|
599
|
+
readonly type: "tuple";
|
|
600
|
+
readonly components: readonly [{
|
|
601
|
+
readonly name: "zoraRewardRecipientAddress";
|
|
602
|
+
readonly internalType: "address";
|
|
603
|
+
readonly type: "address";
|
|
604
|
+
}, {
|
|
605
|
+
readonly name: "rewardRecipientPercentage";
|
|
606
|
+
readonly internalType: "uint256";
|
|
607
|
+
readonly type: "uint256";
|
|
608
|
+
}, {
|
|
609
|
+
readonly name: "ethReward";
|
|
610
|
+
readonly internalType: "uint256";
|
|
611
|
+
readonly type: "uint256";
|
|
612
|
+
}];
|
|
402
613
|
readonly indexed: false;
|
|
403
614
|
}];
|
|
404
|
-
readonly name: "
|
|
615
|
+
readonly name: "ERC20MinterConfigSet";
|
|
405
616
|
}, {
|
|
406
617
|
readonly type: "event";
|
|
407
618
|
readonly anonymous: false;
|
|
@@ -462,6 +673,16 @@ export declare const erc20MinterABI: readonly [{
|
|
|
462
673
|
readonly indexed: false;
|
|
463
674
|
}];
|
|
464
675
|
readonly name: "ERC20RewardsDeposit";
|
|
676
|
+
}, {
|
|
677
|
+
readonly type: "event";
|
|
678
|
+
readonly anonymous: false;
|
|
679
|
+
readonly inputs: readonly [{
|
|
680
|
+
readonly name: "version";
|
|
681
|
+
readonly internalType: "uint8";
|
|
682
|
+
readonly type: "uint8";
|
|
683
|
+
readonly indexed: false;
|
|
684
|
+
}];
|
|
685
|
+
readonly name: "Initialized";
|
|
465
686
|
}, {
|
|
466
687
|
readonly type: "event";
|
|
467
688
|
readonly anonymous: false;
|
|
@@ -496,23 +717,68 @@ export declare const erc20MinterABI: readonly [{
|
|
|
496
717
|
readonly type: "event";
|
|
497
718
|
readonly anonymous: false;
|
|
498
719
|
readonly inputs: readonly [{
|
|
499
|
-
readonly name: "
|
|
720
|
+
readonly name: "owner";
|
|
500
721
|
readonly internalType: "address";
|
|
501
722
|
readonly type: "address";
|
|
502
723
|
readonly indexed: true;
|
|
503
724
|
}, {
|
|
504
|
-
readonly name: "
|
|
505
|
-
readonly internalType: "
|
|
506
|
-
readonly type: "
|
|
725
|
+
readonly name: "canceledOwner";
|
|
726
|
+
readonly internalType: "address";
|
|
727
|
+
readonly type: "address";
|
|
728
|
+
readonly indexed: true;
|
|
729
|
+
}];
|
|
730
|
+
readonly name: "OwnerCanceled";
|
|
731
|
+
}, {
|
|
732
|
+
readonly type: "event";
|
|
733
|
+
readonly anonymous: false;
|
|
734
|
+
readonly inputs: readonly [{
|
|
735
|
+
readonly name: "owner";
|
|
736
|
+
readonly internalType: "address";
|
|
737
|
+
readonly type: "address";
|
|
507
738
|
readonly indexed: true;
|
|
508
739
|
}, {
|
|
509
|
-
readonly name: "
|
|
510
|
-
readonly internalType: "
|
|
511
|
-
readonly type: "
|
|
512
|
-
readonly
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
740
|
+
readonly name: "pendingOwner";
|
|
741
|
+
readonly internalType: "address";
|
|
742
|
+
readonly type: "address";
|
|
743
|
+
readonly indexed: true;
|
|
744
|
+
}];
|
|
745
|
+
readonly name: "OwnerPending";
|
|
746
|
+
}, {
|
|
747
|
+
readonly type: "event";
|
|
748
|
+
readonly anonymous: false;
|
|
749
|
+
readonly inputs: readonly [{
|
|
750
|
+
readonly name: "prevOwner";
|
|
751
|
+
readonly internalType: "address";
|
|
752
|
+
readonly type: "address";
|
|
753
|
+
readonly indexed: true;
|
|
754
|
+
}, {
|
|
755
|
+
readonly name: "newOwner";
|
|
756
|
+
readonly internalType: "address";
|
|
757
|
+
readonly type: "address";
|
|
758
|
+
readonly indexed: true;
|
|
759
|
+
}];
|
|
760
|
+
readonly name: "OwnerUpdated";
|
|
761
|
+
}, {
|
|
762
|
+
readonly type: "event";
|
|
763
|
+
readonly anonymous: false;
|
|
764
|
+
readonly inputs: readonly [{
|
|
765
|
+
readonly name: "mediaContract";
|
|
766
|
+
readonly internalType: "address";
|
|
767
|
+
readonly type: "address";
|
|
768
|
+
readonly indexed: true;
|
|
769
|
+
}, {
|
|
770
|
+
readonly name: "tokenId";
|
|
771
|
+
readonly internalType: "uint256";
|
|
772
|
+
readonly type: "uint256";
|
|
773
|
+
readonly indexed: true;
|
|
774
|
+
}, {
|
|
775
|
+
readonly name: "salesConfig";
|
|
776
|
+
readonly internalType: "struct IERC20Minter.SalesConfig";
|
|
777
|
+
readonly type: "tuple";
|
|
778
|
+
readonly components: readonly [{
|
|
779
|
+
readonly name: "saleStart";
|
|
780
|
+
readonly internalType: "uint64";
|
|
781
|
+
readonly type: "uint64";
|
|
516
782
|
}, {
|
|
517
783
|
readonly name: "saleEnd";
|
|
518
784
|
readonly internalType: "uint64";
|
|
@@ -537,21 +803,6 @@ export declare const erc20MinterABI: readonly [{
|
|
|
537
803
|
readonly indexed: false;
|
|
538
804
|
}];
|
|
539
805
|
readonly name: "SaleSet";
|
|
540
|
-
}, {
|
|
541
|
-
readonly type: "event";
|
|
542
|
-
readonly anonymous: false;
|
|
543
|
-
readonly inputs: readonly [{
|
|
544
|
-
readonly name: "prevRecipient";
|
|
545
|
-
readonly internalType: "address";
|
|
546
|
-
readonly type: "address";
|
|
547
|
-
readonly indexed: true;
|
|
548
|
-
}, {
|
|
549
|
-
readonly name: "newRecipient";
|
|
550
|
-
readonly internalType: "address";
|
|
551
|
-
readonly type: "address";
|
|
552
|
-
readonly indexed: true;
|
|
553
|
-
}];
|
|
554
|
-
readonly name: "ZoraRewardsRecipientSet";
|
|
555
806
|
}, {
|
|
556
807
|
readonly type: "error";
|
|
557
808
|
readonly inputs: readonly [];
|
|
@@ -559,19 +810,51 @@ export declare const erc20MinterABI: readonly [{
|
|
|
559
810
|
}, {
|
|
560
811
|
readonly type: "error";
|
|
561
812
|
readonly inputs: readonly [];
|
|
562
|
-
readonly name: "
|
|
813
|
+
readonly name: "ERC20TransferSlippage";
|
|
563
814
|
}, {
|
|
564
815
|
readonly type: "error";
|
|
565
816
|
readonly inputs: readonly [];
|
|
566
|
-
readonly name: "
|
|
817
|
+
readonly name: "FailedToSendEthReward";
|
|
818
|
+
}, {
|
|
819
|
+
readonly type: "error";
|
|
820
|
+
readonly inputs: readonly [];
|
|
821
|
+
readonly name: "INITIALIZABLE_CONTRACT_ALREADY_INITIALIZED";
|
|
822
|
+
}, {
|
|
823
|
+
readonly type: "error";
|
|
824
|
+
readonly inputs: readonly [];
|
|
825
|
+
readonly name: "INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING";
|
|
567
826
|
}, {
|
|
568
827
|
readonly type: "error";
|
|
569
828
|
readonly inputs: readonly [];
|
|
570
829
|
readonly name: "InvalidCurrency";
|
|
830
|
+
}, {
|
|
831
|
+
readonly type: "error";
|
|
832
|
+
readonly inputs: readonly [{
|
|
833
|
+
readonly name: "expectedValue";
|
|
834
|
+
readonly internalType: "uint256";
|
|
835
|
+
readonly type: "uint256";
|
|
836
|
+
}, {
|
|
837
|
+
readonly name: "actualValue";
|
|
838
|
+
readonly internalType: "uint256";
|
|
839
|
+
readonly type: "uint256";
|
|
840
|
+
}];
|
|
841
|
+
readonly name: "InvalidETHValue";
|
|
842
|
+
}, {
|
|
843
|
+
readonly type: "error";
|
|
844
|
+
readonly inputs: readonly [];
|
|
845
|
+
readonly name: "InvalidValue";
|
|
846
|
+
}, {
|
|
847
|
+
readonly type: "error";
|
|
848
|
+
readonly inputs: readonly [];
|
|
849
|
+
readonly name: "ONLY_OWNER";
|
|
571
850
|
}, {
|
|
572
851
|
readonly type: "error";
|
|
573
852
|
readonly inputs: readonly [];
|
|
574
|
-
readonly name: "
|
|
853
|
+
readonly name: "ONLY_PENDING_OWNER";
|
|
854
|
+
}, {
|
|
855
|
+
readonly type: "error";
|
|
856
|
+
readonly inputs: readonly [];
|
|
857
|
+
readonly name: "OWNER_CANNOT_BE_ZERO_ADDRESS";
|
|
575
858
|
}, {
|
|
576
859
|
readonly type: "error";
|
|
577
860
|
readonly inputs: readonly [];
|
|
@@ -618,7 +901,7 @@ export declare const erc20MinterABI: readonly [{
|
|
|
618
901
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
619
902
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
620
903
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
621
|
-
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/
|
|
904
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2)
|
|
622
905
|
*/
|
|
623
906
|
export declare const erc20MinterAddress: {
|
|
624
907
|
readonly 1: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
@@ -630,7 +913,7 @@ export declare const erc20MinterAddress: {
|
|
|
630
913
|
readonly 421614: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
631
914
|
readonly 7777777: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
632
915
|
readonly 11155111: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
633
|
-
readonly 999999999: "
|
|
916
|
+
readonly 999999999: "0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2";
|
|
634
917
|
};
|
|
635
918
|
/**
|
|
636
919
|
* - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
@@ -641,7 +924,7 @@ export declare const erc20MinterAddress: {
|
|
|
641
924
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
642
925
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
643
926
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
|
|
644
|
-
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/
|
|
927
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2)
|
|
645
928
|
*/
|
|
646
929
|
export declare const erc20MinterConfig: {
|
|
647
930
|
readonly address: {
|
|
@@ -654,9 +937,81 @@ export declare const erc20MinterConfig: {
|
|
|
654
937
|
readonly 421614: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
655
938
|
readonly 7777777: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
656
939
|
readonly 11155111: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31";
|
|
657
|
-
readonly 999999999: "
|
|
940
|
+
readonly 999999999: "0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2";
|
|
658
941
|
};
|
|
659
942
|
readonly abi: readonly [{
|
|
943
|
+
readonly stateMutability: "nonpayable";
|
|
944
|
+
readonly type: "function";
|
|
945
|
+
readonly inputs: readonly [];
|
|
946
|
+
readonly name: "acceptOwnership";
|
|
947
|
+
readonly outputs: readonly [];
|
|
948
|
+
}, {
|
|
949
|
+
readonly stateMutability: "view";
|
|
950
|
+
readonly type: "function";
|
|
951
|
+
readonly inputs: readonly [{
|
|
952
|
+
readonly name: "config";
|
|
953
|
+
readonly internalType: "struct IERC20Minter.PremintSalesConfig";
|
|
954
|
+
readonly type: "tuple";
|
|
955
|
+
readonly components: readonly [{
|
|
956
|
+
readonly name: "duration";
|
|
957
|
+
readonly internalType: "uint64";
|
|
958
|
+
readonly type: "uint64";
|
|
959
|
+
}, {
|
|
960
|
+
readonly name: "maxTokensPerAddress";
|
|
961
|
+
readonly internalType: "uint64";
|
|
962
|
+
readonly type: "uint64";
|
|
963
|
+
}, {
|
|
964
|
+
readonly name: "pricePerToken";
|
|
965
|
+
readonly internalType: "uint256";
|
|
966
|
+
readonly type: "uint256";
|
|
967
|
+
}, {
|
|
968
|
+
readonly name: "fundsRecipient";
|
|
969
|
+
readonly internalType: "address";
|
|
970
|
+
readonly type: "address";
|
|
971
|
+
}, {
|
|
972
|
+
readonly name: "currency";
|
|
973
|
+
readonly internalType: "address";
|
|
974
|
+
readonly type: "address";
|
|
975
|
+
}];
|
|
976
|
+
}];
|
|
977
|
+
readonly name: "buildSalesConfigForPremint";
|
|
978
|
+
readonly outputs: readonly [{
|
|
979
|
+
readonly name: "";
|
|
980
|
+
readonly internalType: "struct IERC20Minter.SalesConfig";
|
|
981
|
+
readonly type: "tuple";
|
|
982
|
+
readonly components: readonly [{
|
|
983
|
+
readonly name: "saleStart";
|
|
984
|
+
readonly internalType: "uint64";
|
|
985
|
+
readonly type: "uint64";
|
|
986
|
+
}, {
|
|
987
|
+
readonly name: "saleEnd";
|
|
988
|
+
readonly internalType: "uint64";
|
|
989
|
+
readonly type: "uint64";
|
|
990
|
+
}, {
|
|
991
|
+
readonly name: "maxTokensPerAddress";
|
|
992
|
+
readonly internalType: "uint64";
|
|
993
|
+
readonly type: "uint64";
|
|
994
|
+
}, {
|
|
995
|
+
readonly name: "pricePerToken";
|
|
996
|
+
readonly internalType: "uint256";
|
|
997
|
+
readonly type: "uint256";
|
|
998
|
+
}, {
|
|
999
|
+
readonly name: "fundsRecipient";
|
|
1000
|
+
readonly internalType: "address";
|
|
1001
|
+
readonly type: "address";
|
|
1002
|
+
}, {
|
|
1003
|
+
readonly name: "currency";
|
|
1004
|
+
readonly internalType: "address";
|
|
1005
|
+
readonly type: "address";
|
|
1006
|
+
}];
|
|
1007
|
+
}];
|
|
1008
|
+
}, {
|
|
1009
|
+
readonly stateMutability: "nonpayable";
|
|
1010
|
+
readonly type: "function";
|
|
1011
|
+
readonly inputs: readonly [];
|
|
1012
|
+
readonly name: "cancelOwnershipTransfer";
|
|
1013
|
+
readonly outputs: readonly [];
|
|
1014
|
+
}, {
|
|
660
1015
|
readonly stateMutability: "pure";
|
|
661
1016
|
readonly type: "function";
|
|
662
1017
|
readonly inputs: readonly [{
|
|
@@ -706,7 +1061,7 @@ export declare const erc20MinterConfig: {
|
|
|
706
1061
|
readonly type: "uint256";
|
|
707
1062
|
}];
|
|
708
1063
|
}, {
|
|
709
|
-
readonly stateMutability: "
|
|
1064
|
+
readonly stateMutability: "view";
|
|
710
1065
|
readonly type: "function";
|
|
711
1066
|
readonly inputs: readonly [{
|
|
712
1067
|
readonly name: "totalValue";
|
|
@@ -749,6 +1104,16 @@ export declare const erc20MinterConfig: {
|
|
|
749
1104
|
readonly internalType: "string";
|
|
750
1105
|
readonly type: "string";
|
|
751
1106
|
}];
|
|
1107
|
+
}, {
|
|
1108
|
+
readonly stateMutability: "view";
|
|
1109
|
+
readonly type: "function";
|
|
1110
|
+
readonly inputs: readonly [];
|
|
1111
|
+
readonly name: "ethRewardAmount";
|
|
1112
|
+
readonly outputs: readonly [{
|
|
1113
|
+
readonly name: "";
|
|
1114
|
+
readonly internalType: "uint256";
|
|
1115
|
+
readonly type: "uint256";
|
|
1116
|
+
}];
|
|
752
1117
|
}, {
|
|
753
1118
|
readonly stateMutability: "view";
|
|
754
1119
|
readonly type: "function";
|
|
@@ -767,6 +1132,29 @@ export declare const erc20MinterConfig: {
|
|
|
767
1132
|
readonly internalType: "address";
|
|
768
1133
|
readonly type: "address";
|
|
769
1134
|
}];
|
|
1135
|
+
}, {
|
|
1136
|
+
readonly stateMutability: "view";
|
|
1137
|
+
readonly type: "function";
|
|
1138
|
+
readonly inputs: readonly [];
|
|
1139
|
+
readonly name: "getERC20MinterConfig";
|
|
1140
|
+
readonly outputs: readonly [{
|
|
1141
|
+
readonly name: "";
|
|
1142
|
+
readonly internalType: "struct IERC20Minter.ERC20MinterConfig";
|
|
1143
|
+
readonly type: "tuple";
|
|
1144
|
+
readonly components: readonly [{
|
|
1145
|
+
readonly name: "zoraRewardRecipientAddress";
|
|
1146
|
+
readonly internalType: "address";
|
|
1147
|
+
readonly type: "address";
|
|
1148
|
+
}, {
|
|
1149
|
+
readonly name: "rewardRecipientPercentage";
|
|
1150
|
+
readonly internalType: "uint256";
|
|
1151
|
+
readonly type: "uint256";
|
|
1152
|
+
}, {
|
|
1153
|
+
readonly name: "ethReward";
|
|
1154
|
+
readonly internalType: "uint256";
|
|
1155
|
+
readonly type: "uint256";
|
|
1156
|
+
}];
|
|
1157
|
+
}];
|
|
770
1158
|
}, {
|
|
771
1159
|
readonly stateMutability: "view";
|
|
772
1160
|
readonly type: "function";
|
|
@@ -814,11 +1202,23 @@ export declare const erc20MinterConfig: {
|
|
|
814
1202
|
readonly name: "_zoraRewardRecipientAddress";
|
|
815
1203
|
readonly internalType: "address";
|
|
816
1204
|
readonly type: "address";
|
|
1205
|
+
}, {
|
|
1206
|
+
readonly name: "_owner";
|
|
1207
|
+
readonly internalType: "address";
|
|
1208
|
+
readonly type: "address";
|
|
1209
|
+
}, {
|
|
1210
|
+
readonly name: "_rewardPct";
|
|
1211
|
+
readonly internalType: "uint256";
|
|
1212
|
+
readonly type: "uint256";
|
|
1213
|
+
}, {
|
|
1214
|
+
readonly name: "_ethReward";
|
|
1215
|
+
readonly internalType: "uint256";
|
|
1216
|
+
readonly type: "uint256";
|
|
817
1217
|
}];
|
|
818
1218
|
readonly name: "initialize";
|
|
819
1219
|
readonly outputs: readonly [];
|
|
820
1220
|
}, {
|
|
821
|
-
readonly stateMutability: "
|
|
1221
|
+
readonly stateMutability: "payable";
|
|
822
1222
|
readonly type: "function";
|
|
823
1223
|
readonly inputs: readonly [{
|
|
824
1224
|
readonly name: "mintTo";
|
|
@@ -855,6 +1255,44 @@ export declare const erc20MinterConfig: {
|
|
|
855
1255
|
}];
|
|
856
1256
|
readonly name: "mint";
|
|
857
1257
|
readonly outputs: readonly [];
|
|
1258
|
+
}, {
|
|
1259
|
+
readonly stateMutability: "view";
|
|
1260
|
+
readonly type: "function";
|
|
1261
|
+
readonly inputs: readonly [];
|
|
1262
|
+
readonly name: "minterConfig";
|
|
1263
|
+
readonly outputs: readonly [{
|
|
1264
|
+
readonly name: "zoraRewardRecipientAddress";
|
|
1265
|
+
readonly internalType: "address";
|
|
1266
|
+
readonly type: "address";
|
|
1267
|
+
}, {
|
|
1268
|
+
readonly name: "rewardRecipientPercentage";
|
|
1269
|
+
readonly internalType: "uint256";
|
|
1270
|
+
readonly type: "uint256";
|
|
1271
|
+
}, {
|
|
1272
|
+
readonly name: "ethReward";
|
|
1273
|
+
readonly internalType: "uint256";
|
|
1274
|
+
readonly type: "uint256";
|
|
1275
|
+
}];
|
|
1276
|
+
}, {
|
|
1277
|
+
readonly stateMutability: "view";
|
|
1278
|
+
readonly type: "function";
|
|
1279
|
+
readonly inputs: readonly [];
|
|
1280
|
+
readonly name: "owner";
|
|
1281
|
+
readonly outputs: readonly [{
|
|
1282
|
+
readonly name: "";
|
|
1283
|
+
readonly internalType: "address";
|
|
1284
|
+
readonly type: "address";
|
|
1285
|
+
}];
|
|
1286
|
+
}, {
|
|
1287
|
+
readonly stateMutability: "view";
|
|
1288
|
+
readonly type: "function";
|
|
1289
|
+
readonly inputs: readonly [];
|
|
1290
|
+
readonly name: "pendingOwner";
|
|
1291
|
+
readonly outputs: readonly [{
|
|
1292
|
+
readonly name: "";
|
|
1293
|
+
readonly internalType: "address";
|
|
1294
|
+
readonly type: "address";
|
|
1295
|
+
}];
|
|
858
1296
|
}, {
|
|
859
1297
|
readonly stateMutability: "pure";
|
|
860
1298
|
readonly type: "function";
|
|
@@ -913,6 +1351,22 @@ export declare const erc20MinterConfig: {
|
|
|
913
1351
|
}];
|
|
914
1352
|
readonly name: "resetSale";
|
|
915
1353
|
readonly outputs: readonly [];
|
|
1354
|
+
}, {
|
|
1355
|
+
readonly stateMutability: "nonpayable";
|
|
1356
|
+
readonly type: "function";
|
|
1357
|
+
readonly inputs: readonly [];
|
|
1358
|
+
readonly name: "resignOwnership";
|
|
1359
|
+
readonly outputs: readonly [];
|
|
1360
|
+
}, {
|
|
1361
|
+
readonly stateMutability: "nonpayable";
|
|
1362
|
+
readonly type: "function";
|
|
1363
|
+
readonly inputs: readonly [{
|
|
1364
|
+
readonly name: "_newOwner";
|
|
1365
|
+
readonly internalType: "address";
|
|
1366
|
+
readonly type: "address";
|
|
1367
|
+
}];
|
|
1368
|
+
readonly name: "safeTransferOwnership";
|
|
1369
|
+
readonly outputs: readonly [];
|
|
916
1370
|
}, {
|
|
917
1371
|
readonly stateMutability: "view";
|
|
918
1372
|
readonly type: "function";
|
|
@@ -960,20 +1414,57 @@ export declare const erc20MinterConfig: {
|
|
|
960
1414
|
readonly stateMutability: "nonpayable";
|
|
961
1415
|
readonly type: "function";
|
|
962
1416
|
readonly inputs: readonly [{
|
|
963
|
-
readonly name: "
|
|
964
|
-
readonly internalType: "
|
|
965
|
-
readonly type: "uint256";
|
|
966
|
-
}, {
|
|
967
|
-
readonly name: "salesConfig";
|
|
968
|
-
readonly internalType: "struct IERC20Minter.SalesConfig";
|
|
1417
|
+
readonly name: "config";
|
|
1418
|
+
readonly internalType: "struct IERC20Minter.ERC20MinterConfig";
|
|
969
1419
|
readonly type: "tuple";
|
|
970
1420
|
readonly components: readonly [{
|
|
971
|
-
readonly name: "
|
|
972
|
-
readonly internalType: "
|
|
973
|
-
readonly type: "
|
|
1421
|
+
readonly name: "zoraRewardRecipientAddress";
|
|
1422
|
+
readonly internalType: "address";
|
|
1423
|
+
readonly type: "address";
|
|
974
1424
|
}, {
|
|
975
|
-
readonly name: "
|
|
976
|
-
readonly internalType: "
|
|
1425
|
+
readonly name: "rewardRecipientPercentage";
|
|
1426
|
+
readonly internalType: "uint256";
|
|
1427
|
+
readonly type: "uint256";
|
|
1428
|
+
}, {
|
|
1429
|
+
readonly name: "ethReward";
|
|
1430
|
+
readonly internalType: "uint256";
|
|
1431
|
+
readonly type: "uint256";
|
|
1432
|
+
}];
|
|
1433
|
+
}];
|
|
1434
|
+
readonly name: "setERC20MinterConfig";
|
|
1435
|
+
readonly outputs: readonly [];
|
|
1436
|
+
}, {
|
|
1437
|
+
readonly stateMutability: "nonpayable";
|
|
1438
|
+
readonly type: "function";
|
|
1439
|
+
readonly inputs: readonly [{
|
|
1440
|
+
readonly name: "tokenId";
|
|
1441
|
+
readonly internalType: "uint256";
|
|
1442
|
+
readonly type: "uint256";
|
|
1443
|
+
}, {
|
|
1444
|
+
readonly name: "encodedPremintSalesConfig";
|
|
1445
|
+
readonly internalType: "bytes";
|
|
1446
|
+
readonly type: "bytes";
|
|
1447
|
+
}];
|
|
1448
|
+
readonly name: "setPremintSale";
|
|
1449
|
+
readonly outputs: readonly [];
|
|
1450
|
+
}, {
|
|
1451
|
+
readonly stateMutability: "nonpayable";
|
|
1452
|
+
readonly type: "function";
|
|
1453
|
+
readonly inputs: readonly [{
|
|
1454
|
+
readonly name: "tokenId";
|
|
1455
|
+
readonly internalType: "uint256";
|
|
1456
|
+
readonly type: "uint256";
|
|
1457
|
+
}, {
|
|
1458
|
+
readonly name: "salesConfig";
|
|
1459
|
+
readonly internalType: "struct IERC20Minter.SalesConfig";
|
|
1460
|
+
readonly type: "tuple";
|
|
1461
|
+
readonly components: readonly [{
|
|
1462
|
+
readonly name: "saleStart";
|
|
1463
|
+
readonly internalType: "uint64";
|
|
1464
|
+
readonly type: "uint64";
|
|
1465
|
+
}, {
|
|
1466
|
+
readonly name: "saleEnd";
|
|
1467
|
+
readonly internalType: "uint64";
|
|
977
1468
|
readonly type: "uint64";
|
|
978
1469
|
}, {
|
|
979
1470
|
readonly name: "maxTokensPerAddress";
|
|
@@ -995,16 +1486,6 @@ export declare const erc20MinterConfig: {
|
|
|
995
1486
|
}];
|
|
996
1487
|
readonly name: "setSale";
|
|
997
1488
|
readonly outputs: readonly [];
|
|
998
|
-
}, {
|
|
999
|
-
readonly stateMutability: "nonpayable";
|
|
1000
|
-
readonly type: "function";
|
|
1001
|
-
readonly inputs: readonly [{
|
|
1002
|
-
readonly name: "recipient";
|
|
1003
|
-
readonly internalType: "address";
|
|
1004
|
-
readonly type: "address";
|
|
1005
|
-
}];
|
|
1006
|
-
readonly name: "setZoraRewardsRecipient";
|
|
1007
|
-
readonly outputs: readonly [];
|
|
1008
1489
|
}, {
|
|
1009
1490
|
readonly stateMutability: "pure";
|
|
1010
1491
|
readonly type: "function";
|
|
@@ -1020,7 +1501,7 @@ export declare const erc20MinterConfig: {
|
|
|
1020
1501
|
readonly type: "bool";
|
|
1021
1502
|
}];
|
|
1022
1503
|
}, {
|
|
1023
|
-
readonly stateMutability: "
|
|
1504
|
+
readonly stateMutability: "view";
|
|
1024
1505
|
readonly type: "function";
|
|
1025
1506
|
readonly inputs: readonly [];
|
|
1026
1507
|
readonly name: "totalRewardPct";
|
|
@@ -1030,25 +1511,38 @@ export declare const erc20MinterConfig: {
|
|
|
1030
1511
|
readonly type: "uint256";
|
|
1031
1512
|
}];
|
|
1032
1513
|
}, {
|
|
1033
|
-
readonly stateMutability: "
|
|
1514
|
+
readonly stateMutability: "nonpayable";
|
|
1034
1515
|
readonly type: "function";
|
|
1035
|
-
readonly inputs: readonly [
|
|
1036
|
-
|
|
1037
|
-
readonly outputs: readonly [{
|
|
1038
|
-
readonly name: "";
|
|
1516
|
+
readonly inputs: readonly [{
|
|
1517
|
+
readonly name: "_newOwner";
|
|
1039
1518
|
readonly internalType: "address";
|
|
1040
1519
|
readonly type: "address";
|
|
1041
1520
|
}];
|
|
1521
|
+
readonly name: "transferOwnership";
|
|
1522
|
+
readonly outputs: readonly [];
|
|
1042
1523
|
}, {
|
|
1043
1524
|
readonly type: "event";
|
|
1044
1525
|
readonly anonymous: false;
|
|
1045
1526
|
readonly inputs: readonly [{
|
|
1046
|
-
readonly name: "
|
|
1047
|
-
readonly internalType: "
|
|
1048
|
-
readonly type: "
|
|
1527
|
+
readonly name: "config";
|
|
1528
|
+
readonly internalType: "struct IERC20Minter.ERC20MinterConfig";
|
|
1529
|
+
readonly type: "tuple";
|
|
1530
|
+
readonly components: readonly [{
|
|
1531
|
+
readonly name: "zoraRewardRecipientAddress";
|
|
1532
|
+
readonly internalType: "address";
|
|
1533
|
+
readonly type: "address";
|
|
1534
|
+
}, {
|
|
1535
|
+
readonly name: "rewardRecipientPercentage";
|
|
1536
|
+
readonly internalType: "uint256";
|
|
1537
|
+
readonly type: "uint256";
|
|
1538
|
+
}, {
|
|
1539
|
+
readonly name: "ethReward";
|
|
1540
|
+
readonly internalType: "uint256";
|
|
1541
|
+
readonly type: "uint256";
|
|
1542
|
+
}];
|
|
1049
1543
|
readonly indexed: false;
|
|
1050
1544
|
}];
|
|
1051
|
-
readonly name: "
|
|
1545
|
+
readonly name: "ERC20MinterConfigSet";
|
|
1052
1546
|
}, {
|
|
1053
1547
|
readonly type: "event";
|
|
1054
1548
|
readonly anonymous: false;
|
|
@@ -1109,6 +1603,16 @@ export declare const erc20MinterConfig: {
|
|
|
1109
1603
|
readonly indexed: false;
|
|
1110
1604
|
}];
|
|
1111
1605
|
readonly name: "ERC20RewardsDeposit";
|
|
1606
|
+
}, {
|
|
1607
|
+
readonly type: "event";
|
|
1608
|
+
readonly anonymous: false;
|
|
1609
|
+
readonly inputs: readonly [{
|
|
1610
|
+
readonly name: "version";
|
|
1611
|
+
readonly internalType: "uint8";
|
|
1612
|
+
readonly type: "uint8";
|
|
1613
|
+
readonly indexed: false;
|
|
1614
|
+
}];
|
|
1615
|
+
readonly name: "Initialized";
|
|
1112
1616
|
}, {
|
|
1113
1617
|
readonly type: "event";
|
|
1114
1618
|
readonly anonymous: false;
|
|
@@ -1139,6 +1643,51 @@ export declare const erc20MinterConfig: {
|
|
|
1139
1643
|
readonly indexed: false;
|
|
1140
1644
|
}];
|
|
1141
1645
|
readonly name: "MintComment";
|
|
1646
|
+
}, {
|
|
1647
|
+
readonly type: "event";
|
|
1648
|
+
readonly anonymous: false;
|
|
1649
|
+
readonly inputs: readonly [{
|
|
1650
|
+
readonly name: "owner";
|
|
1651
|
+
readonly internalType: "address";
|
|
1652
|
+
readonly type: "address";
|
|
1653
|
+
readonly indexed: true;
|
|
1654
|
+
}, {
|
|
1655
|
+
readonly name: "canceledOwner";
|
|
1656
|
+
readonly internalType: "address";
|
|
1657
|
+
readonly type: "address";
|
|
1658
|
+
readonly indexed: true;
|
|
1659
|
+
}];
|
|
1660
|
+
readonly name: "OwnerCanceled";
|
|
1661
|
+
}, {
|
|
1662
|
+
readonly type: "event";
|
|
1663
|
+
readonly anonymous: false;
|
|
1664
|
+
readonly inputs: readonly [{
|
|
1665
|
+
readonly name: "owner";
|
|
1666
|
+
readonly internalType: "address";
|
|
1667
|
+
readonly type: "address";
|
|
1668
|
+
readonly indexed: true;
|
|
1669
|
+
}, {
|
|
1670
|
+
readonly name: "pendingOwner";
|
|
1671
|
+
readonly internalType: "address";
|
|
1672
|
+
readonly type: "address";
|
|
1673
|
+
readonly indexed: true;
|
|
1674
|
+
}];
|
|
1675
|
+
readonly name: "OwnerPending";
|
|
1676
|
+
}, {
|
|
1677
|
+
readonly type: "event";
|
|
1678
|
+
readonly anonymous: false;
|
|
1679
|
+
readonly inputs: readonly [{
|
|
1680
|
+
readonly name: "prevOwner";
|
|
1681
|
+
readonly internalType: "address";
|
|
1682
|
+
readonly type: "address";
|
|
1683
|
+
readonly indexed: true;
|
|
1684
|
+
}, {
|
|
1685
|
+
readonly name: "newOwner";
|
|
1686
|
+
readonly internalType: "address";
|
|
1687
|
+
readonly type: "address";
|
|
1688
|
+
readonly indexed: true;
|
|
1689
|
+
}];
|
|
1690
|
+
readonly name: "OwnerUpdated";
|
|
1142
1691
|
}, {
|
|
1143
1692
|
readonly type: "event";
|
|
1144
1693
|
readonly anonymous: false;
|
|
@@ -1184,21 +1733,6 @@ export declare const erc20MinterConfig: {
|
|
|
1184
1733
|
readonly indexed: false;
|
|
1185
1734
|
}];
|
|
1186
1735
|
readonly name: "SaleSet";
|
|
1187
|
-
}, {
|
|
1188
|
-
readonly type: "event";
|
|
1189
|
-
readonly anonymous: false;
|
|
1190
|
-
readonly inputs: readonly [{
|
|
1191
|
-
readonly name: "prevRecipient";
|
|
1192
|
-
readonly internalType: "address";
|
|
1193
|
-
readonly type: "address";
|
|
1194
|
-
readonly indexed: true;
|
|
1195
|
-
}, {
|
|
1196
|
-
readonly name: "newRecipient";
|
|
1197
|
-
readonly internalType: "address";
|
|
1198
|
-
readonly type: "address";
|
|
1199
|
-
readonly indexed: true;
|
|
1200
|
-
}];
|
|
1201
|
-
readonly name: "ZoraRewardsRecipientSet";
|
|
1202
1736
|
}, {
|
|
1203
1737
|
readonly type: "error";
|
|
1204
1738
|
readonly inputs: readonly [];
|
|
@@ -1206,19 +1740,51 @@ export declare const erc20MinterConfig: {
|
|
|
1206
1740
|
}, {
|
|
1207
1741
|
readonly type: "error";
|
|
1208
1742
|
readonly inputs: readonly [];
|
|
1209
|
-
readonly name: "
|
|
1743
|
+
readonly name: "ERC20TransferSlippage";
|
|
1744
|
+
}, {
|
|
1745
|
+
readonly type: "error";
|
|
1746
|
+
readonly inputs: readonly [];
|
|
1747
|
+
readonly name: "FailedToSendEthReward";
|
|
1210
1748
|
}, {
|
|
1211
1749
|
readonly type: "error";
|
|
1212
1750
|
readonly inputs: readonly [];
|
|
1213
|
-
readonly name: "
|
|
1751
|
+
readonly name: "INITIALIZABLE_CONTRACT_ALREADY_INITIALIZED";
|
|
1752
|
+
}, {
|
|
1753
|
+
readonly type: "error";
|
|
1754
|
+
readonly inputs: readonly [];
|
|
1755
|
+
readonly name: "INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING";
|
|
1214
1756
|
}, {
|
|
1215
1757
|
readonly type: "error";
|
|
1216
1758
|
readonly inputs: readonly [];
|
|
1217
1759
|
readonly name: "InvalidCurrency";
|
|
1760
|
+
}, {
|
|
1761
|
+
readonly type: "error";
|
|
1762
|
+
readonly inputs: readonly [{
|
|
1763
|
+
readonly name: "expectedValue";
|
|
1764
|
+
readonly internalType: "uint256";
|
|
1765
|
+
readonly type: "uint256";
|
|
1766
|
+
}, {
|
|
1767
|
+
readonly name: "actualValue";
|
|
1768
|
+
readonly internalType: "uint256";
|
|
1769
|
+
readonly type: "uint256";
|
|
1770
|
+
}];
|
|
1771
|
+
readonly name: "InvalidETHValue";
|
|
1772
|
+
}, {
|
|
1773
|
+
readonly type: "error";
|
|
1774
|
+
readonly inputs: readonly [];
|
|
1775
|
+
readonly name: "InvalidValue";
|
|
1776
|
+
}, {
|
|
1777
|
+
readonly type: "error";
|
|
1778
|
+
readonly inputs: readonly [];
|
|
1779
|
+
readonly name: "ONLY_OWNER";
|
|
1780
|
+
}, {
|
|
1781
|
+
readonly type: "error";
|
|
1782
|
+
readonly inputs: readonly [];
|
|
1783
|
+
readonly name: "ONLY_PENDING_OWNER";
|
|
1218
1784
|
}, {
|
|
1219
1785
|
readonly type: "error";
|
|
1220
1786
|
readonly inputs: readonly [];
|
|
1221
|
-
readonly name: "
|
|
1787
|
+
readonly name: "OWNER_CANNOT_BE_ZERO_ADDRESS";
|
|
1222
1788
|
}, {
|
|
1223
1789
|
readonly type: "error";
|
|
1224
1790
|
readonly inputs: readonly [];
|
|
@@ -1257,56 +1823,203 @@ export declare const erc20MinterConfig: {
|
|
|
1257
1823
|
readonly name: "WrongValueSent";
|
|
1258
1824
|
}];
|
|
1259
1825
|
};
|
|
1260
|
-
export declare const
|
|
1261
|
-
readonly stateMutability: "
|
|
1826
|
+
export declare const iPremintDefinitionsABI: readonly [{
|
|
1827
|
+
readonly stateMutability: "nonpayable";
|
|
1262
1828
|
readonly type: "function";
|
|
1263
1829
|
readonly inputs: readonly [{
|
|
1264
|
-
readonly name: "
|
|
1265
|
-
readonly internalType: "
|
|
1266
|
-
readonly type: "
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1830
|
+
readonly name: "";
|
|
1831
|
+
readonly internalType: "struct TokenCreationConfig";
|
|
1832
|
+
readonly type: "tuple";
|
|
1833
|
+
readonly components: readonly [{
|
|
1834
|
+
readonly name: "tokenURI";
|
|
1835
|
+
readonly internalType: "string";
|
|
1836
|
+
readonly type: "string";
|
|
1837
|
+
}, {
|
|
1838
|
+
readonly name: "maxSupply";
|
|
1839
|
+
readonly internalType: "uint256";
|
|
1840
|
+
readonly type: "uint256";
|
|
1841
|
+
}, {
|
|
1842
|
+
readonly name: "maxTokensPerAddress";
|
|
1843
|
+
readonly internalType: "uint64";
|
|
1844
|
+
readonly type: "uint64";
|
|
1845
|
+
}, {
|
|
1846
|
+
readonly name: "pricePerToken";
|
|
1847
|
+
readonly internalType: "uint96";
|
|
1848
|
+
readonly type: "uint96";
|
|
1849
|
+
}, {
|
|
1850
|
+
readonly name: "mintStart";
|
|
1851
|
+
readonly internalType: "uint64";
|
|
1852
|
+
readonly type: "uint64";
|
|
1853
|
+
}, {
|
|
1854
|
+
readonly name: "mintDuration";
|
|
1855
|
+
readonly internalType: "uint64";
|
|
1856
|
+
readonly type: "uint64";
|
|
1857
|
+
}, {
|
|
1858
|
+
readonly name: "royaltyMintSchedule";
|
|
1859
|
+
readonly internalType: "uint32";
|
|
1860
|
+
readonly type: "uint32";
|
|
1861
|
+
}, {
|
|
1862
|
+
readonly name: "royaltyBPS";
|
|
1863
|
+
readonly internalType: "uint32";
|
|
1864
|
+
readonly type: "uint32";
|
|
1865
|
+
}, {
|
|
1866
|
+
readonly name: "royaltyRecipient";
|
|
1867
|
+
readonly internalType: "address";
|
|
1868
|
+
readonly type: "address";
|
|
1869
|
+
}, {
|
|
1870
|
+
readonly name: "fixedPriceMinter";
|
|
1871
|
+
readonly internalType: "address";
|
|
1872
|
+
readonly type: "address";
|
|
1873
|
+
}];
|
|
1275
1874
|
}];
|
|
1276
|
-
readonly name: "
|
|
1875
|
+
readonly name: "tokenConfigV1Definition";
|
|
1277
1876
|
readonly outputs: readonly [];
|
|
1278
|
-
}];
|
|
1279
|
-
/**
|
|
1280
|
-
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1281
|
-
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1282
|
-
*/
|
|
1283
|
-
export declare const mintsEthUnwrapperAndCallerABI: readonly [{
|
|
1284
|
-
readonly stateMutability: "nonpayable";
|
|
1285
|
-
readonly type: "constructor";
|
|
1286
|
-
readonly inputs: readonly [{
|
|
1287
|
-
readonly name: "_zoraMints1155";
|
|
1288
|
-
readonly internalType: "contract IZoraMints1155";
|
|
1289
|
-
readonly type: "address";
|
|
1290
|
-
}];
|
|
1291
|
-
}, {
|
|
1292
|
-
readonly stateMutability: "payable";
|
|
1293
|
-
readonly type: "receive";
|
|
1294
1877
|
}, {
|
|
1295
1878
|
readonly stateMutability: "nonpayable";
|
|
1296
1879
|
readonly type: "function";
|
|
1297
1880
|
readonly inputs: readonly [{
|
|
1298
1881
|
readonly name: "";
|
|
1299
|
-
readonly internalType: "
|
|
1300
|
-
readonly type: "
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1882
|
+
readonly internalType: "struct TokenCreationConfigV2";
|
|
1883
|
+
readonly type: "tuple";
|
|
1884
|
+
readonly components: readonly [{
|
|
1885
|
+
readonly name: "tokenURI";
|
|
1886
|
+
readonly internalType: "string";
|
|
1887
|
+
readonly type: "string";
|
|
1888
|
+
}, {
|
|
1889
|
+
readonly name: "maxSupply";
|
|
1890
|
+
readonly internalType: "uint256";
|
|
1891
|
+
readonly type: "uint256";
|
|
1892
|
+
}, {
|
|
1893
|
+
readonly name: "maxTokensPerAddress";
|
|
1894
|
+
readonly internalType: "uint64";
|
|
1895
|
+
readonly type: "uint64";
|
|
1896
|
+
}, {
|
|
1897
|
+
readonly name: "pricePerToken";
|
|
1898
|
+
readonly internalType: "uint96";
|
|
1899
|
+
readonly type: "uint96";
|
|
1900
|
+
}, {
|
|
1901
|
+
readonly name: "mintStart";
|
|
1902
|
+
readonly internalType: "uint64";
|
|
1903
|
+
readonly type: "uint64";
|
|
1904
|
+
}, {
|
|
1905
|
+
readonly name: "mintDuration";
|
|
1906
|
+
readonly internalType: "uint64";
|
|
1907
|
+
readonly type: "uint64";
|
|
1908
|
+
}, {
|
|
1909
|
+
readonly name: "royaltyBPS";
|
|
1910
|
+
readonly internalType: "uint32";
|
|
1911
|
+
readonly type: "uint32";
|
|
1912
|
+
}, {
|
|
1913
|
+
readonly name: "payoutRecipient";
|
|
1914
|
+
readonly internalType: "address";
|
|
1915
|
+
readonly type: "address";
|
|
1916
|
+
}, {
|
|
1917
|
+
readonly name: "fixedPriceMinter";
|
|
1918
|
+
readonly internalType: "address";
|
|
1919
|
+
readonly type: "address";
|
|
1920
|
+
}, {
|
|
1921
|
+
readonly name: "createReferral";
|
|
1922
|
+
readonly internalType: "address";
|
|
1923
|
+
readonly type: "address";
|
|
1924
|
+
}];
|
|
1925
|
+
}];
|
|
1926
|
+
readonly name: "tokenConfigV2Definition";
|
|
1927
|
+
readonly outputs: readonly [];
|
|
1928
|
+
}, {
|
|
1929
|
+
readonly stateMutability: "nonpayable";
|
|
1930
|
+
readonly type: "function";
|
|
1931
|
+
readonly inputs: readonly [{
|
|
1932
|
+
readonly name: "";
|
|
1933
|
+
readonly internalType: "struct TokenCreationConfigV3";
|
|
1934
|
+
readonly type: "tuple";
|
|
1935
|
+
readonly components: readonly [{
|
|
1936
|
+
readonly name: "tokenURI";
|
|
1937
|
+
readonly internalType: "string";
|
|
1938
|
+
readonly type: "string";
|
|
1939
|
+
}, {
|
|
1940
|
+
readonly name: "maxSupply";
|
|
1941
|
+
readonly internalType: "uint256";
|
|
1942
|
+
readonly type: "uint256";
|
|
1943
|
+
}, {
|
|
1944
|
+
readonly name: "royaltyBPS";
|
|
1945
|
+
readonly internalType: "uint32";
|
|
1946
|
+
readonly type: "uint32";
|
|
1947
|
+
}, {
|
|
1948
|
+
readonly name: "payoutRecipient";
|
|
1949
|
+
readonly internalType: "address";
|
|
1950
|
+
readonly type: "address";
|
|
1951
|
+
}, {
|
|
1952
|
+
readonly name: "createReferral";
|
|
1953
|
+
readonly internalType: "address";
|
|
1954
|
+
readonly type: "address";
|
|
1955
|
+
}, {
|
|
1956
|
+
readonly name: "mintStart";
|
|
1957
|
+
readonly internalType: "uint64";
|
|
1958
|
+
readonly type: "uint64";
|
|
1959
|
+
}, {
|
|
1960
|
+
readonly name: "minter";
|
|
1961
|
+
readonly internalType: "address";
|
|
1962
|
+
readonly type: "address";
|
|
1963
|
+
}, {
|
|
1964
|
+
readonly name: "premintSalesConfig";
|
|
1965
|
+
readonly internalType: "bytes";
|
|
1966
|
+
readonly type: "bytes";
|
|
1967
|
+
}];
|
|
1968
|
+
}];
|
|
1969
|
+
readonly name: "tokenConfigV3Definition";
|
|
1970
|
+
readonly outputs: readonly [];
|
|
1971
|
+
}];
|
|
1972
|
+
export declare const iUnwrapAndForwardActionABI: readonly [{
|
|
1973
|
+
readonly stateMutability: "payable";
|
|
1974
|
+
readonly type: "function";
|
|
1975
|
+
readonly inputs: readonly [{
|
|
1976
|
+
readonly name: "receiverAddress";
|
|
1977
|
+
readonly internalType: "address";
|
|
1978
|
+
readonly type: "address";
|
|
1979
|
+
}, {
|
|
1980
|
+
readonly name: "call";
|
|
1981
|
+
readonly internalType: "bytes";
|
|
1982
|
+
readonly type: "bytes";
|
|
1983
|
+
}, {
|
|
1984
|
+
readonly name: "valueToSend";
|
|
1985
|
+
readonly internalType: "uint256";
|
|
1986
|
+
readonly type: "uint256";
|
|
1987
|
+
}];
|
|
1988
|
+
readonly name: "callWithEth";
|
|
1989
|
+
readonly outputs: readonly [];
|
|
1990
|
+
}];
|
|
1991
|
+
/**
|
|
1992
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1993
|
+
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1994
|
+
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1995
|
+
*/
|
|
1996
|
+
export declare const mintsEthUnwrapperAndCallerABI: readonly [{
|
|
1997
|
+
readonly stateMutability: "nonpayable";
|
|
1998
|
+
readonly type: "constructor";
|
|
1999
|
+
readonly inputs: readonly [{
|
|
2000
|
+
readonly name: "_zoraMints1155";
|
|
2001
|
+
readonly internalType: "contract IZoraMints1155";
|
|
2002
|
+
readonly type: "address";
|
|
2003
|
+
}];
|
|
2004
|
+
}, {
|
|
2005
|
+
readonly stateMutability: "payable";
|
|
2006
|
+
readonly type: "receive";
|
|
2007
|
+
}, {
|
|
2008
|
+
readonly stateMutability: "nonpayable";
|
|
2009
|
+
readonly type: "function";
|
|
2010
|
+
readonly inputs: readonly [{
|
|
2011
|
+
readonly name: "";
|
|
2012
|
+
readonly internalType: "address";
|
|
2013
|
+
readonly type: "address";
|
|
2014
|
+
}, {
|
|
2015
|
+
readonly name: "from";
|
|
2016
|
+
readonly internalType: "address";
|
|
2017
|
+
readonly type: "address";
|
|
2018
|
+
}, {
|
|
2019
|
+
readonly name: "ids";
|
|
2020
|
+
readonly internalType: "uint256[]";
|
|
2021
|
+
readonly type: "uint256[]";
|
|
2022
|
+
}, {
|
|
1310
2023
|
readonly name: "values";
|
|
1311
2024
|
readonly internalType: "uint256[]";
|
|
1312
2025
|
readonly type: "uint256[]";
|
|
@@ -1444,19 +2157,23 @@ export declare const mintsEthUnwrapperAndCallerABI: readonly [{
|
|
|
1444
2157
|
readonly name: "UnknownUserAction";
|
|
1445
2158
|
}];
|
|
1446
2159
|
/**
|
|
2160
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1447
2161
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1448
2162
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1449
2163
|
*/
|
|
1450
2164
|
export declare const mintsEthUnwrapperAndCallerAddress: {
|
|
2165
|
+
readonly 84532: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1451
2166
|
readonly 7777777: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1452
2167
|
readonly 999999999: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1453
2168
|
};
|
|
1454
2169
|
/**
|
|
2170
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1455
2171
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1456
2172
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
|
|
1457
2173
|
*/
|
|
1458
2174
|
export declare const mintsEthUnwrapperAndCallerConfig: {
|
|
1459
2175
|
readonly address: {
|
|
2176
|
+
readonly 84532: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1460
2177
|
readonly 7777777: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1461
2178
|
readonly 999999999: "0xb0994EB9520C98C97e1F3953a5964535C2bd271A";
|
|
1462
2179
|
};
|
|
@@ -2476,7 +3193,7 @@ export declare const protocolRewardsConfig: {
|
|
|
2476
3193
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2477
3194
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2478
3195
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2479
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
3196
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2480
3197
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2481
3198
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
2482
3199
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -2666,6 +3383,36 @@ export declare const zoraCreator1155FactoryImplABI: readonly [{
|
|
|
2666
3383
|
readonly internalType: "address";
|
|
2667
3384
|
readonly type: "address";
|
|
2668
3385
|
}];
|
|
3386
|
+
}, {
|
|
3387
|
+
readonly stateMutability: "view";
|
|
3388
|
+
readonly type: "function";
|
|
3389
|
+
readonly inputs: readonly [{
|
|
3390
|
+
readonly name: "msgSender";
|
|
3391
|
+
readonly internalType: "address";
|
|
3392
|
+
readonly type: "address";
|
|
3393
|
+
}, {
|
|
3394
|
+
readonly name: "newContractURI";
|
|
3395
|
+
readonly internalType: "string";
|
|
3396
|
+
readonly type: "string";
|
|
3397
|
+
}, {
|
|
3398
|
+
readonly name: "name";
|
|
3399
|
+
readonly internalType: "string";
|
|
3400
|
+
readonly type: "string";
|
|
3401
|
+
}, {
|
|
3402
|
+
readonly name: "contractAdmin";
|
|
3403
|
+
readonly internalType: "address";
|
|
3404
|
+
readonly type: "address";
|
|
3405
|
+
}, {
|
|
3406
|
+
readonly name: "setupActions";
|
|
3407
|
+
readonly internalType: "bytes[]";
|
|
3408
|
+
readonly type: "bytes[]";
|
|
3409
|
+
}];
|
|
3410
|
+
readonly name: "deterministicContractAddressWithSetupActions";
|
|
3411
|
+
readonly outputs: readonly [{
|
|
3412
|
+
readonly name: "";
|
|
3413
|
+
readonly internalType: "address";
|
|
3414
|
+
readonly type: "address";
|
|
3415
|
+
}];
|
|
2669
3416
|
}, {
|
|
2670
3417
|
readonly stateMutability: "view";
|
|
2671
3418
|
readonly type: "function";
|
|
@@ -3024,7 +3771,7 @@ export declare const zoraCreator1155FactoryImplABI: readonly [{
|
|
|
3024
3771
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3025
3772
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3026
3773
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3027
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
3774
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3028
3775
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3029
3776
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3030
3777
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -3037,7 +3784,7 @@ export declare const zoraCreator1155FactoryImplAddress: {
|
|
|
3037
3784
|
readonly 8453: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3038
3785
|
readonly 42161: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3039
3786
|
readonly 81457: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3040
|
-
readonly 84532: "
|
|
3787
|
+
readonly 84532: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3041
3788
|
readonly 421614: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3042
3789
|
readonly 7777777: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3043
3790
|
readonly 11155111: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
@@ -3050,7 +3797,7 @@ export declare const zoraCreator1155FactoryImplAddress: {
|
|
|
3050
3797
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3051
3798
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3052
3799
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3053
|
-
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/
|
|
3800
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3054
3801
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3055
3802
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
3056
3803
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
|
|
@@ -3064,7 +3811,7 @@ export declare const zoraCreator1155FactoryImplConfig: {
|
|
|
3064
3811
|
readonly 8453: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3065
3812
|
readonly 42161: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3066
3813
|
readonly 81457: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3067
|
-
readonly 84532: "
|
|
3814
|
+
readonly 84532: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3068
3815
|
readonly 421614: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3069
3816
|
readonly 7777777: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
3070
3817
|
readonly 11155111: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021";
|
|
@@ -3255,6 +4002,36 @@ export declare const zoraCreator1155FactoryImplConfig: {
|
|
|
3255
4002
|
readonly internalType: "address";
|
|
3256
4003
|
readonly type: "address";
|
|
3257
4004
|
}];
|
|
4005
|
+
}, {
|
|
4006
|
+
readonly stateMutability: "view";
|
|
4007
|
+
readonly type: "function";
|
|
4008
|
+
readonly inputs: readonly [{
|
|
4009
|
+
readonly name: "msgSender";
|
|
4010
|
+
readonly internalType: "address";
|
|
4011
|
+
readonly type: "address";
|
|
4012
|
+
}, {
|
|
4013
|
+
readonly name: "newContractURI";
|
|
4014
|
+
readonly internalType: "string";
|
|
4015
|
+
readonly type: "string";
|
|
4016
|
+
}, {
|
|
4017
|
+
readonly name: "name";
|
|
4018
|
+
readonly internalType: "string";
|
|
4019
|
+
readonly type: "string";
|
|
4020
|
+
}, {
|
|
4021
|
+
readonly name: "contractAdmin";
|
|
4022
|
+
readonly internalType: "address";
|
|
4023
|
+
readonly type: "address";
|
|
4024
|
+
}, {
|
|
4025
|
+
readonly name: "setupActions";
|
|
4026
|
+
readonly internalType: "bytes[]";
|
|
4027
|
+
readonly type: "bytes[]";
|
|
4028
|
+
}];
|
|
4029
|
+
readonly name: "deterministicContractAddressWithSetupActions";
|
|
4030
|
+
readonly outputs: readonly [{
|
|
4031
|
+
readonly name: "";
|
|
4032
|
+
readonly internalType: "address";
|
|
4033
|
+
readonly type: "address";
|
|
4034
|
+
}];
|
|
3258
4035
|
}, {
|
|
3259
4036
|
readonly stateMutability: "view";
|
|
3260
4037
|
readonly type: "function";
|
|
@@ -5578,6 +6355,7 @@ export declare const zoraCreator1155ImplABI: readonly [{
|
|
|
5578
6355
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5579
6356
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5580
6357
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
6358
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5581
6359
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5582
6360
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
5583
6361
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -5613,6 +6391,16 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
5613
6391
|
readonly internalType: "string";
|
|
5614
6392
|
readonly type: "string";
|
|
5615
6393
|
}];
|
|
6394
|
+
}, {
|
|
6395
|
+
readonly stateMutability: "pure";
|
|
6396
|
+
readonly type: "function";
|
|
6397
|
+
readonly inputs: readonly [];
|
|
6398
|
+
readonly name: "contractVersion";
|
|
6399
|
+
readonly outputs: readonly [{
|
|
6400
|
+
readonly name: "";
|
|
6401
|
+
readonly internalType: "string";
|
|
6402
|
+
readonly type: "string";
|
|
6403
|
+
}];
|
|
5616
6404
|
}, {
|
|
5617
6405
|
readonly stateMutability: "view";
|
|
5618
6406
|
readonly type: "function";
|
|
@@ -5640,6 +6428,37 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
5640
6428
|
readonly internalType: "address";
|
|
5641
6429
|
readonly type: "address";
|
|
5642
6430
|
}];
|
|
6431
|
+
}, {
|
|
6432
|
+
readonly stateMutability: "view";
|
|
6433
|
+
readonly type: "function";
|
|
6434
|
+
readonly inputs: readonly [{
|
|
6435
|
+
readonly name: "contractConfig";
|
|
6436
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
6437
|
+
readonly type: "tuple";
|
|
6438
|
+
readonly components: readonly [{
|
|
6439
|
+
readonly name: "contractAdmin";
|
|
6440
|
+
readonly internalType: "address";
|
|
6441
|
+
readonly type: "address";
|
|
6442
|
+
}, {
|
|
6443
|
+
readonly name: "contractURI";
|
|
6444
|
+
readonly internalType: "string";
|
|
6445
|
+
readonly type: "string";
|
|
6446
|
+
}, {
|
|
6447
|
+
readonly name: "contractName";
|
|
6448
|
+
readonly internalType: "string";
|
|
6449
|
+
readonly type: "string";
|
|
6450
|
+
}, {
|
|
6451
|
+
readonly name: "additionalAdmins";
|
|
6452
|
+
readonly internalType: "address[]";
|
|
6453
|
+
readonly type: "address[]";
|
|
6454
|
+
}];
|
|
6455
|
+
}];
|
|
6456
|
+
readonly name: "getContractWithAdditionalAdminsAddress";
|
|
6457
|
+
readonly outputs: readonly [{
|
|
6458
|
+
readonly name: "";
|
|
6459
|
+
readonly internalType: "address";
|
|
6460
|
+
readonly type: "address";
|
|
6461
|
+
}];
|
|
5643
6462
|
}, {
|
|
5644
6463
|
readonly stateMutability: "view";
|
|
5645
6464
|
readonly type: "function";
|
|
@@ -5682,6 +6501,32 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
5682
6501
|
readonly internalType: "bool";
|
|
5683
6502
|
readonly type: "bool";
|
|
5684
6503
|
}];
|
|
6504
|
+
}, {
|
|
6505
|
+
readonly stateMutability: "view";
|
|
6506
|
+
readonly type: "function";
|
|
6507
|
+
readonly inputs: readonly [{
|
|
6508
|
+
readonly name: "signer";
|
|
6509
|
+
readonly internalType: "address";
|
|
6510
|
+
readonly type: "address";
|
|
6511
|
+
}, {
|
|
6512
|
+
readonly name: "premintContractConfigContractAdmin";
|
|
6513
|
+
readonly internalType: "address";
|
|
6514
|
+
readonly type: "address";
|
|
6515
|
+
}, {
|
|
6516
|
+
readonly name: "contractAddress";
|
|
6517
|
+
readonly internalType: "address";
|
|
6518
|
+
readonly type: "address";
|
|
6519
|
+
}, {
|
|
6520
|
+
readonly name: "additionalAdmins";
|
|
6521
|
+
readonly internalType: "address[]";
|
|
6522
|
+
readonly type: "address[]";
|
|
6523
|
+
}];
|
|
6524
|
+
readonly name: "isAuthorizedToCreatePremintWithAdditionalAdmins";
|
|
6525
|
+
readonly outputs: readonly [{
|
|
6526
|
+
readonly name: "isAuthorized";
|
|
6527
|
+
readonly internalType: "bool";
|
|
6528
|
+
readonly type: "bool";
|
|
6529
|
+
}];
|
|
5685
6530
|
}, {
|
|
5686
6531
|
readonly stateMutability: "view";
|
|
5687
6532
|
readonly type: "function";
|
|
@@ -5818,11 +6663,11 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
5818
6663
|
readonly type: "address";
|
|
5819
6664
|
}];
|
|
5820
6665
|
}, {
|
|
5821
|
-
readonly stateMutability: "
|
|
6666
|
+
readonly stateMutability: "payable";
|
|
5822
6667
|
readonly type: "function";
|
|
5823
6668
|
readonly inputs: readonly [{
|
|
5824
6669
|
readonly name: "contractConfig";
|
|
5825
|
-
readonly internalType: "struct
|
|
6670
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
5826
6671
|
readonly type: "tuple";
|
|
5827
6672
|
readonly components: readonly [{
|
|
5828
6673
|
readonly name: "contractAdmin";
|
|
@@ -5836,61 +6681,20 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
5836
6681
|
readonly name: "contractName";
|
|
5837
6682
|
readonly internalType: "string";
|
|
5838
6683
|
readonly type: "string";
|
|
6684
|
+
}, {
|
|
6685
|
+
readonly name: "additionalAdmins";
|
|
6686
|
+
readonly internalType: "address[]";
|
|
6687
|
+
readonly type: "address[]";
|
|
5839
6688
|
}];
|
|
5840
6689
|
}, {
|
|
5841
|
-
readonly name: "
|
|
5842
|
-
readonly internalType: "
|
|
6690
|
+
readonly name: "premintCollection";
|
|
6691
|
+
readonly internalType: "address";
|
|
6692
|
+
readonly type: "address";
|
|
6693
|
+
}, {
|
|
6694
|
+
readonly name: "encodedPremintConfig";
|
|
6695
|
+
readonly internalType: "struct PremintConfigEncoded";
|
|
5843
6696
|
readonly type: "tuple";
|
|
5844
6697
|
readonly components: readonly [{
|
|
5845
|
-
readonly name: "tokenConfig";
|
|
5846
|
-
readonly internalType: "struct Erc20TokenCreationConfigV1";
|
|
5847
|
-
readonly type: "tuple";
|
|
5848
|
-
readonly components: readonly [{
|
|
5849
|
-
readonly name: "tokenURI";
|
|
5850
|
-
readonly internalType: "string";
|
|
5851
|
-
readonly type: "string";
|
|
5852
|
-
}, {
|
|
5853
|
-
readonly name: "maxSupply";
|
|
5854
|
-
readonly internalType: "uint256";
|
|
5855
|
-
readonly type: "uint256";
|
|
5856
|
-
}, {
|
|
5857
|
-
readonly name: "royaltyBPS";
|
|
5858
|
-
readonly internalType: "uint32";
|
|
5859
|
-
readonly type: "uint32";
|
|
5860
|
-
}, {
|
|
5861
|
-
readonly name: "payoutRecipient";
|
|
5862
|
-
readonly internalType: "address";
|
|
5863
|
-
readonly type: "address";
|
|
5864
|
-
}, {
|
|
5865
|
-
readonly name: "createReferral";
|
|
5866
|
-
readonly internalType: "address";
|
|
5867
|
-
readonly type: "address";
|
|
5868
|
-
}, {
|
|
5869
|
-
readonly name: "erc20Minter";
|
|
5870
|
-
readonly internalType: "address";
|
|
5871
|
-
readonly type: "address";
|
|
5872
|
-
}, {
|
|
5873
|
-
readonly name: "mintStart";
|
|
5874
|
-
readonly internalType: "uint64";
|
|
5875
|
-
readonly type: "uint64";
|
|
5876
|
-
}, {
|
|
5877
|
-
readonly name: "mintDuration";
|
|
5878
|
-
readonly internalType: "uint64";
|
|
5879
|
-
readonly type: "uint64";
|
|
5880
|
-
}, {
|
|
5881
|
-
readonly name: "maxTokensPerAddress";
|
|
5882
|
-
readonly internalType: "uint64";
|
|
5883
|
-
readonly type: "uint64";
|
|
5884
|
-
}, {
|
|
5885
|
-
readonly name: "currency";
|
|
5886
|
-
readonly internalType: "address";
|
|
5887
|
-
readonly type: "address";
|
|
5888
|
-
}, {
|
|
5889
|
-
readonly name: "pricePerToken";
|
|
5890
|
-
readonly internalType: "uint256";
|
|
5891
|
-
readonly type: "uint256";
|
|
5892
|
-
}];
|
|
5893
|
-
}, {
|
|
5894
6698
|
readonly name: "uid";
|
|
5895
6699
|
readonly internalType: "uint32";
|
|
5896
6700
|
readonly type: "uint32";
|
|
@@ -5902,6 +6706,14 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
5902
6706
|
readonly name: "deleted";
|
|
5903
6707
|
readonly internalType: "bool";
|
|
5904
6708
|
readonly type: "bool";
|
|
6709
|
+
}, {
|
|
6710
|
+
readonly name: "tokenConfig";
|
|
6711
|
+
readonly internalType: "bytes";
|
|
6712
|
+
readonly type: "bytes";
|
|
6713
|
+
}, {
|
|
6714
|
+
readonly name: "premintConfigVersion";
|
|
6715
|
+
readonly internalType: "bytes32";
|
|
6716
|
+
readonly type: "bytes32";
|
|
5905
6717
|
}];
|
|
5906
6718
|
}, {
|
|
5907
6719
|
readonly name: "signature";
|
|
@@ -5937,9 +6749,9 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
5937
6749
|
readonly internalType: "address";
|
|
5938
6750
|
readonly type: "address";
|
|
5939
6751
|
}];
|
|
5940
|
-
readonly name: "
|
|
6752
|
+
readonly name: "premint";
|
|
5941
6753
|
readonly outputs: readonly [{
|
|
5942
|
-
readonly name: "
|
|
6754
|
+
readonly name: "premintResult";
|
|
5943
6755
|
readonly internalType: "struct PremintResult";
|
|
5944
6756
|
readonly type: "tuple";
|
|
5945
6757
|
readonly components: readonly [{
|
|
@@ -6088,7 +6900,7 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6088
6900
|
}];
|
|
6089
6901
|
readonly name: "premintV1";
|
|
6090
6902
|
readonly outputs: readonly [{
|
|
6091
|
-
readonly name: "
|
|
6903
|
+
readonly name: "";
|
|
6092
6904
|
readonly internalType: "struct PremintResult";
|
|
6093
6905
|
readonly type: "tuple";
|
|
6094
6906
|
readonly components: readonly [{
|
|
@@ -6215,142 +7027,7 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
6215
7027
|
}];
|
|
6216
7028
|
readonly name: "premintV2";
|
|
6217
7029
|
readonly outputs: readonly [{
|
|
6218
|
-
readonly name: "
|
|
6219
|
-
readonly internalType: "struct PremintResult";
|
|
6220
|
-
readonly type: "tuple";
|
|
6221
|
-
readonly components: readonly [{
|
|
6222
|
-
readonly name: "contractAddress";
|
|
6223
|
-
readonly internalType: "address";
|
|
6224
|
-
readonly type: "address";
|
|
6225
|
-
}, {
|
|
6226
|
-
readonly name: "tokenId";
|
|
6227
|
-
readonly internalType: "uint256";
|
|
6228
|
-
readonly type: "uint256";
|
|
6229
|
-
}, {
|
|
6230
|
-
readonly name: "createdNewContract";
|
|
6231
|
-
readonly internalType: "bool";
|
|
6232
|
-
readonly type: "bool";
|
|
6233
|
-
}];
|
|
6234
|
-
}];
|
|
6235
|
-
}, {
|
|
6236
|
-
readonly stateMutability: "payable";
|
|
6237
|
-
readonly type: "function";
|
|
6238
|
-
readonly inputs: readonly [{
|
|
6239
|
-
readonly name: "contractConfig";
|
|
6240
|
-
readonly internalType: "struct ContractCreationConfig";
|
|
6241
|
-
readonly type: "tuple";
|
|
6242
|
-
readonly components: readonly [{
|
|
6243
|
-
readonly name: "contractAdmin";
|
|
6244
|
-
readonly internalType: "address";
|
|
6245
|
-
readonly type: "address";
|
|
6246
|
-
}, {
|
|
6247
|
-
readonly name: "contractURI";
|
|
6248
|
-
readonly internalType: "string";
|
|
6249
|
-
readonly type: "string";
|
|
6250
|
-
}, {
|
|
6251
|
-
readonly name: "contractName";
|
|
6252
|
-
readonly internalType: "string";
|
|
6253
|
-
readonly type: "string";
|
|
6254
|
-
}];
|
|
6255
|
-
}, {
|
|
6256
|
-
readonly name: "premintConfig";
|
|
6257
|
-
readonly internalType: "struct PremintConfigV2";
|
|
6258
|
-
readonly type: "tuple";
|
|
6259
|
-
readonly components: readonly [{
|
|
6260
|
-
readonly name: "tokenConfig";
|
|
6261
|
-
readonly internalType: "struct TokenCreationConfigV2";
|
|
6262
|
-
readonly type: "tuple";
|
|
6263
|
-
readonly components: readonly [{
|
|
6264
|
-
readonly name: "tokenURI";
|
|
6265
|
-
readonly internalType: "string";
|
|
6266
|
-
readonly type: "string";
|
|
6267
|
-
}, {
|
|
6268
|
-
readonly name: "maxSupply";
|
|
6269
|
-
readonly internalType: "uint256";
|
|
6270
|
-
readonly type: "uint256";
|
|
6271
|
-
}, {
|
|
6272
|
-
readonly name: "maxTokensPerAddress";
|
|
6273
|
-
readonly internalType: "uint64";
|
|
6274
|
-
readonly type: "uint64";
|
|
6275
|
-
}, {
|
|
6276
|
-
readonly name: "pricePerToken";
|
|
6277
|
-
readonly internalType: "uint96";
|
|
6278
|
-
readonly type: "uint96";
|
|
6279
|
-
}, {
|
|
6280
|
-
readonly name: "mintStart";
|
|
6281
|
-
readonly internalType: "uint64";
|
|
6282
|
-
readonly type: "uint64";
|
|
6283
|
-
}, {
|
|
6284
|
-
readonly name: "mintDuration";
|
|
6285
|
-
readonly internalType: "uint64";
|
|
6286
|
-
readonly type: "uint64";
|
|
6287
|
-
}, {
|
|
6288
|
-
readonly name: "royaltyBPS";
|
|
6289
|
-
readonly internalType: "uint32";
|
|
6290
|
-
readonly type: "uint32";
|
|
6291
|
-
}, {
|
|
6292
|
-
readonly name: "payoutRecipient";
|
|
6293
|
-
readonly internalType: "address";
|
|
6294
|
-
readonly type: "address";
|
|
6295
|
-
}, {
|
|
6296
|
-
readonly name: "fixedPriceMinter";
|
|
6297
|
-
readonly internalType: "address";
|
|
6298
|
-
readonly type: "address";
|
|
6299
|
-
}, {
|
|
6300
|
-
readonly name: "createReferral";
|
|
6301
|
-
readonly internalType: "address";
|
|
6302
|
-
readonly type: "address";
|
|
6303
|
-
}];
|
|
6304
|
-
}, {
|
|
6305
|
-
readonly name: "uid";
|
|
6306
|
-
readonly internalType: "uint32";
|
|
6307
|
-
readonly type: "uint32";
|
|
6308
|
-
}, {
|
|
6309
|
-
readonly name: "version";
|
|
6310
|
-
readonly internalType: "uint32";
|
|
6311
|
-
readonly type: "uint32";
|
|
6312
|
-
}, {
|
|
6313
|
-
readonly name: "deleted";
|
|
6314
|
-
readonly internalType: "bool";
|
|
6315
|
-
readonly type: "bool";
|
|
6316
|
-
}];
|
|
6317
|
-
}, {
|
|
6318
|
-
readonly name: "signature";
|
|
6319
|
-
readonly internalType: "bytes";
|
|
6320
|
-
readonly type: "bytes";
|
|
6321
|
-
}, {
|
|
6322
|
-
readonly name: "quantityToMint";
|
|
6323
|
-
readonly internalType: "uint256";
|
|
6324
|
-
readonly type: "uint256";
|
|
6325
|
-
}, {
|
|
6326
|
-
readonly name: "mintArguments";
|
|
6327
|
-
readonly internalType: "struct MintArguments";
|
|
6328
|
-
readonly type: "tuple";
|
|
6329
|
-
readonly components: readonly [{
|
|
6330
|
-
readonly name: "mintRecipient";
|
|
6331
|
-
readonly internalType: "address";
|
|
6332
|
-
readonly type: "address";
|
|
6333
|
-
}, {
|
|
6334
|
-
readonly name: "mintComment";
|
|
6335
|
-
readonly internalType: "string";
|
|
6336
|
-
readonly type: "string";
|
|
6337
|
-
}, {
|
|
6338
|
-
readonly name: "mintRewardsRecipients";
|
|
6339
|
-
readonly internalType: "address[]";
|
|
6340
|
-
readonly type: "address[]";
|
|
6341
|
-
}];
|
|
6342
|
-
}, {
|
|
6343
|
-
readonly name: "firstMinter";
|
|
6344
|
-
readonly internalType: "address";
|
|
6345
|
-
readonly type: "address";
|
|
6346
|
-
}, {
|
|
6347
|
-
readonly name: "signerContract";
|
|
6348
|
-
readonly internalType: "address";
|
|
6349
|
-
readonly type: "address";
|
|
6350
|
-
}];
|
|
6351
|
-
readonly name: "premintV2WithSignerContract";
|
|
6352
|
-
readonly outputs: readonly [{
|
|
6353
|
-
readonly name: "result";
|
|
7030
|
+
readonly name: "";
|
|
6354
7031
|
readonly internalType: "struct PremintResult";
|
|
6355
7032
|
readonly type: "tuple";
|
|
6356
7033
|
readonly components: readonly [{
|
|
@@ -7038,6 +7715,7 @@ export declare const zoraCreator1155PremintExecutorImplABI: readonly [{
|
|
|
7038
7715
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7039
7716
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7040
7717
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7718
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7041
7719
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7042
7720
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7043
7721
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -7050,6 +7728,7 @@ export declare const zoraCreator1155PremintExecutorImplAddress: {
|
|
|
7050
7728
|
readonly 8453: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7051
7729
|
readonly 42161: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7052
7730
|
readonly 81457: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7731
|
+
readonly 84532: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7053
7732
|
readonly 421614: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7054
7733
|
readonly 7777777: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7055
7734
|
readonly 11155111: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
@@ -7062,6 +7741,7 @@ export declare const zoraCreator1155PremintExecutorImplAddress: {
|
|
|
7062
7741
|
* - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7063
7742
|
* - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7064
7743
|
* - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7744
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7065
7745
|
* - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7066
7746
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
7067
7747
|
* - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
|
|
@@ -7075,6 +7755,7 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7075
7755
|
readonly 8453: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7076
7756
|
readonly 42161: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7077
7757
|
readonly 81457: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7758
|
+
readonly 84532: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7078
7759
|
readonly 421614: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7079
7760
|
readonly 7777777: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
7080
7761
|
readonly 11155111: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340";
|
|
@@ -7111,6 +7792,16 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7111
7792
|
readonly internalType: "string";
|
|
7112
7793
|
readonly type: "string";
|
|
7113
7794
|
}];
|
|
7795
|
+
}, {
|
|
7796
|
+
readonly stateMutability: "pure";
|
|
7797
|
+
readonly type: "function";
|
|
7798
|
+
readonly inputs: readonly [];
|
|
7799
|
+
readonly name: "contractVersion";
|
|
7800
|
+
readonly outputs: readonly [{
|
|
7801
|
+
readonly name: "";
|
|
7802
|
+
readonly internalType: "string";
|
|
7803
|
+
readonly type: "string";
|
|
7804
|
+
}];
|
|
7114
7805
|
}, {
|
|
7115
7806
|
readonly stateMutability: "view";
|
|
7116
7807
|
readonly type: "function";
|
|
@@ -7138,6 +7829,37 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7138
7829
|
readonly internalType: "address";
|
|
7139
7830
|
readonly type: "address";
|
|
7140
7831
|
}];
|
|
7832
|
+
}, {
|
|
7833
|
+
readonly stateMutability: "view";
|
|
7834
|
+
readonly type: "function";
|
|
7835
|
+
readonly inputs: readonly [{
|
|
7836
|
+
readonly name: "contractConfig";
|
|
7837
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
7838
|
+
readonly type: "tuple";
|
|
7839
|
+
readonly components: readonly [{
|
|
7840
|
+
readonly name: "contractAdmin";
|
|
7841
|
+
readonly internalType: "address";
|
|
7842
|
+
readonly type: "address";
|
|
7843
|
+
}, {
|
|
7844
|
+
readonly name: "contractURI";
|
|
7845
|
+
readonly internalType: "string";
|
|
7846
|
+
readonly type: "string";
|
|
7847
|
+
}, {
|
|
7848
|
+
readonly name: "contractName";
|
|
7849
|
+
readonly internalType: "string";
|
|
7850
|
+
readonly type: "string";
|
|
7851
|
+
}, {
|
|
7852
|
+
readonly name: "additionalAdmins";
|
|
7853
|
+
readonly internalType: "address[]";
|
|
7854
|
+
readonly type: "address[]";
|
|
7855
|
+
}];
|
|
7856
|
+
}];
|
|
7857
|
+
readonly name: "getContractWithAdditionalAdminsAddress";
|
|
7858
|
+
readonly outputs: readonly [{
|
|
7859
|
+
readonly name: "";
|
|
7860
|
+
readonly internalType: "address";
|
|
7861
|
+
readonly type: "address";
|
|
7862
|
+
}];
|
|
7141
7863
|
}, {
|
|
7142
7864
|
readonly stateMutability: "view";
|
|
7143
7865
|
readonly type: "function";
|
|
@@ -7180,6 +7902,32 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7180
7902
|
readonly internalType: "bool";
|
|
7181
7903
|
readonly type: "bool";
|
|
7182
7904
|
}];
|
|
7905
|
+
}, {
|
|
7906
|
+
readonly stateMutability: "view";
|
|
7907
|
+
readonly type: "function";
|
|
7908
|
+
readonly inputs: readonly [{
|
|
7909
|
+
readonly name: "signer";
|
|
7910
|
+
readonly internalType: "address";
|
|
7911
|
+
readonly type: "address";
|
|
7912
|
+
}, {
|
|
7913
|
+
readonly name: "premintContractConfigContractAdmin";
|
|
7914
|
+
readonly internalType: "address";
|
|
7915
|
+
readonly type: "address";
|
|
7916
|
+
}, {
|
|
7917
|
+
readonly name: "contractAddress";
|
|
7918
|
+
readonly internalType: "address";
|
|
7919
|
+
readonly type: "address";
|
|
7920
|
+
}, {
|
|
7921
|
+
readonly name: "additionalAdmins";
|
|
7922
|
+
readonly internalType: "address[]";
|
|
7923
|
+
readonly type: "address[]";
|
|
7924
|
+
}];
|
|
7925
|
+
readonly name: "isAuthorizedToCreatePremintWithAdditionalAdmins";
|
|
7926
|
+
readonly outputs: readonly [{
|
|
7927
|
+
readonly name: "isAuthorized";
|
|
7928
|
+
readonly internalType: "bool";
|
|
7929
|
+
readonly type: "bool";
|
|
7930
|
+
}];
|
|
7183
7931
|
}, {
|
|
7184
7932
|
readonly stateMutability: "view";
|
|
7185
7933
|
readonly type: "function";
|
|
@@ -7316,11 +8064,11 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7316
8064
|
readonly type: "address";
|
|
7317
8065
|
}];
|
|
7318
8066
|
}, {
|
|
7319
|
-
readonly stateMutability: "
|
|
8067
|
+
readonly stateMutability: "payable";
|
|
7320
8068
|
readonly type: "function";
|
|
7321
8069
|
readonly inputs: readonly [{
|
|
7322
8070
|
readonly name: "contractConfig";
|
|
7323
|
-
readonly internalType: "struct
|
|
8071
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
7324
8072
|
readonly type: "tuple";
|
|
7325
8073
|
readonly components: readonly [{
|
|
7326
8074
|
readonly name: "contractAdmin";
|
|
@@ -7334,218 +8082,20 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7334
8082
|
readonly name: "contractName";
|
|
7335
8083
|
readonly internalType: "string";
|
|
7336
8084
|
readonly type: "string";
|
|
7337
|
-
}];
|
|
7338
|
-
}, {
|
|
7339
|
-
readonly name: "premintConfig";
|
|
7340
|
-
readonly internalType: "struct Erc20PremintConfigV1";
|
|
7341
|
-
readonly type: "tuple";
|
|
7342
|
-
readonly components: readonly [{
|
|
7343
|
-
readonly name: "tokenConfig";
|
|
7344
|
-
readonly internalType: "struct Erc20TokenCreationConfigV1";
|
|
7345
|
-
readonly type: "tuple";
|
|
7346
|
-
readonly components: readonly [{
|
|
7347
|
-
readonly name: "tokenURI";
|
|
7348
|
-
readonly internalType: "string";
|
|
7349
|
-
readonly type: "string";
|
|
7350
|
-
}, {
|
|
7351
|
-
readonly name: "maxSupply";
|
|
7352
|
-
readonly internalType: "uint256";
|
|
7353
|
-
readonly type: "uint256";
|
|
7354
|
-
}, {
|
|
7355
|
-
readonly name: "royaltyBPS";
|
|
7356
|
-
readonly internalType: "uint32";
|
|
7357
|
-
readonly type: "uint32";
|
|
7358
|
-
}, {
|
|
7359
|
-
readonly name: "payoutRecipient";
|
|
7360
|
-
readonly internalType: "address";
|
|
7361
|
-
readonly type: "address";
|
|
7362
|
-
}, {
|
|
7363
|
-
readonly name: "createReferral";
|
|
7364
|
-
readonly internalType: "address";
|
|
7365
|
-
readonly type: "address";
|
|
7366
|
-
}, {
|
|
7367
|
-
readonly name: "erc20Minter";
|
|
7368
|
-
readonly internalType: "address";
|
|
7369
|
-
readonly type: "address";
|
|
7370
|
-
}, {
|
|
7371
|
-
readonly name: "mintStart";
|
|
7372
|
-
readonly internalType: "uint64";
|
|
7373
|
-
readonly type: "uint64";
|
|
7374
|
-
}, {
|
|
7375
|
-
readonly name: "mintDuration";
|
|
7376
|
-
readonly internalType: "uint64";
|
|
7377
|
-
readonly type: "uint64";
|
|
7378
|
-
}, {
|
|
7379
|
-
readonly name: "maxTokensPerAddress";
|
|
7380
|
-
readonly internalType: "uint64";
|
|
7381
|
-
readonly type: "uint64";
|
|
7382
|
-
}, {
|
|
7383
|
-
readonly name: "currency";
|
|
7384
|
-
readonly internalType: "address";
|
|
7385
|
-
readonly type: "address";
|
|
7386
|
-
}, {
|
|
7387
|
-
readonly name: "pricePerToken";
|
|
7388
|
-
readonly internalType: "uint256";
|
|
7389
|
-
readonly type: "uint256";
|
|
7390
|
-
}];
|
|
7391
|
-
}, {
|
|
7392
|
-
readonly name: "uid";
|
|
7393
|
-
readonly internalType: "uint32";
|
|
7394
|
-
readonly type: "uint32";
|
|
7395
|
-
}, {
|
|
7396
|
-
readonly name: "version";
|
|
7397
|
-
readonly internalType: "uint32";
|
|
7398
|
-
readonly type: "uint32";
|
|
7399
|
-
}, {
|
|
7400
|
-
readonly name: "deleted";
|
|
7401
|
-
readonly internalType: "bool";
|
|
7402
|
-
readonly type: "bool";
|
|
7403
|
-
}];
|
|
7404
|
-
}, {
|
|
7405
|
-
readonly name: "signature";
|
|
7406
|
-
readonly internalType: "bytes";
|
|
7407
|
-
readonly type: "bytes";
|
|
7408
|
-
}, {
|
|
7409
|
-
readonly name: "quantityToMint";
|
|
7410
|
-
readonly internalType: "uint256";
|
|
7411
|
-
readonly type: "uint256";
|
|
7412
|
-
}, {
|
|
7413
|
-
readonly name: "mintArguments";
|
|
7414
|
-
readonly internalType: "struct MintArguments";
|
|
7415
|
-
readonly type: "tuple";
|
|
7416
|
-
readonly components: readonly [{
|
|
7417
|
-
readonly name: "mintRecipient";
|
|
7418
|
-
readonly internalType: "address";
|
|
7419
|
-
readonly type: "address";
|
|
7420
|
-
}, {
|
|
7421
|
-
readonly name: "mintComment";
|
|
7422
|
-
readonly internalType: "string";
|
|
7423
|
-
readonly type: "string";
|
|
7424
8085
|
}, {
|
|
7425
|
-
readonly name: "
|
|
8086
|
+
readonly name: "additionalAdmins";
|
|
7426
8087
|
readonly internalType: "address[]";
|
|
7427
8088
|
readonly type: "address[]";
|
|
7428
8089
|
}];
|
|
7429
8090
|
}, {
|
|
7430
|
-
readonly name: "
|
|
7431
|
-
readonly internalType: "address";
|
|
7432
|
-
readonly type: "address";
|
|
7433
|
-
}, {
|
|
7434
|
-
readonly name: "signerContract";
|
|
7435
|
-
readonly internalType: "address";
|
|
7436
|
-
readonly type: "address";
|
|
7437
|
-
}];
|
|
7438
|
-
readonly name: "premintErc20V1";
|
|
7439
|
-
readonly outputs: readonly [{
|
|
7440
|
-
readonly name: "result";
|
|
7441
|
-
readonly internalType: "struct PremintResult";
|
|
7442
|
-
readonly type: "tuple";
|
|
7443
|
-
readonly components: readonly [{
|
|
7444
|
-
readonly name: "contractAddress";
|
|
7445
|
-
readonly internalType: "address";
|
|
7446
|
-
readonly type: "address";
|
|
7447
|
-
}, {
|
|
7448
|
-
readonly name: "tokenId";
|
|
7449
|
-
readonly internalType: "uint256";
|
|
7450
|
-
readonly type: "uint256";
|
|
7451
|
-
}, {
|
|
7452
|
-
readonly name: "createdNewContract";
|
|
7453
|
-
readonly internalType: "bool";
|
|
7454
|
-
readonly type: "bool";
|
|
7455
|
-
}];
|
|
7456
|
-
}];
|
|
7457
|
-
}, {
|
|
7458
|
-
readonly stateMutability: "view";
|
|
7459
|
-
readonly type: "function";
|
|
7460
|
-
readonly inputs: readonly [{
|
|
7461
|
-
readonly name: "contractAddress";
|
|
8091
|
+
readonly name: "premintCollection";
|
|
7462
8092
|
readonly internalType: "address";
|
|
7463
8093
|
readonly type: "address";
|
|
7464
8094
|
}, {
|
|
7465
|
-
readonly name: "
|
|
7466
|
-
readonly internalType: "
|
|
7467
|
-
readonly type: "
|
|
7468
|
-
|
|
7469
|
-
readonly name: "premintStatus";
|
|
7470
|
-
readonly outputs: readonly [{
|
|
7471
|
-
readonly name: "contractCreated";
|
|
7472
|
-
readonly internalType: "bool";
|
|
7473
|
-
readonly type: "bool";
|
|
7474
|
-
}, {
|
|
7475
|
-
readonly name: "tokenIdForPremint";
|
|
7476
|
-
readonly internalType: "uint256";
|
|
7477
|
-
readonly type: "uint256";
|
|
7478
|
-
}];
|
|
7479
|
-
}, {
|
|
7480
|
-
readonly stateMutability: "payable";
|
|
7481
|
-
readonly type: "function";
|
|
7482
|
-
readonly inputs: readonly [{
|
|
7483
|
-
readonly name: "contractConfig";
|
|
7484
|
-
readonly internalType: "struct ContractCreationConfig";
|
|
7485
|
-
readonly type: "tuple";
|
|
7486
|
-
readonly components: readonly [{
|
|
7487
|
-
readonly name: "contractAdmin";
|
|
7488
|
-
readonly internalType: "address";
|
|
7489
|
-
readonly type: "address";
|
|
7490
|
-
}, {
|
|
7491
|
-
readonly name: "contractURI";
|
|
7492
|
-
readonly internalType: "string";
|
|
7493
|
-
readonly type: "string";
|
|
7494
|
-
}, {
|
|
7495
|
-
readonly name: "contractName";
|
|
7496
|
-
readonly internalType: "string";
|
|
7497
|
-
readonly type: "string";
|
|
7498
|
-
}];
|
|
7499
|
-
}, {
|
|
7500
|
-
readonly name: "premintConfig";
|
|
7501
|
-
readonly internalType: "struct PremintConfig";
|
|
7502
|
-
readonly type: "tuple";
|
|
7503
|
-
readonly components: readonly [{
|
|
7504
|
-
readonly name: "tokenConfig";
|
|
7505
|
-
readonly internalType: "struct TokenCreationConfig";
|
|
7506
|
-
readonly type: "tuple";
|
|
7507
|
-
readonly components: readonly [{
|
|
7508
|
-
readonly name: "tokenURI";
|
|
7509
|
-
readonly internalType: "string";
|
|
7510
|
-
readonly type: "string";
|
|
7511
|
-
}, {
|
|
7512
|
-
readonly name: "maxSupply";
|
|
7513
|
-
readonly internalType: "uint256";
|
|
7514
|
-
readonly type: "uint256";
|
|
7515
|
-
}, {
|
|
7516
|
-
readonly name: "maxTokensPerAddress";
|
|
7517
|
-
readonly internalType: "uint64";
|
|
7518
|
-
readonly type: "uint64";
|
|
7519
|
-
}, {
|
|
7520
|
-
readonly name: "pricePerToken";
|
|
7521
|
-
readonly internalType: "uint96";
|
|
7522
|
-
readonly type: "uint96";
|
|
7523
|
-
}, {
|
|
7524
|
-
readonly name: "mintStart";
|
|
7525
|
-
readonly internalType: "uint64";
|
|
7526
|
-
readonly type: "uint64";
|
|
7527
|
-
}, {
|
|
7528
|
-
readonly name: "mintDuration";
|
|
7529
|
-
readonly internalType: "uint64";
|
|
7530
|
-
readonly type: "uint64";
|
|
7531
|
-
}, {
|
|
7532
|
-
readonly name: "royaltyMintSchedule";
|
|
7533
|
-
readonly internalType: "uint32";
|
|
7534
|
-
readonly type: "uint32";
|
|
7535
|
-
}, {
|
|
7536
|
-
readonly name: "royaltyBPS";
|
|
7537
|
-
readonly internalType: "uint32";
|
|
7538
|
-
readonly type: "uint32";
|
|
7539
|
-
}, {
|
|
7540
|
-
readonly name: "royaltyRecipient";
|
|
7541
|
-
readonly internalType: "address";
|
|
7542
|
-
readonly type: "address";
|
|
7543
|
-
}, {
|
|
7544
|
-
readonly name: "fixedPriceMinter";
|
|
7545
|
-
readonly internalType: "address";
|
|
7546
|
-
readonly type: "address";
|
|
7547
|
-
}];
|
|
7548
|
-
}, {
|
|
8095
|
+
readonly name: "encodedPremintConfig";
|
|
8096
|
+
readonly internalType: "struct PremintConfigEncoded";
|
|
8097
|
+
readonly type: "tuple";
|
|
8098
|
+
readonly components: readonly [{
|
|
7549
8099
|
readonly name: "uid";
|
|
7550
8100
|
readonly internalType: "uint32";
|
|
7551
8101
|
readonly type: "uint32";
|
|
@@ -7557,6 +8107,14 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7557
8107
|
readonly name: "deleted";
|
|
7558
8108
|
readonly internalType: "bool";
|
|
7559
8109
|
readonly type: "bool";
|
|
8110
|
+
}, {
|
|
8111
|
+
readonly name: "tokenConfig";
|
|
8112
|
+
readonly internalType: "bytes";
|
|
8113
|
+
readonly type: "bytes";
|
|
8114
|
+
}, {
|
|
8115
|
+
readonly name: "premintConfigVersion";
|
|
8116
|
+
readonly internalType: "bytes32";
|
|
8117
|
+
readonly type: "bytes32";
|
|
7560
8118
|
}];
|
|
7561
8119
|
}, {
|
|
7562
8120
|
readonly name: "signature";
|
|
@@ -7583,10 +8141,18 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7583
8141
|
readonly internalType: "address[]";
|
|
7584
8142
|
readonly type: "address[]";
|
|
7585
8143
|
}];
|
|
8144
|
+
}, {
|
|
8145
|
+
readonly name: "firstMinter";
|
|
8146
|
+
readonly internalType: "address";
|
|
8147
|
+
readonly type: "address";
|
|
8148
|
+
}, {
|
|
8149
|
+
readonly name: "signerContract";
|
|
8150
|
+
readonly internalType: "address";
|
|
8151
|
+
readonly type: "address";
|
|
7586
8152
|
}];
|
|
7587
|
-
readonly name: "
|
|
8153
|
+
readonly name: "premint";
|
|
7588
8154
|
readonly outputs: readonly [{
|
|
7589
|
-
readonly name: "
|
|
8155
|
+
readonly name: "premintResult";
|
|
7590
8156
|
readonly internalType: "struct PremintResult";
|
|
7591
8157
|
readonly type: "tuple";
|
|
7592
8158
|
readonly components: readonly [{
|
|
@@ -7603,6 +8169,28 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7603
8169
|
readonly type: "bool";
|
|
7604
8170
|
}];
|
|
7605
8171
|
}];
|
|
8172
|
+
}, {
|
|
8173
|
+
readonly stateMutability: "view";
|
|
8174
|
+
readonly type: "function";
|
|
8175
|
+
readonly inputs: readonly [{
|
|
8176
|
+
readonly name: "contractAddress";
|
|
8177
|
+
readonly internalType: "address";
|
|
8178
|
+
readonly type: "address";
|
|
8179
|
+
}, {
|
|
8180
|
+
readonly name: "uid";
|
|
8181
|
+
readonly internalType: "uint32";
|
|
8182
|
+
readonly type: "uint32";
|
|
8183
|
+
}];
|
|
8184
|
+
readonly name: "premintStatus";
|
|
8185
|
+
readonly outputs: readonly [{
|
|
8186
|
+
readonly name: "contractCreated";
|
|
8187
|
+
readonly internalType: "bool";
|
|
8188
|
+
readonly type: "bool";
|
|
8189
|
+
}, {
|
|
8190
|
+
readonly name: "tokenIdForPremint";
|
|
8191
|
+
readonly internalType: "uint256";
|
|
8192
|
+
readonly type: "uint256";
|
|
8193
|
+
}];
|
|
7606
8194
|
}, {
|
|
7607
8195
|
readonly stateMutability: "payable";
|
|
7608
8196
|
readonly type: "function";
|
|
@@ -7625,11 +8213,11 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7625
8213
|
}];
|
|
7626
8214
|
}, {
|
|
7627
8215
|
readonly name: "premintConfig";
|
|
7628
|
-
readonly internalType: "struct
|
|
8216
|
+
readonly internalType: "struct PremintConfig";
|
|
7629
8217
|
readonly type: "tuple";
|
|
7630
8218
|
readonly components: readonly [{
|
|
7631
8219
|
readonly name: "tokenConfig";
|
|
7632
|
-
readonly internalType: "struct
|
|
8220
|
+
readonly internalType: "struct TokenCreationConfig";
|
|
7633
8221
|
readonly type: "tuple";
|
|
7634
8222
|
readonly components: readonly [{
|
|
7635
8223
|
readonly name: "tokenURI";
|
|
@@ -7655,22 +8243,22 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7655
8243
|
readonly name: "mintDuration";
|
|
7656
8244
|
readonly internalType: "uint64";
|
|
7657
8245
|
readonly type: "uint64";
|
|
8246
|
+
}, {
|
|
8247
|
+
readonly name: "royaltyMintSchedule";
|
|
8248
|
+
readonly internalType: "uint32";
|
|
8249
|
+
readonly type: "uint32";
|
|
7658
8250
|
}, {
|
|
7659
8251
|
readonly name: "royaltyBPS";
|
|
7660
8252
|
readonly internalType: "uint32";
|
|
7661
8253
|
readonly type: "uint32";
|
|
7662
8254
|
}, {
|
|
7663
|
-
readonly name: "
|
|
8255
|
+
readonly name: "royaltyRecipient";
|
|
7664
8256
|
readonly internalType: "address";
|
|
7665
8257
|
readonly type: "address";
|
|
7666
8258
|
}, {
|
|
7667
8259
|
readonly name: "fixedPriceMinter";
|
|
7668
8260
|
readonly internalType: "address";
|
|
7669
8261
|
readonly type: "address";
|
|
7670
|
-
}, {
|
|
7671
|
-
readonly name: "createReferral";
|
|
7672
|
-
readonly internalType: "address";
|
|
7673
|
-
readonly type: "address";
|
|
7674
8262
|
}];
|
|
7675
8263
|
}, {
|
|
7676
8264
|
readonly name: "uid";
|
|
@@ -7711,9 +8299,9 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7711
8299
|
readonly type: "address[]";
|
|
7712
8300
|
}];
|
|
7713
8301
|
}];
|
|
7714
|
-
readonly name: "
|
|
8302
|
+
readonly name: "premintV1";
|
|
7715
8303
|
readonly outputs: readonly [{
|
|
7716
|
-
readonly name: "
|
|
8304
|
+
readonly name: "";
|
|
7717
8305
|
readonly internalType: "struct PremintResult";
|
|
7718
8306
|
readonly type: "tuple";
|
|
7719
8307
|
readonly components: readonly [{
|
|
@@ -7837,18 +8425,10 @@ export declare const zoraCreator1155PremintExecutorImplConfig: {
|
|
|
7837
8425
|
readonly internalType: "address[]";
|
|
7838
8426
|
readonly type: "address[]";
|
|
7839
8427
|
}];
|
|
7840
|
-
}, {
|
|
7841
|
-
readonly name: "firstMinter";
|
|
7842
|
-
readonly internalType: "address";
|
|
7843
|
-
readonly type: "address";
|
|
7844
|
-
}, {
|
|
7845
|
-
readonly name: "signerContract";
|
|
7846
|
-
readonly internalType: "address";
|
|
7847
|
-
readonly type: "address";
|
|
7848
8428
|
}];
|
|
7849
|
-
readonly name: "
|
|
8429
|
+
readonly name: "premintV2";
|
|
7850
8430
|
readonly outputs: readonly [{
|
|
7851
|
-
readonly name: "
|
|
8431
|
+
readonly name: "";
|
|
7852
8432
|
readonly internalType: "struct PremintResult";
|
|
7853
8433
|
readonly type: "tuple";
|
|
7854
8434
|
readonly components: readonly [{
|
|
@@ -10458,6 +11038,7 @@ export declare const zoraCreatorRedeemMinterFactoryConfig: {
|
|
|
10458
11038
|
}];
|
|
10459
11039
|
};
|
|
10460
11040
|
/**
|
|
11041
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
10461
11042
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
10462
11043
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
10463
11044
|
*/
|
|
@@ -11703,19 +12284,23 @@ export declare const zoraMints1155ABI: readonly [{
|
|
|
11703
12284
|
readonly name: "TokenNotMintable";
|
|
11704
12285
|
}];
|
|
11705
12286
|
/**
|
|
12287
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
11706
12288
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
11707
12289
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
11708
12290
|
*/
|
|
11709
12291
|
export declare const zoraMints1155Address: {
|
|
12292
|
+
readonly 84532: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
11710
12293
|
readonly 7777777: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
11711
12294
|
readonly 999999999: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
11712
12295
|
};
|
|
11713
12296
|
/**
|
|
12297
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
11714
12298
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
11715
12299
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
|
|
11716
12300
|
*/
|
|
11717
12301
|
export declare const zoraMints1155Config: {
|
|
11718
12302
|
readonly address: {
|
|
12303
|
+
readonly 84532: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
11719
12304
|
readonly 7777777: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
11720
12305
|
readonly 999999999: "0x7777777d57c1C6e472fa379b7b3B6c6ba3835073";
|
|
11721
12306
|
};
|
|
@@ -12962,6 +13547,7 @@ export declare const zoraMints1155Config: {
|
|
|
12962
13547
|
}];
|
|
12963
13548
|
};
|
|
12964
13549
|
/**
|
|
13550
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
12965
13551
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
12966
13552
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
12967
13553
|
*/
|
|
@@ -12970,7 +13556,7 @@ export declare const zoraMintsManagerImplABI: readonly [{
|
|
|
12970
13556
|
readonly type: "constructor";
|
|
12971
13557
|
readonly inputs: readonly [{
|
|
12972
13558
|
readonly name: "_premintExecutor";
|
|
12973
|
-
readonly internalType: "contract
|
|
13559
|
+
readonly internalType: "contract IZoraCreator1155PremintExecutorAllVersions";
|
|
12974
13560
|
readonly type: "address";
|
|
12975
13561
|
}];
|
|
12976
13562
|
}, {
|
|
@@ -13076,6 +13662,104 @@ export declare const zoraMintsManagerImplABI: readonly [{
|
|
|
13076
13662
|
}];
|
|
13077
13663
|
readonly name: "collect";
|
|
13078
13664
|
readonly outputs: readonly [];
|
|
13665
|
+
}, {
|
|
13666
|
+
readonly stateMutability: "payable";
|
|
13667
|
+
readonly type: "function";
|
|
13668
|
+
readonly inputs: readonly [{
|
|
13669
|
+
readonly name: "contractConfig";
|
|
13670
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
13671
|
+
readonly type: "tuple";
|
|
13672
|
+
readonly components: readonly [{
|
|
13673
|
+
readonly name: "contractAdmin";
|
|
13674
|
+
readonly internalType: "address";
|
|
13675
|
+
readonly type: "address";
|
|
13676
|
+
}, {
|
|
13677
|
+
readonly name: "contractURI";
|
|
13678
|
+
readonly internalType: "string";
|
|
13679
|
+
readonly type: "string";
|
|
13680
|
+
}, {
|
|
13681
|
+
readonly name: "contractName";
|
|
13682
|
+
readonly internalType: "string";
|
|
13683
|
+
readonly type: "string";
|
|
13684
|
+
}, {
|
|
13685
|
+
readonly name: "additionalAdmins";
|
|
13686
|
+
readonly internalType: "address[]";
|
|
13687
|
+
readonly type: "address[]";
|
|
13688
|
+
}];
|
|
13689
|
+
}, {
|
|
13690
|
+
readonly name: "tokenContract";
|
|
13691
|
+
readonly internalType: "address";
|
|
13692
|
+
readonly type: "address";
|
|
13693
|
+
}, {
|
|
13694
|
+
readonly name: "premintConfig";
|
|
13695
|
+
readonly internalType: "struct PremintConfigEncoded";
|
|
13696
|
+
readonly type: "tuple";
|
|
13697
|
+
readonly components: readonly [{
|
|
13698
|
+
readonly name: "uid";
|
|
13699
|
+
readonly internalType: "uint32";
|
|
13700
|
+
readonly type: "uint32";
|
|
13701
|
+
}, {
|
|
13702
|
+
readonly name: "version";
|
|
13703
|
+
readonly internalType: "uint32";
|
|
13704
|
+
readonly type: "uint32";
|
|
13705
|
+
}, {
|
|
13706
|
+
readonly name: "deleted";
|
|
13707
|
+
readonly internalType: "bool";
|
|
13708
|
+
readonly type: "bool";
|
|
13709
|
+
}, {
|
|
13710
|
+
readonly name: "tokenConfig";
|
|
13711
|
+
readonly internalType: "bytes";
|
|
13712
|
+
readonly type: "bytes";
|
|
13713
|
+
}, {
|
|
13714
|
+
readonly name: "premintConfigVersion";
|
|
13715
|
+
readonly internalType: "bytes32";
|
|
13716
|
+
readonly type: "bytes32";
|
|
13717
|
+
}];
|
|
13718
|
+
}, {
|
|
13719
|
+
readonly name: "signature";
|
|
13720
|
+
readonly internalType: "bytes";
|
|
13721
|
+
readonly type: "bytes";
|
|
13722
|
+
}, {
|
|
13723
|
+
readonly name: "mintArguments";
|
|
13724
|
+
readonly internalType: "struct MintArguments";
|
|
13725
|
+
readonly type: "tuple";
|
|
13726
|
+
readonly components: readonly [{
|
|
13727
|
+
readonly name: "mintRecipient";
|
|
13728
|
+
readonly internalType: "address";
|
|
13729
|
+
readonly type: "address";
|
|
13730
|
+
}, {
|
|
13731
|
+
readonly name: "mintComment";
|
|
13732
|
+
readonly internalType: "string";
|
|
13733
|
+
readonly type: "string";
|
|
13734
|
+
}, {
|
|
13735
|
+
readonly name: "mintRewardsRecipients";
|
|
13736
|
+
readonly internalType: "address[]";
|
|
13737
|
+
readonly type: "address[]";
|
|
13738
|
+
}];
|
|
13739
|
+
}, {
|
|
13740
|
+
readonly name: "signerContract";
|
|
13741
|
+
readonly internalType: "address";
|
|
13742
|
+
readonly type: "address";
|
|
13743
|
+
}];
|
|
13744
|
+
readonly name: "collectPremint";
|
|
13745
|
+
readonly outputs: readonly [{
|
|
13746
|
+
readonly name: "result";
|
|
13747
|
+
readonly internalType: "struct PremintResult";
|
|
13748
|
+
readonly type: "tuple";
|
|
13749
|
+
readonly components: readonly [{
|
|
13750
|
+
readonly name: "contractAddress";
|
|
13751
|
+
readonly internalType: "address";
|
|
13752
|
+
readonly type: "address";
|
|
13753
|
+
}, {
|
|
13754
|
+
readonly name: "tokenId";
|
|
13755
|
+
readonly internalType: "uint256";
|
|
13756
|
+
readonly type: "uint256";
|
|
13757
|
+
}, {
|
|
13758
|
+
readonly name: "createdNewContract";
|
|
13759
|
+
readonly internalType: "bool";
|
|
13760
|
+
readonly type: "bool";
|
|
13761
|
+
}];
|
|
13762
|
+
}];
|
|
13079
13763
|
}, {
|
|
13080
13764
|
readonly stateMutability: "payable";
|
|
13081
13765
|
readonly type: "function";
|
|
@@ -14195,19 +14879,23 @@ export declare const zoraMintsManagerImplABI: readonly [{
|
|
|
14195
14879
|
readonly name: "premintSignerContractNotAContract";
|
|
14196
14880
|
}];
|
|
14197
14881
|
/**
|
|
14882
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14198
14883
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14199
14884
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14200
14885
|
*/
|
|
14201
14886
|
export declare const zoraMintsManagerImplAddress: {
|
|
14887
|
+
readonly 84532: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14202
14888
|
readonly 7777777: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14203
14889
|
readonly 999999999: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14204
14890
|
};
|
|
14205
14891
|
/**
|
|
14892
|
+
* - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14206
14893
|
* - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14207
14894
|
* - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
|
|
14208
14895
|
*/
|
|
14209
14896
|
export declare const zoraMintsManagerImplConfig: {
|
|
14210
14897
|
readonly address: {
|
|
14898
|
+
readonly 84532: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14211
14899
|
readonly 7777777: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14212
14900
|
readonly 999999999: "0x77777770cA269366c7208aFcF36FE2C6F7f7608B";
|
|
14213
14901
|
};
|
|
@@ -14216,7 +14904,7 @@ export declare const zoraMintsManagerImplConfig: {
|
|
|
14216
14904
|
readonly type: "constructor";
|
|
14217
14905
|
readonly inputs: readonly [{
|
|
14218
14906
|
readonly name: "_premintExecutor";
|
|
14219
|
-
readonly internalType: "contract
|
|
14907
|
+
readonly internalType: "contract IZoraCreator1155PremintExecutorAllVersions";
|
|
14220
14908
|
readonly type: "address";
|
|
14221
14909
|
}];
|
|
14222
14910
|
}, {
|
|
@@ -14322,6 +15010,104 @@ export declare const zoraMintsManagerImplConfig: {
|
|
|
14322
15010
|
}];
|
|
14323
15011
|
readonly name: "collect";
|
|
14324
15012
|
readonly outputs: readonly [];
|
|
15013
|
+
}, {
|
|
15014
|
+
readonly stateMutability: "payable";
|
|
15015
|
+
readonly type: "function";
|
|
15016
|
+
readonly inputs: readonly [{
|
|
15017
|
+
readonly name: "contractConfig";
|
|
15018
|
+
readonly internalType: "struct ContractWithAdditionalAdminsCreationConfig";
|
|
15019
|
+
readonly type: "tuple";
|
|
15020
|
+
readonly components: readonly [{
|
|
15021
|
+
readonly name: "contractAdmin";
|
|
15022
|
+
readonly internalType: "address";
|
|
15023
|
+
readonly type: "address";
|
|
15024
|
+
}, {
|
|
15025
|
+
readonly name: "contractURI";
|
|
15026
|
+
readonly internalType: "string";
|
|
15027
|
+
readonly type: "string";
|
|
15028
|
+
}, {
|
|
15029
|
+
readonly name: "contractName";
|
|
15030
|
+
readonly internalType: "string";
|
|
15031
|
+
readonly type: "string";
|
|
15032
|
+
}, {
|
|
15033
|
+
readonly name: "additionalAdmins";
|
|
15034
|
+
readonly internalType: "address[]";
|
|
15035
|
+
readonly type: "address[]";
|
|
15036
|
+
}];
|
|
15037
|
+
}, {
|
|
15038
|
+
readonly name: "tokenContract";
|
|
15039
|
+
readonly internalType: "address";
|
|
15040
|
+
readonly type: "address";
|
|
15041
|
+
}, {
|
|
15042
|
+
readonly name: "premintConfig";
|
|
15043
|
+
readonly internalType: "struct PremintConfigEncoded";
|
|
15044
|
+
readonly type: "tuple";
|
|
15045
|
+
readonly components: readonly [{
|
|
15046
|
+
readonly name: "uid";
|
|
15047
|
+
readonly internalType: "uint32";
|
|
15048
|
+
readonly type: "uint32";
|
|
15049
|
+
}, {
|
|
15050
|
+
readonly name: "version";
|
|
15051
|
+
readonly internalType: "uint32";
|
|
15052
|
+
readonly type: "uint32";
|
|
15053
|
+
}, {
|
|
15054
|
+
readonly name: "deleted";
|
|
15055
|
+
readonly internalType: "bool";
|
|
15056
|
+
readonly type: "bool";
|
|
15057
|
+
}, {
|
|
15058
|
+
readonly name: "tokenConfig";
|
|
15059
|
+
readonly internalType: "bytes";
|
|
15060
|
+
readonly type: "bytes";
|
|
15061
|
+
}, {
|
|
15062
|
+
readonly name: "premintConfigVersion";
|
|
15063
|
+
readonly internalType: "bytes32";
|
|
15064
|
+
readonly type: "bytes32";
|
|
15065
|
+
}];
|
|
15066
|
+
}, {
|
|
15067
|
+
readonly name: "signature";
|
|
15068
|
+
readonly internalType: "bytes";
|
|
15069
|
+
readonly type: "bytes";
|
|
15070
|
+
}, {
|
|
15071
|
+
readonly name: "mintArguments";
|
|
15072
|
+
readonly internalType: "struct MintArguments";
|
|
15073
|
+
readonly type: "tuple";
|
|
15074
|
+
readonly components: readonly [{
|
|
15075
|
+
readonly name: "mintRecipient";
|
|
15076
|
+
readonly internalType: "address";
|
|
15077
|
+
readonly type: "address";
|
|
15078
|
+
}, {
|
|
15079
|
+
readonly name: "mintComment";
|
|
15080
|
+
readonly internalType: "string";
|
|
15081
|
+
readonly type: "string";
|
|
15082
|
+
}, {
|
|
15083
|
+
readonly name: "mintRewardsRecipients";
|
|
15084
|
+
readonly internalType: "address[]";
|
|
15085
|
+
readonly type: "address[]";
|
|
15086
|
+
}];
|
|
15087
|
+
}, {
|
|
15088
|
+
readonly name: "signerContract";
|
|
15089
|
+
readonly internalType: "address";
|
|
15090
|
+
readonly type: "address";
|
|
15091
|
+
}];
|
|
15092
|
+
readonly name: "collectPremint";
|
|
15093
|
+
readonly outputs: readonly [{
|
|
15094
|
+
readonly name: "result";
|
|
15095
|
+
readonly internalType: "struct PremintResult";
|
|
15096
|
+
readonly type: "tuple";
|
|
15097
|
+
readonly components: readonly [{
|
|
15098
|
+
readonly name: "contractAddress";
|
|
15099
|
+
readonly internalType: "address";
|
|
15100
|
+
readonly type: "address";
|
|
15101
|
+
}, {
|
|
15102
|
+
readonly name: "tokenId";
|
|
15103
|
+
readonly internalType: "uint256";
|
|
15104
|
+
readonly type: "uint256";
|
|
15105
|
+
}, {
|
|
15106
|
+
readonly name: "createdNewContract";
|
|
15107
|
+
readonly internalType: "bool";
|
|
15108
|
+
readonly type: "bool";
|
|
15109
|
+
}];
|
|
15110
|
+
}];
|
|
14325
15111
|
}, {
|
|
14326
15112
|
readonly stateMutability: "payable";
|
|
14327
15113
|
readonly type: "function";
|