@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.
@@ -11,9 +11,65 @@
11
11
  * - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
12
12
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
13
13
  * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
14
- * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
14
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2)
15
15
  */
16
16
  export const erc20MinterABI = [
17
+ {
18
+ stateMutability: 'nonpayable',
19
+ type: 'function',
20
+ inputs: [],
21
+ name: 'acceptOwnership',
22
+ outputs: [],
23
+ },
24
+ {
25
+ stateMutability: 'view',
26
+ type: 'function',
27
+ inputs: [
28
+ {
29
+ name: 'config',
30
+ internalType: 'struct IERC20Minter.PremintSalesConfig',
31
+ type: 'tuple',
32
+ components: [
33
+ { name: 'duration', internalType: 'uint64', type: 'uint64' },
34
+ {
35
+ name: 'maxTokensPerAddress',
36
+ internalType: 'uint64',
37
+ type: 'uint64',
38
+ },
39
+ { name: 'pricePerToken', internalType: 'uint256', type: 'uint256' },
40
+ { name: 'fundsRecipient', internalType: 'address', type: 'address' },
41
+ { name: 'currency', internalType: 'address', type: 'address' },
42
+ ],
43
+ },
44
+ ],
45
+ name: 'buildSalesConfigForPremint',
46
+ outputs: [
47
+ {
48
+ name: '',
49
+ internalType: 'struct IERC20Minter.SalesConfig',
50
+ type: 'tuple',
51
+ components: [
52
+ { name: 'saleStart', internalType: 'uint64', type: 'uint64' },
53
+ { name: 'saleEnd', internalType: 'uint64', type: 'uint64' },
54
+ {
55
+ name: 'maxTokensPerAddress',
56
+ internalType: 'uint64',
57
+ type: 'uint64',
58
+ },
59
+ { name: 'pricePerToken', internalType: 'uint256', type: 'uint256' },
60
+ { name: 'fundsRecipient', internalType: 'address', type: 'address' },
61
+ { name: 'currency', internalType: 'address', type: 'address' },
62
+ ],
63
+ },
64
+ ],
65
+ },
66
+ {
67
+ stateMutability: 'nonpayable',
68
+ type: 'function',
69
+ inputs: [],
70
+ name: 'cancelOwnershipTransfer',
71
+ outputs: [],
72
+ },
17
73
  {
18
74
  stateMutability: 'pure',
19
75
  type: 'function',
@@ -56,7 +112,7 @@ export const erc20MinterABI = [
56
112
  outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
57
113
  },
58
114
  {
59
- stateMutability: 'pure',
115
+ stateMutability: 'view',
60
116
  type: 'function',
61
117
  inputs: [{ name: 'totalValue', internalType: 'uint256', type: 'uint256' }],
62
118
  name: 'computeTotalReward',
@@ -83,6 +139,13 @@ export const erc20MinterABI = [
83
139
  name: 'contractVersion',
84
140
  outputs: [{ name: '', internalType: 'string', type: 'string' }],
85
141
  },
142
+ {
143
+ stateMutability: 'view',
144
+ type: 'function',
145
+ inputs: [],
146
+ name: 'ethRewardAmount',
147
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
148
+ },
86
149
  {
87
150
  stateMutability: 'view',
88
151
  type: 'function',
@@ -95,6 +158,32 @@ export const erc20MinterABI = [
95
158
  { name: 'createReferral', internalType: 'address', type: 'address' },
96
159
  ],
97
160
  },
161
+ {
162
+ stateMutability: 'view',
163
+ type: 'function',
164
+ inputs: [],
165
+ name: 'getERC20MinterConfig',
166
+ outputs: [
167
+ {
168
+ name: '',
169
+ internalType: 'struct IERC20Minter.ERC20MinterConfig',
170
+ type: 'tuple',
171
+ components: [
172
+ {
173
+ name: 'zoraRewardRecipientAddress',
174
+ internalType: 'address',
175
+ type: 'address',
176
+ },
177
+ {
178
+ name: 'rewardRecipientPercentage',
179
+ internalType: 'uint256',
180
+ type: 'uint256',
181
+ },
182
+ { name: 'ethReward', internalType: 'uint256', type: 'uint256' },
183
+ ],
184
+ },
185
+ ],
186
+ },
98
187
  {
99
188
  stateMutability: 'view',
100
189
  type: 'function',
@@ -127,12 +216,15 @@ export const erc20MinterABI = [
127
216
  internalType: 'address',
128
217
  type: 'address',
129
218
  },
219
+ { name: '_owner', internalType: 'address', type: 'address' },
220
+ { name: '_rewardPct', internalType: 'uint256', type: 'uint256' },
221
+ { name: '_ethReward', internalType: 'uint256', type: 'uint256' },
130
222
  ],
131
223
  name: 'initialize',
132
224
  outputs: [],
133
225
  },
134
226
  {
135
- stateMutability: 'nonpayable',
227
+ stateMutability: 'payable',
136
228
  type: 'function',
137
229
  inputs: [
138
230
  { name: 'mintTo', internalType: 'address', type: 'address' },
@@ -147,6 +239,39 @@ export const erc20MinterABI = [
147
239
  name: 'mint',
148
240
  outputs: [],
149
241
  },
242
+ {
243
+ stateMutability: 'view',
244
+ type: 'function',
245
+ inputs: [],
246
+ name: 'minterConfig',
247
+ outputs: [
248
+ {
249
+ name: 'zoraRewardRecipientAddress',
250
+ internalType: 'address',
251
+ type: 'address',
252
+ },
253
+ {
254
+ name: 'rewardRecipientPercentage',
255
+ internalType: 'uint256',
256
+ type: 'uint256',
257
+ },
258
+ { name: 'ethReward', internalType: 'uint256', type: 'uint256' },
259
+ ],
260
+ },
261
+ {
262
+ stateMutability: 'view',
263
+ type: 'function',
264
+ inputs: [],
265
+ name: 'owner',
266
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
267
+ },
268
+ {
269
+ stateMutability: 'view',
270
+ type: 'function',
271
+ inputs: [],
272
+ name: 'pendingOwner',
273
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
274
+ },
150
275
  {
151
276
  stateMutability: 'pure',
152
277
  type: 'function',
@@ -189,6 +314,20 @@ export const erc20MinterABI = [
189
314
  name: 'resetSale',
190
315
  outputs: [],
191
316
  },
317
+ {
318
+ stateMutability: 'nonpayable',
319
+ type: 'function',
320
+ inputs: [],
321
+ name: 'resignOwnership',
322
+ outputs: [],
323
+ },
324
+ {
325
+ stateMutability: 'nonpayable',
326
+ type: 'function',
327
+ inputs: [{ name: '_newOwner', internalType: 'address', type: 'address' }],
328
+ name: 'safeTransferOwnership',
329
+ outputs: [],
330
+ },
192
331
  {
193
332
  stateMutability: 'view',
194
333
  type: 'function',
@@ -217,6 +356,46 @@ export const erc20MinterABI = [
217
356
  },
218
357
  ],
219
358
  },
359
+ {
360
+ stateMutability: 'nonpayable',
361
+ type: 'function',
362
+ inputs: [
363
+ {
364
+ name: 'config',
365
+ internalType: 'struct IERC20Minter.ERC20MinterConfig',
366
+ type: 'tuple',
367
+ components: [
368
+ {
369
+ name: 'zoraRewardRecipientAddress',
370
+ internalType: 'address',
371
+ type: 'address',
372
+ },
373
+ {
374
+ name: 'rewardRecipientPercentage',
375
+ internalType: 'uint256',
376
+ type: 'uint256',
377
+ },
378
+ { name: 'ethReward', internalType: 'uint256', type: 'uint256' },
379
+ ],
380
+ },
381
+ ],
382
+ name: 'setERC20MinterConfig',
383
+ outputs: [],
384
+ },
385
+ {
386
+ stateMutability: 'nonpayable',
387
+ type: 'function',
388
+ inputs: [
389
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
390
+ {
391
+ name: 'encodedPremintSalesConfig',
392
+ internalType: 'bytes',
393
+ type: 'bytes',
394
+ },
395
+ ],
396
+ name: 'setPremintSale',
397
+ outputs: [],
398
+ },
220
399
  {
221
400
  stateMutability: 'nonpayable',
222
401
  type: 'function',
@@ -243,13 +422,6 @@ export const erc20MinterABI = [
243
422
  name: 'setSale',
244
423
  outputs: [],
245
424
  },
246
- {
247
- stateMutability: 'nonpayable',
248
- type: 'function',
249
- inputs: [{ name: 'recipient', internalType: 'address', type: 'address' }],
250
- name: 'setZoraRewardsRecipient',
251
- outputs: [],
252
- },
253
425
  {
254
426
  stateMutability: 'pure',
255
427
  type: 'function',
@@ -258,31 +430,44 @@ export const erc20MinterABI = [
258
430
  outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
259
431
  },
260
432
  {
261
- stateMutability: 'pure',
433
+ stateMutability: 'view',
262
434
  type: 'function',
263
435
  inputs: [],
264
436
  name: 'totalRewardPct',
265
437
  outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
266
438
  },
267
439
  {
268
- stateMutability: 'view',
440
+ stateMutability: 'nonpayable',
269
441
  type: 'function',
270
- inputs: [],
271
- name: 'zoraRewardRecipientAddress',
272
- outputs: [{ name: '', internalType: 'address', type: 'address' }],
442
+ inputs: [{ name: '_newOwner', internalType: 'address', type: 'address' }],
443
+ name: 'transferOwnership',
444
+ outputs: [],
273
445
  },
274
446
  {
275
447
  type: 'event',
276
448
  anonymous: false,
277
449
  inputs: [
278
450
  {
279
- name: 'rewardPercentage',
280
- internalType: 'uint256',
281
- type: 'uint256',
451
+ name: 'config',
452
+ internalType: 'struct IERC20Minter.ERC20MinterConfig',
453
+ type: 'tuple',
454
+ components: [
455
+ {
456
+ name: 'zoraRewardRecipientAddress',
457
+ internalType: 'address',
458
+ type: 'address',
459
+ },
460
+ {
461
+ name: 'rewardRecipientPercentage',
462
+ internalType: 'uint256',
463
+ type: 'uint256',
464
+ },
465
+ { name: 'ethReward', internalType: 'uint256', type: 'uint256' },
466
+ ],
282
467
  indexed: false,
283
468
  },
284
469
  ],
285
- name: 'ERC20MinterInitialized',
470
+ name: 'ERC20MinterConfigSet',
286
471
  },
287
472
  {
288
473
  type: 'event',
@@ -357,6 +542,14 @@ export const erc20MinterABI = [
357
542
  ],
358
543
  name: 'ERC20RewardsDeposit',
359
544
  },
545
+ {
546
+ type: 'event',
547
+ anonymous: false,
548
+ inputs: [
549
+ { name: 'version', internalType: 'uint8', type: 'uint8', indexed: false },
550
+ ],
551
+ name: 'Initialized',
552
+ },
360
553
  {
361
554
  type: 'event',
362
555
  anonymous: false,
@@ -394,6 +587,63 @@ export const erc20MinterABI = [
394
587
  ],
395
588
  name: 'MintComment',
396
589
  },
590
+ {
591
+ type: 'event',
592
+ anonymous: false,
593
+ inputs: [
594
+ {
595
+ name: 'owner',
596
+ internalType: 'address',
597
+ type: 'address',
598
+ indexed: true,
599
+ },
600
+ {
601
+ name: 'canceledOwner',
602
+ internalType: 'address',
603
+ type: 'address',
604
+ indexed: true,
605
+ },
606
+ ],
607
+ name: 'OwnerCanceled',
608
+ },
609
+ {
610
+ type: 'event',
611
+ anonymous: false,
612
+ inputs: [
613
+ {
614
+ name: 'owner',
615
+ internalType: 'address',
616
+ type: 'address',
617
+ indexed: true,
618
+ },
619
+ {
620
+ name: 'pendingOwner',
621
+ internalType: 'address',
622
+ type: 'address',
623
+ indexed: true,
624
+ },
625
+ ],
626
+ name: 'OwnerPending',
627
+ },
628
+ {
629
+ type: 'event',
630
+ anonymous: false,
631
+ inputs: [
632
+ {
633
+ name: 'prevOwner',
634
+ internalType: 'address',
635
+ type: 'address',
636
+ indexed: true,
637
+ },
638
+ {
639
+ name: 'newOwner',
640
+ internalType: 'address',
641
+ type: 'address',
642
+ indexed: true,
643
+ },
644
+ ],
645
+ name: 'OwnerUpdated',
646
+ },
397
647
  {
398
648
  type: 'event',
399
649
  anonymous: false,
@@ -431,30 +681,32 @@ export const erc20MinterABI = [
431
681
  ],
432
682
  name: 'SaleSet',
433
683
  },
684
+ { type: 'error', inputs: [], name: 'AddressZero' },
685
+ { type: 'error', inputs: [], name: 'ERC20TransferSlippage' },
686
+ { type: 'error', inputs: [], name: 'FailedToSendEthReward' },
434
687
  {
435
- type: 'event',
436
- anonymous: false,
688
+ type: 'error',
689
+ inputs: [],
690
+ name: 'INITIALIZABLE_CONTRACT_ALREADY_INITIALIZED',
691
+ },
692
+ {
693
+ type: 'error',
694
+ inputs: [],
695
+ name: 'INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING',
696
+ },
697
+ { type: 'error', inputs: [], name: 'InvalidCurrency' },
698
+ {
699
+ type: 'error',
437
700
  inputs: [
438
- {
439
- name: 'prevRecipient',
440
- internalType: 'address',
441
- type: 'address',
442
- indexed: true,
443
- },
444
- {
445
- name: 'newRecipient',
446
- internalType: 'address',
447
- type: 'address',
448
- indexed: true,
449
- },
701
+ { name: 'expectedValue', internalType: 'uint256', type: 'uint256' },
702
+ { name: 'actualValue', internalType: 'uint256', type: 'uint256' },
450
703
  ],
451
- name: 'ZoraRewardsRecipientSet',
704
+ name: 'InvalidETHValue',
452
705
  },
453
- { type: 'error', inputs: [], name: 'AddressZero' },
454
- { type: 'error', inputs: [], name: 'AlreadyInitialized' },
455
- { type: 'error', inputs: [], name: 'ERC20TransferSlippage' },
456
- { type: 'error', inputs: [], name: 'InvalidCurrency' },
457
- { type: 'error', inputs: [], name: 'OnlyZoraRewardsRecipient' },
706
+ { type: 'error', inputs: [], name: 'InvalidValue' },
707
+ { type: 'error', inputs: [], name: 'ONLY_OWNER' },
708
+ { type: 'error', inputs: [], name: 'ONLY_PENDING_OWNER' },
709
+ { type: 'error', inputs: [], name: 'OWNER_CANNOT_BE_ZERO_ADDRESS' },
458
710
  { type: 'error', inputs: [], name: 'PricePerTokenTooLow' },
459
711
  { type: 'error', inputs: [], name: 'RequestMintInvalidUseMint' },
460
712
  { type: 'error', inputs: [], name: 'SaleEnded' },
@@ -480,7 +732,7 @@ export const erc20MinterABI = [
480
732
  * - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
481
733
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
482
734
  * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
483
- * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
735
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2)
484
736
  */
485
737
  export const erc20MinterAddress = {
486
738
  1: '0x777777E8850d8D6d98De2B5f64fae401F96eFF31',
@@ -492,7 +744,7 @@ export const erc20MinterAddress = {
492
744
  421614: '0x777777E8850d8D6d98De2B5f64fae401F96eFF31',
493
745
  7777777: '0x777777E8850d8D6d98De2B5f64fae401F96eFF31',
494
746
  11155111: '0x777777E8850d8D6d98De2B5f64fae401F96eFF31',
495
- 999999999: '0x777777E8850d8D6d98De2B5f64fae401F96eFF31',
747
+ 999999999: '0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2',
496
748
  } as const
497
749
 
498
750
  /**
@@ -504,13 +756,117 @@ export const erc20MinterAddress = {
504
756
  * - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
505
757
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
506
758
  * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
507
- * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777E8850d8D6d98De2B5f64fae401F96eFF31)
759
+ * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2)
508
760
  */
509
761
  export const erc20MinterConfig = {
510
762
  address: erc20MinterAddress,
511
763
  abi: erc20MinterABI,
512
764
  } as const
513
765
 
766
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
767
+ // IPremintDefinitions
768
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
769
+
770
+ export const iPremintDefinitionsABI = [
771
+ {
772
+ stateMutability: 'nonpayable',
773
+ type: 'function',
774
+ inputs: [
775
+ {
776
+ name: '',
777
+ internalType: 'struct TokenCreationConfig',
778
+ type: 'tuple',
779
+ components: [
780
+ { name: 'tokenURI', internalType: 'string', type: 'string' },
781
+ { name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
782
+ {
783
+ name: 'maxTokensPerAddress',
784
+ internalType: 'uint64',
785
+ type: 'uint64',
786
+ },
787
+ { name: 'pricePerToken', internalType: 'uint96', type: 'uint96' },
788
+ { name: 'mintStart', internalType: 'uint64', type: 'uint64' },
789
+ { name: 'mintDuration', internalType: 'uint64', type: 'uint64' },
790
+ {
791
+ name: 'royaltyMintSchedule',
792
+ internalType: 'uint32',
793
+ type: 'uint32',
794
+ },
795
+ { name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
796
+ {
797
+ name: 'royaltyRecipient',
798
+ internalType: 'address',
799
+ type: 'address',
800
+ },
801
+ {
802
+ name: 'fixedPriceMinter',
803
+ internalType: 'address',
804
+ type: 'address',
805
+ },
806
+ ],
807
+ },
808
+ ],
809
+ name: 'tokenConfigV1Definition',
810
+ outputs: [],
811
+ },
812
+ {
813
+ stateMutability: 'nonpayable',
814
+ type: 'function',
815
+ inputs: [
816
+ {
817
+ name: '',
818
+ internalType: 'struct TokenCreationConfigV2',
819
+ type: 'tuple',
820
+ components: [
821
+ { name: 'tokenURI', internalType: 'string', type: 'string' },
822
+ { name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
823
+ {
824
+ name: 'maxTokensPerAddress',
825
+ internalType: 'uint64',
826
+ type: 'uint64',
827
+ },
828
+ { name: 'pricePerToken', internalType: 'uint96', type: 'uint96' },
829
+ { name: 'mintStart', internalType: 'uint64', type: 'uint64' },
830
+ { name: 'mintDuration', internalType: 'uint64', type: 'uint64' },
831
+ { name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
832
+ { name: 'payoutRecipient', internalType: 'address', type: 'address' },
833
+ {
834
+ name: 'fixedPriceMinter',
835
+ internalType: 'address',
836
+ type: 'address',
837
+ },
838
+ { name: 'createReferral', internalType: 'address', type: 'address' },
839
+ ],
840
+ },
841
+ ],
842
+ name: 'tokenConfigV2Definition',
843
+ outputs: [],
844
+ },
845
+ {
846
+ stateMutability: 'nonpayable',
847
+ type: 'function',
848
+ inputs: [
849
+ {
850
+ name: '',
851
+ internalType: 'struct TokenCreationConfigV3',
852
+ type: 'tuple',
853
+ components: [
854
+ { name: 'tokenURI', internalType: 'string', type: 'string' },
855
+ { name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
856
+ { name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
857
+ { name: 'payoutRecipient', internalType: 'address', type: 'address' },
858
+ { name: 'createReferral', internalType: 'address', type: 'address' },
859
+ { name: 'mintStart', internalType: 'uint64', type: 'uint64' },
860
+ { name: 'minter', internalType: 'address', type: 'address' },
861
+ { name: 'premintSalesConfig', internalType: 'bytes', type: 'bytes' },
862
+ ],
863
+ },
864
+ ],
865
+ name: 'tokenConfigV3Definition',
866
+ outputs: [],
867
+ },
868
+ ] as const
869
+
514
870
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
515
871
  // IUnwrapAndForwardAction
516
872
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -534,6 +890,7 @@ export const iUnwrapAndForwardActionABI = [
534
890
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
535
891
 
536
892
  /**
893
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
537
894
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
538
895
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
539
896
  */
@@ -626,15 +983,18 @@ export const mintsEthUnwrapperAndCallerABI = [
626
983
  ] as const
627
984
 
628
985
  /**
986
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
629
987
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
630
988
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
631
989
  */
632
990
  export const mintsEthUnwrapperAndCallerAddress = {
991
+ 84532: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
633
992
  7777777: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
634
993
  999999999: '0xb0994EB9520C98C97e1F3953a5964535C2bd271A',
635
994
  } as const
636
995
 
637
996
  /**
997
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
638
998
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
639
999
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0xb0994EB9520C98C97e1F3953a5964535C2bd271A)
640
1000
  */
@@ -964,7 +1324,7 @@ export const protocolRewardsConfig = {
964
1324
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
965
1325
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
966
1326
  * - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
967
- * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x8cfbF874A12b346115003532119C29f6B56719CB)
1327
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
968
1328
  * - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
969
1329
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
970
1330
  * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
@@ -1125,6 +1485,19 @@ export const zoraCreator1155FactoryImplABI = [
1125
1485
  name: 'deterministicContractAddress',
1126
1486
  outputs: [{ name: '', internalType: 'address', type: 'address' }],
1127
1487
  },
1488
+ {
1489
+ stateMutability: 'view',
1490
+ type: 'function',
1491
+ inputs: [
1492
+ { name: 'msgSender', internalType: 'address', type: 'address' },
1493
+ { name: 'newContractURI', internalType: 'string', type: 'string' },
1494
+ { name: 'name', internalType: 'string', type: 'string' },
1495
+ { name: 'contractAdmin', internalType: 'address', type: 'address' },
1496
+ { name: 'setupActions', internalType: 'bytes[]', type: 'bytes[]' },
1497
+ ],
1498
+ name: 'deterministicContractAddressWithSetupActions',
1499
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
1500
+ },
1128
1501
  {
1129
1502
  stateMutability: 'view',
1130
1503
  type: 'function',
@@ -1450,7 +1823,7 @@ export const zoraCreator1155FactoryImplABI = [
1450
1823
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
1451
1824
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
1452
1825
  * - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
1453
- * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x8cfbF874A12b346115003532119C29f6B56719CB)
1826
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
1454
1827
  * - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
1455
1828
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
1456
1829
  * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
@@ -1463,7 +1836,7 @@ export const zoraCreator1155FactoryImplAddress = {
1463
1836
  8453: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
1464
1837
  42161: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
1465
1838
  81457: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
1466
- 84532: '0x8cfbF874A12b346115003532119C29f6B56719CB',
1839
+ 84532: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
1467
1840
  421614: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
1468
1841
  7777777: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
1469
1842
  11155111: '0x777777C338d93e2C7adf08D102d45CA7CC4Ed021',
@@ -1477,7 +1850,7 @@ export const zoraCreator1155FactoryImplAddress = {
1477
1850
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
1478
1851
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
1479
1852
  * - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
1480
- * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x8cfbF874A12b346115003532119C29f6B56719CB)
1853
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
1481
1854
  * - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
1482
1855
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
1483
1856
  * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
@@ -2890,6 +3263,7 @@ export const zoraCreator1155ImplABI = [
2890
3263
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2891
3264
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2892
3265
  * - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3266
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2893
3267
  * - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2894
3268
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2895
3269
  * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
@@ -2928,6 +3302,13 @@ export const zoraCreator1155PremintExecutorImplABI = [
2928
3302
  name: 'contractName',
2929
3303
  outputs: [{ name: '', internalType: 'string', type: 'string' }],
2930
3304
  },
3305
+ {
3306
+ stateMutability: 'pure',
3307
+ type: 'function',
3308
+ inputs: [],
3309
+ name: 'contractVersion',
3310
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
3311
+ },
2931
3312
  {
2932
3313
  stateMutability: 'view',
2933
3314
  type: 'function',
@@ -2946,6 +3327,29 @@ export const zoraCreator1155PremintExecutorImplABI = [
2946
3327
  name: 'getContractAddress',
2947
3328
  outputs: [{ name: '', internalType: 'address', type: 'address' }],
2948
3329
  },
3330
+ {
3331
+ stateMutability: 'view',
3332
+ type: 'function',
3333
+ inputs: [
3334
+ {
3335
+ name: 'contractConfig',
3336
+ internalType: 'struct ContractWithAdditionalAdminsCreationConfig',
3337
+ type: 'tuple',
3338
+ components: [
3339
+ { name: 'contractAdmin', internalType: 'address', type: 'address' },
3340
+ { name: 'contractURI', internalType: 'string', type: 'string' },
3341
+ { name: 'contractName', internalType: 'string', type: 'string' },
3342
+ {
3343
+ name: 'additionalAdmins',
3344
+ internalType: 'address[]',
3345
+ type: 'address[]',
3346
+ },
3347
+ ],
3348
+ },
3349
+ ],
3350
+ name: 'getContractWithAdditionalAdminsAddress',
3351
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
3352
+ },
2949
3353
  {
2950
3354
  stateMutability: 'view',
2951
3355
  type: 'function',
@@ -2977,6 +3381,26 @@ export const zoraCreator1155PremintExecutorImplABI = [
2977
3381
  name: 'isAuthorizedToCreatePremint',
2978
3382
  outputs: [{ name: 'isAuthorized', internalType: 'bool', type: 'bool' }],
2979
3383
  },
3384
+ {
3385
+ stateMutability: 'view',
3386
+ type: 'function',
3387
+ inputs: [
3388
+ { name: 'signer', internalType: 'address', type: 'address' },
3389
+ {
3390
+ name: 'premintContractConfigContractAdmin',
3391
+ internalType: 'address',
3392
+ type: 'address',
3393
+ },
3394
+ { name: 'contractAddress', internalType: 'address', type: 'address' },
3395
+ {
3396
+ name: 'additionalAdmins',
3397
+ internalType: 'address[]',
3398
+ type: 'address[]',
3399
+ },
3400
+ ],
3401
+ name: 'isAuthorizedToCreatePremintWithAdditionalAdmins',
3402
+ outputs: [{ name: 'isAuthorized', internalType: 'bool', type: 'bool' }],
3403
+ },
2980
3404
  {
2981
3405
  stateMutability: 'view',
2982
3406
  type: 'function',
@@ -3067,61 +3491,39 @@ export const zoraCreator1155PremintExecutorImplABI = [
3067
3491
  outputs: [{ name: '', internalType: 'address', type: 'address' }],
3068
3492
  },
3069
3493
  {
3070
- stateMutability: 'nonpayable',
3494
+ stateMutability: 'payable',
3071
3495
  type: 'function',
3072
3496
  inputs: [
3073
3497
  {
3074
3498
  name: 'contractConfig',
3075
- internalType: 'struct ContractCreationConfig',
3499
+ internalType: 'struct ContractWithAdditionalAdminsCreationConfig',
3076
3500
  type: 'tuple',
3077
3501
  components: [
3078
3502
  { name: 'contractAdmin', internalType: 'address', type: 'address' },
3079
3503
  { name: 'contractURI', internalType: 'string', type: 'string' },
3080
3504
  { name: 'contractName', internalType: 'string', type: 'string' },
3505
+ {
3506
+ name: 'additionalAdmins',
3507
+ internalType: 'address[]',
3508
+ type: 'address[]',
3509
+ },
3081
3510
  ],
3082
3511
  },
3512
+ { name: 'premintCollection', internalType: 'address', type: 'address' },
3083
3513
  {
3084
- name: 'premintConfig',
3085
- internalType: 'struct Erc20PremintConfigV1',
3514
+ name: 'encodedPremintConfig',
3515
+ internalType: 'struct PremintConfigEncoded',
3086
3516
  type: 'tuple',
3087
3517
  components: [
3088
- {
3089
- name: 'tokenConfig',
3090
- internalType: 'struct Erc20TokenCreationConfigV1',
3091
- type: 'tuple',
3092
- components: [
3093
- { name: 'tokenURI', internalType: 'string', type: 'string' },
3094
- { name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
3095
- { name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
3096
- {
3097
- name: 'payoutRecipient',
3098
- internalType: 'address',
3099
- type: 'address',
3100
- },
3101
- {
3102
- name: 'createReferral',
3103
- internalType: 'address',
3104
- type: 'address',
3105
- },
3106
- { name: 'erc20Minter', internalType: 'address', type: 'address' },
3107
- { name: 'mintStart', internalType: 'uint64', type: 'uint64' },
3108
- { name: 'mintDuration', internalType: 'uint64', type: 'uint64' },
3109
- {
3110
- name: 'maxTokensPerAddress',
3111
- internalType: 'uint64',
3112
- type: 'uint64',
3113
- },
3114
- { name: 'currency', internalType: 'address', type: 'address' },
3115
- {
3116
- name: 'pricePerToken',
3117
- internalType: 'uint256',
3118
- type: 'uint256',
3119
- },
3120
- ],
3121
- },
3122
3518
  { name: 'uid', internalType: 'uint32', type: 'uint32' },
3123
3519
  { name: 'version', internalType: 'uint32', type: 'uint32' },
3124
3520
  { name: 'deleted', internalType: 'bool', type: 'bool' },
3521
+ { name: 'tokenConfig', internalType: 'bytes', type: 'bytes' },
3522
+ {
3523
+ name: 'premintConfigVersion',
3524
+ internalType: 'bytes32',
3525
+ type: 'bytes32',
3526
+ },
3125
3527
  ],
3126
3528
  },
3127
3529
  { name: 'signature', internalType: 'bytes', type: 'bytes' },
@@ -3143,10 +3545,10 @@ export const zoraCreator1155PremintExecutorImplABI = [
3143
3545
  { name: 'firstMinter', internalType: 'address', type: 'address' },
3144
3546
  { name: 'signerContract', internalType: 'address', type: 'address' },
3145
3547
  ],
3146
- name: 'premintErc20V1',
3548
+ name: 'premint',
3147
3549
  outputs: [
3148
3550
  {
3149
- name: 'result',
3551
+ name: 'premintResult',
3150
3552
  internalType: 'struct PremintResult',
3151
3553
  type: 'tuple',
3152
3554
  components: [
@@ -3247,7 +3649,7 @@ export const zoraCreator1155PremintExecutorImplABI = [
3247
3649
  name: 'premintV1',
3248
3650
  outputs: [
3249
3651
  {
3250
- name: 'result',
3652
+ name: '',
3251
3653
  internalType: 'struct PremintResult',
3252
3654
  type: 'tuple',
3253
3655
  components: [
@@ -3335,97 +3737,7 @@ export const zoraCreator1155PremintExecutorImplABI = [
3335
3737
  name: 'premintV2',
3336
3738
  outputs: [
3337
3739
  {
3338
- name: 'result',
3339
- internalType: 'struct PremintResult',
3340
- type: 'tuple',
3341
- components: [
3342
- { name: 'contractAddress', internalType: 'address', type: 'address' },
3343
- { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
3344
- { name: 'createdNewContract', internalType: 'bool', type: 'bool' },
3345
- ],
3346
- },
3347
- ],
3348
- },
3349
- {
3350
- stateMutability: 'payable',
3351
- type: 'function',
3352
- inputs: [
3353
- {
3354
- name: 'contractConfig',
3355
- internalType: 'struct ContractCreationConfig',
3356
- type: 'tuple',
3357
- components: [
3358
- { name: 'contractAdmin', internalType: 'address', type: 'address' },
3359
- { name: 'contractURI', internalType: 'string', type: 'string' },
3360
- { name: 'contractName', internalType: 'string', type: 'string' },
3361
- ],
3362
- },
3363
- {
3364
- name: 'premintConfig',
3365
- internalType: 'struct PremintConfigV2',
3366
- type: 'tuple',
3367
- components: [
3368
- {
3369
- name: 'tokenConfig',
3370
- internalType: 'struct TokenCreationConfigV2',
3371
- type: 'tuple',
3372
- components: [
3373
- { name: 'tokenURI', internalType: 'string', type: 'string' },
3374
- { name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
3375
- {
3376
- name: 'maxTokensPerAddress',
3377
- internalType: 'uint64',
3378
- type: 'uint64',
3379
- },
3380
- { name: 'pricePerToken', internalType: 'uint96', type: 'uint96' },
3381
- { name: 'mintStart', internalType: 'uint64', type: 'uint64' },
3382
- { name: 'mintDuration', internalType: 'uint64', type: 'uint64' },
3383
- { name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
3384
- {
3385
- name: 'payoutRecipient',
3386
- internalType: 'address',
3387
- type: 'address',
3388
- },
3389
- {
3390
- name: 'fixedPriceMinter',
3391
- internalType: 'address',
3392
- type: 'address',
3393
- },
3394
- {
3395
- name: 'createReferral',
3396
- internalType: 'address',
3397
- type: 'address',
3398
- },
3399
- ],
3400
- },
3401
- { name: 'uid', internalType: 'uint32', type: 'uint32' },
3402
- { name: 'version', internalType: 'uint32', type: 'uint32' },
3403
- { name: 'deleted', internalType: 'bool', type: 'bool' },
3404
- ],
3405
- },
3406
- { name: 'signature', internalType: 'bytes', type: 'bytes' },
3407
- { name: 'quantityToMint', internalType: 'uint256', type: 'uint256' },
3408
- {
3409
- name: 'mintArguments',
3410
- internalType: 'struct MintArguments',
3411
- type: 'tuple',
3412
- components: [
3413
- { name: 'mintRecipient', internalType: 'address', type: 'address' },
3414
- { name: 'mintComment', internalType: 'string', type: 'string' },
3415
- {
3416
- name: 'mintRewardsRecipients',
3417
- internalType: 'address[]',
3418
- type: 'address[]',
3419
- },
3420
- ],
3421
- },
3422
- { name: 'firstMinter', internalType: 'address', type: 'address' },
3423
- { name: 'signerContract', internalType: 'address', type: 'address' },
3424
- ],
3425
- name: 'premintV2WithSignerContract',
3426
- outputs: [
3427
- {
3428
- name: 'result',
3740
+ name: '',
3429
3741
  internalType: 'struct PremintResult',
3430
3742
  type: 'tuple',
3431
3743
  components: [
@@ -3923,6 +4235,7 @@ export const zoraCreator1155PremintExecutorImplABI = [
3923
4235
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3924
4236
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3925
4237
  * - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
4238
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3926
4239
  * - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3927
4240
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3928
4241
  * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
@@ -3935,6 +4248,7 @@ export const zoraCreator1155PremintExecutorImplAddress = {
3935
4248
  8453: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
3936
4249
  42161: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
3937
4250
  81457: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
4251
+ 84532: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
3938
4252
  421614: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
3939
4253
  7777777: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
3940
4254
  11155111: '0x7777773606e7e46C8Ba8B98C08f5cD218e31d340',
@@ -3948,6 +4262,7 @@ export const zoraCreator1155PremintExecutorImplAddress = {
3948
4262
  * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3949
4263
  * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3950
4264
  * - [__View Contract on Arbitrum One Arbiscan__](https://arbiscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
4265
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3951
4266
  * - [__View Contract on Arbitrum Sepolia Blockscout__](https://sepolia-explorer.arbitrum.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3952
4267
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
3953
4268
  * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
@@ -4725,6 +5040,7 @@ export const zoraCreatorRedeemMinterFactoryConfig = {
4725
5040
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4726
5041
 
4727
5042
  /**
5043
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
4728
5044
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
4729
5045
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
4730
5046
  */
@@ -5492,15 +5808,18 @@ export const zoraMints1155ABI = [
5492
5808
  ] as const
5493
5809
 
5494
5810
  /**
5811
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
5495
5812
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
5496
5813
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
5497
5814
  */
5498
5815
  export const zoraMints1155Address = {
5816
+ 84532: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
5499
5817
  7777777: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
5500
5818
  999999999: '0x7777777d57c1C6e472fa379b7b3B6c6ba3835073',
5501
5819
  } as const
5502
5820
 
5503
5821
  /**
5822
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
5504
5823
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
5505
5824
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d57c1C6e472fa379b7b3B6c6ba3835073)
5506
5825
  */
@@ -5514,6 +5833,7 @@ export const zoraMints1155Config = {
5514
5833
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
5515
5834
 
5516
5835
  /**
5836
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
5517
5837
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
5518
5838
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
5519
5839
  */
@@ -5524,7 +5844,7 @@ export const zoraMintsManagerImplABI = [
5524
5844
  inputs: [
5525
5845
  {
5526
5846
  name: '_premintExecutor',
5527
- internalType: 'contract IZoraCreator1155PremintExecutorV2',
5847
+ internalType: 'contract IZoraCreator1155PremintExecutorAllVersions',
5528
5848
  type: 'address',
5529
5849
  },
5530
5850
  ],
@@ -5602,6 +5922,73 @@ export const zoraMintsManagerImplABI = [
5602
5922
  name: 'collect',
5603
5923
  outputs: [],
5604
5924
  },
5925
+ {
5926
+ stateMutability: 'payable',
5927
+ type: 'function',
5928
+ inputs: [
5929
+ {
5930
+ name: 'contractConfig',
5931
+ internalType: 'struct ContractWithAdditionalAdminsCreationConfig',
5932
+ type: 'tuple',
5933
+ components: [
5934
+ { name: 'contractAdmin', internalType: 'address', type: 'address' },
5935
+ { name: 'contractURI', internalType: 'string', type: 'string' },
5936
+ { name: 'contractName', internalType: 'string', type: 'string' },
5937
+ {
5938
+ name: 'additionalAdmins',
5939
+ internalType: 'address[]',
5940
+ type: 'address[]',
5941
+ },
5942
+ ],
5943
+ },
5944
+ { name: 'tokenContract', internalType: 'address', type: 'address' },
5945
+ {
5946
+ name: 'premintConfig',
5947
+ internalType: 'struct PremintConfigEncoded',
5948
+ type: 'tuple',
5949
+ components: [
5950
+ { name: 'uid', internalType: 'uint32', type: 'uint32' },
5951
+ { name: 'version', internalType: 'uint32', type: 'uint32' },
5952
+ { name: 'deleted', internalType: 'bool', type: 'bool' },
5953
+ { name: 'tokenConfig', internalType: 'bytes', type: 'bytes' },
5954
+ {
5955
+ name: 'premintConfigVersion',
5956
+ internalType: 'bytes32',
5957
+ type: 'bytes32',
5958
+ },
5959
+ ],
5960
+ },
5961
+ { name: 'signature', internalType: 'bytes', type: 'bytes' },
5962
+ {
5963
+ name: 'mintArguments',
5964
+ internalType: 'struct MintArguments',
5965
+ type: 'tuple',
5966
+ components: [
5967
+ { name: 'mintRecipient', internalType: 'address', type: 'address' },
5968
+ { name: 'mintComment', internalType: 'string', type: 'string' },
5969
+ {
5970
+ name: 'mintRewardsRecipients',
5971
+ internalType: 'address[]',
5972
+ type: 'address[]',
5973
+ },
5974
+ ],
5975
+ },
5976
+ { name: 'signerContract', internalType: 'address', type: 'address' },
5977
+ ],
5978
+ name: 'collectPremint',
5979
+ outputs: [
5980
+ {
5981
+ name: 'result',
5982
+ internalType: 'struct PremintResult',
5983
+ type: 'tuple',
5984
+ components: [
5985
+ { name: 'contractAddress', internalType: 'address', type: 'address' },
5986
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
5987
+ { name: 'createdNewContract', internalType: 'bool', type: 'bool' },
5988
+ ],
5989
+ },
5990
+ ],
5991
+ },
5605
5992
  {
5606
5993
  stateMutability: 'payable',
5607
5994
  type: 'function',
@@ -6338,15 +6725,18 @@ export const zoraMintsManagerImplABI = [
6338
6725
  ] as const
6339
6726
 
6340
6727
  /**
6728
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
6341
6729
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
6342
6730
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
6343
6731
  */
6344
6732
  export const zoraMintsManagerImplAddress = {
6733
+ 84532: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
6345
6734
  7777777: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
6346
6735
  999999999: '0x77777770cA269366c7208aFcF36FE2C6F7f7608B',
6347
6736
  } as const
6348
6737
 
6349
6738
  /**
6739
+ * - [__View Contract on Base Sepolia Blockscout__](https://base-sepolia.blockscout.com/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
6350
6740
  * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
6351
6741
  * - [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777770cA269366c7208aFcF36FE2C6F7f7608B)
6352
6742
  */