@zoralabs/protocol-deployments 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. package/.env.anvil +2 -0
  2. package/.turbo/turbo-build.log +34 -0
  3. package/CHANGELOG.md +34 -0
  4. package/README.md +20 -0
  5. package/addresses/1.json +14 -0
  6. package/addresses/10.json +14 -0
  7. package/addresses/11155111.json +9 -0
  8. package/addresses/420.json +14 -0
  9. package/addresses/424.json +11 -0
  10. package/addresses/5.json +14 -0
  11. package/addresses/58008.json +11 -0
  12. package/addresses/7777777.json +14 -0
  13. package/addresses/8453.json +14 -0
  14. package/addresses/84531.json +14 -0
  15. package/addresses/999.json +14 -0
  16. package/addresses/999999999.json +13 -0
  17. package/chainConfigs/1.json +5 -0
  18. package/chainConfigs/10.json +5 -0
  19. package/chainConfigs/11155111.json +4 -0
  20. package/chainConfigs/420.json +5 -0
  21. package/chainConfigs/424.json +5 -0
  22. package/chainConfigs/5.json +5 -0
  23. package/chainConfigs/58008.json +4 -0
  24. package/chainConfigs/7777777.json +5 -0
  25. package/chainConfigs/8453.json +5 -0
  26. package/chainConfigs/84531.json +5 -0
  27. package/chainConfigs/999.json +5 -0
  28. package/chainConfigs/999999999.json +5 -0
  29. package/deterministicConfig/factoryProxy/params.json +10 -0
  30. package/deterministicConfig/factoryProxy/signatures.json +14 -0
  31. package/deterministicConfig/premintExecutorProxy/params.json +10 -0
  32. package/deterministicConfig/premintExecutorProxy/signatures.json +11 -0
  33. package/deterministicConfig/upgradeGate/params.json +7 -0
  34. package/deterministicConfig/upgradeGate/signatures.json +14 -0
  35. package/dist/index.cjs +3360 -0
  36. package/dist/index.cjs.map +1 -0
  37. package/dist/index.js +3314 -0
  38. package/dist/index.js.map +1 -0
  39. package/dist/package/batchPublish.test.d.ts +451 -0
  40. package/dist/package/batchPublish.test.d.ts.map +1 -0
  41. package/dist/package/chainConfigs.d.ts +61 -0
  42. package/dist/package/chainConfigs.d.ts.map +1 -0
  43. package/dist/package/deployment.d.ts +32 -0
  44. package/dist/package/deployment.d.ts.map +1 -0
  45. package/dist/package/index.d.ts +3 -0
  46. package/dist/package/index.d.ts.map +1 -0
  47. package/dist/package/wagmiGenerated.d.ts +6810 -0
  48. package/dist/package/wagmiGenerated.d.ts.map +1 -0
  49. package/dist/script/copy-deployed-contracts.d.ts +2 -0
  50. package/dist/script/copy-deployed-contracts.d.ts.map +1 -0
  51. package/dist/script/signDeploymentTransactions.d.ts +2 -0
  52. package/dist/script/signDeploymentTransactions.d.ts.map +1 -0
  53. package/foundry.toml +40 -0
  54. package/package/batchPublish.test.ts +326 -0
  55. package/package/chainConfigs.ts +60 -0
  56. package/package/deployment.ts +94 -0
  57. package/package/index.ts +5 -0
  58. package/package/wagmiGenerated.ts +3472 -0
  59. package/package.json +44 -0
  60. package/remappings.txt +9 -0
  61. package/script/CalculateDeterministicParams.s.sol +84 -0
  62. package/script/DeployMintersAndImplementations.s.sol +31 -0
  63. package/script/DeployNewImplementation.s.sol +26 -0
  64. package/script/DeployPreminterImpl.s.sol +23 -0
  65. package/script/DeployProxiesToNewChain.s.sol +42 -0
  66. package/script/DeployUpgradeGate.s.sol +27 -0
  67. package/script/Upgrade.s.sol +83 -0
  68. package/script/UpgradePreminter.s.sol +34 -0
  69. package/script/bundle-chainConfigs.mjs +36 -0
  70. package/script/copy-deployed-contracts.ts +66 -0
  71. package/script/signDeploymentTransactions.ts +277 -0
  72. package/test/NewFactoryProxyDeployer.t.sol +127 -0
  73. package/test/ZoraCreator1155Factory_Fork.t.sol +151 -0
  74. package/test/ZoraCreator1155PremintExecutorForkTest.t.sol +93 -0
  75. package/tsconfig.json +25 -0
  76. package/tsup.config.ts +10 -0
  77. package/wagmi.config.ts +113 -0
@@ -0,0 +1,3472 @@
1
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2
+ // IImmutableCreate2Factory
3
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4
+
5
+ /**
6
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
7
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
8
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
9
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
10
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x0000000000FFe8B47B3e2130213B802212439497)
11
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x0000000000FFe8B47B3e2130213B802212439497)
12
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x0000000000FFe8B47B3e2130213B802212439497)
13
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x0000000000FFe8B47B3e2130213B802212439497)
14
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
15
+ */
16
+ export const iImmutableCreate2FactoryABI = [
17
+ {
18
+ stateMutability: "view",
19
+ type: "function",
20
+ inputs: [
21
+ { name: "salt", internalType: "bytes32", type: "bytes32" },
22
+ { name: "initCode", internalType: "bytes", type: "bytes" },
23
+ ],
24
+ name: "findCreate2Address",
25
+ outputs: [
26
+ { name: "deploymentAddress", internalType: "address", type: "address" },
27
+ ],
28
+ },
29
+ {
30
+ stateMutability: "view",
31
+ type: "function",
32
+ inputs: [
33
+ { name: "salt", internalType: "bytes32", type: "bytes32" },
34
+ { name: "initCodeHash", internalType: "bytes32", type: "bytes32" },
35
+ ],
36
+ name: "findCreate2AddressViaHash",
37
+ outputs: [
38
+ { name: "deploymentAddress", internalType: "address", type: "address" },
39
+ ],
40
+ },
41
+ {
42
+ stateMutability: "view",
43
+ type: "function",
44
+ inputs: [
45
+ { name: "deploymentAddress", internalType: "address", type: "address" },
46
+ ],
47
+ name: "hasBeenDeployed",
48
+ outputs: [{ name: "", internalType: "bool", type: "bool" }],
49
+ },
50
+ {
51
+ stateMutability: "payable",
52
+ type: "function",
53
+ inputs: [
54
+ { name: "salt", internalType: "bytes32", type: "bytes32" },
55
+ { name: "initializationCode", internalType: "bytes", type: "bytes" },
56
+ ],
57
+ name: "safeCreate2",
58
+ outputs: [
59
+ { name: "deploymentAddress", internalType: "address", type: "address" },
60
+ ],
61
+ },
62
+ ] as const;
63
+
64
+ /**
65
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
66
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
67
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
68
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
69
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x0000000000FFe8B47B3e2130213B802212439497)
70
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x0000000000FFe8B47B3e2130213B802212439497)
71
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x0000000000FFe8B47B3e2130213B802212439497)
72
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x0000000000FFe8B47B3e2130213B802212439497)
73
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
74
+ */
75
+ export const iImmutableCreate2FactoryAddress = {
76
+ 1: "0x0000000000FFe8B47B3e2130213B802212439497",
77
+ 5: "0x0000000000FFe8B47B3e2130213B802212439497",
78
+ 10: "0x0000000000FFe8B47B3e2130213B802212439497",
79
+ 420: "0x0000000000FFe8B47B3e2130213B802212439497",
80
+ 424: "0x0000000000FFe8B47B3e2130213B802212439497",
81
+ 999: "0x0000000000FFe8B47B3e2130213B802212439497",
82
+ 8453: "0x0000000000FFe8B47B3e2130213B802212439497",
83
+ 58008: "0x0000000000FFe8B47B3e2130213B802212439497",
84
+ 84531: "0x0000000000FFe8B47B3e2130213B802212439497",
85
+ 7777777: "0x0000000000FFe8B47B3e2130213B802212439497",
86
+ 11155111: "0x0000000000FFe8B47B3e2130213B802212439497",
87
+ 999999999: "0x0000000000FFe8B47B3e2130213B802212439497",
88
+ } as const;
89
+
90
+ /**
91
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
92
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
93
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
94
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
95
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x0000000000FFe8B47B3e2130213B802212439497)
96
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x0000000000FFe8B47B3e2130213B802212439497)
97
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x0000000000FFe8B47B3e2130213B802212439497)
98
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x0000000000FFe8B47B3e2130213B802212439497)
99
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x0000000000FFe8B47B3e2130213B802212439497)
100
+ */
101
+ export const iImmutableCreate2FactoryConfig = {
102
+ address: iImmutableCreate2FactoryAddress,
103
+ abi: iImmutableCreate2FactoryABI,
104
+ } as const;
105
+
106
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
107
+ // ZoraCreator1155FactoryImpl
108
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
109
+
110
+ /**
111
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
112
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
113
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
114
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
115
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
116
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
117
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
118
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
119
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x13dAA8E9e3f68deDE7b1386ACdc12eA98F2FB688)
120
+ */
121
+ export const zoraCreator1155FactoryImplABI = [
122
+ {
123
+ stateMutability: "nonpayable",
124
+ type: "constructor",
125
+ inputs: [
126
+ {
127
+ name: "_zora1155Impl",
128
+ internalType: "contract IZoraCreator1155",
129
+ type: "address",
130
+ },
131
+ {
132
+ name: "_merkleMinter",
133
+ internalType: "contract IMinter1155",
134
+ type: "address",
135
+ },
136
+ {
137
+ name: "_fixedPriceMinter",
138
+ internalType: "contract IMinter1155",
139
+ type: "address",
140
+ },
141
+ {
142
+ name: "_redeemMinterFactory",
143
+ internalType: "contract IMinter1155",
144
+ type: "address",
145
+ },
146
+ ],
147
+ },
148
+ { type: "error", inputs: [], name: "ADDRESS_DELEGATECALL_TO_NON_CONTRACT" },
149
+ { type: "error", inputs: [], name: "ADDRESS_LOW_LEVEL_CALL_FAILED" },
150
+ { type: "error", inputs: [], name: "Constructor_ImplCannotBeZero" },
151
+ { type: "error", inputs: [], name: "ERC1967_NEW_IMPL_NOT_CONTRACT" },
152
+ { type: "error", inputs: [], name: "ERC1967_NEW_IMPL_NOT_UUPS" },
153
+ { type: "error", inputs: [], name: "ERC1967_UNSUPPORTED_PROXIABLEUUID" },
154
+ {
155
+ type: "error",
156
+ inputs: [],
157
+ name: "FUNCTION_MUST_BE_CALLED_THROUGH_ACTIVE_PROXY",
158
+ },
159
+ {
160
+ type: "error",
161
+ inputs: [],
162
+ name: "FUNCTION_MUST_BE_CALLED_THROUGH_DELEGATECALL",
163
+ },
164
+ {
165
+ type: "error",
166
+ inputs: [],
167
+ name: "INITIALIZABLE_CONTRACT_ALREADY_INITIALIZED",
168
+ },
169
+ {
170
+ type: "error",
171
+ inputs: [],
172
+ name: "INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING",
173
+ },
174
+ { type: "error", inputs: [], name: "ONLY_OWNER" },
175
+ { type: "error", inputs: [], name: "ONLY_PENDING_OWNER" },
176
+ { type: "error", inputs: [], name: "OWNER_CANNOT_BE_ZERO_ADDRESS" },
177
+ {
178
+ type: "error",
179
+ inputs: [],
180
+ name: "UUPS_UPGRADEABLE_MUST_NOT_BE_CALLED_THROUGH_DELEGATECALL",
181
+ },
182
+ {
183
+ type: "error",
184
+ inputs: [
185
+ { name: "expected", internalType: "string", type: "string" },
186
+ { name: "actual", internalType: "string", type: "string" },
187
+ ],
188
+ name: "UpgradeToMismatchedContractName",
189
+ },
190
+ {
191
+ type: "event",
192
+ anonymous: false,
193
+ inputs: [
194
+ {
195
+ name: "previousAdmin",
196
+ internalType: "address",
197
+ type: "address",
198
+ indexed: false,
199
+ },
200
+ {
201
+ name: "newAdmin",
202
+ internalType: "address",
203
+ type: "address",
204
+ indexed: false,
205
+ },
206
+ ],
207
+ name: "AdminChanged",
208
+ },
209
+ {
210
+ type: "event",
211
+ anonymous: false,
212
+ inputs: [
213
+ {
214
+ name: "beacon",
215
+ internalType: "address",
216
+ type: "address",
217
+ indexed: true,
218
+ },
219
+ ],
220
+ name: "BeaconUpgraded",
221
+ },
222
+ { type: "event", anonymous: false, inputs: [], name: "FactorySetup" },
223
+ {
224
+ type: "event",
225
+ anonymous: false,
226
+ inputs: [
227
+ { name: "version", internalType: "uint8", type: "uint8", indexed: false },
228
+ ],
229
+ name: "Initialized",
230
+ },
231
+ {
232
+ type: "event",
233
+ anonymous: false,
234
+ inputs: [
235
+ {
236
+ name: "owner",
237
+ internalType: "address",
238
+ type: "address",
239
+ indexed: true,
240
+ },
241
+ {
242
+ name: "canceledOwner",
243
+ internalType: "address",
244
+ type: "address",
245
+ indexed: true,
246
+ },
247
+ ],
248
+ name: "OwnerCanceled",
249
+ },
250
+ {
251
+ type: "event",
252
+ anonymous: false,
253
+ inputs: [
254
+ {
255
+ name: "owner",
256
+ internalType: "address",
257
+ type: "address",
258
+ indexed: true,
259
+ },
260
+ {
261
+ name: "pendingOwner",
262
+ internalType: "address",
263
+ type: "address",
264
+ indexed: true,
265
+ },
266
+ ],
267
+ name: "OwnerPending",
268
+ },
269
+ {
270
+ type: "event",
271
+ anonymous: false,
272
+ inputs: [
273
+ {
274
+ name: "prevOwner",
275
+ internalType: "address",
276
+ type: "address",
277
+ indexed: true,
278
+ },
279
+ {
280
+ name: "newOwner",
281
+ internalType: "address",
282
+ type: "address",
283
+ indexed: true,
284
+ },
285
+ ],
286
+ name: "OwnerUpdated",
287
+ },
288
+ {
289
+ type: "event",
290
+ anonymous: false,
291
+ inputs: [
292
+ {
293
+ name: "newContract",
294
+ internalType: "address",
295
+ type: "address",
296
+ indexed: true,
297
+ },
298
+ {
299
+ name: "creator",
300
+ internalType: "address",
301
+ type: "address",
302
+ indexed: true,
303
+ },
304
+ {
305
+ name: "defaultAdmin",
306
+ internalType: "address",
307
+ type: "address",
308
+ indexed: true,
309
+ },
310
+ {
311
+ name: "contractURI",
312
+ internalType: "string",
313
+ type: "string",
314
+ indexed: false,
315
+ },
316
+ { name: "name", internalType: "string", type: "string", indexed: false },
317
+ {
318
+ name: "defaultRoyaltyConfiguration",
319
+ internalType: "struct ICreatorRoyaltiesControl.RoyaltyConfiguration",
320
+ type: "tuple",
321
+ components: [
322
+ {
323
+ name: "royaltyMintSchedule",
324
+ internalType: "uint32",
325
+ type: "uint32",
326
+ },
327
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
328
+ {
329
+ name: "royaltyRecipient",
330
+ internalType: "address",
331
+ type: "address",
332
+ },
333
+ ],
334
+ indexed: false,
335
+ },
336
+ ],
337
+ name: "SetupNewContract",
338
+ },
339
+ {
340
+ type: "event",
341
+ anonymous: false,
342
+ inputs: [
343
+ {
344
+ name: "implementation",
345
+ internalType: "address",
346
+ type: "address",
347
+ indexed: true,
348
+ },
349
+ ],
350
+ name: "Upgraded",
351
+ },
352
+ {
353
+ stateMutability: "nonpayable",
354
+ type: "function",
355
+ inputs: [],
356
+ name: "acceptOwnership",
357
+ outputs: [],
358
+ },
359
+ {
360
+ stateMutability: "nonpayable",
361
+ type: "function",
362
+ inputs: [],
363
+ name: "cancelOwnershipTransfer",
364
+ outputs: [],
365
+ },
366
+ {
367
+ stateMutability: "pure",
368
+ type: "function",
369
+ inputs: [],
370
+ name: "contractName",
371
+ outputs: [{ name: "", internalType: "string", type: "string" }],
372
+ },
373
+ {
374
+ stateMutability: "pure",
375
+ type: "function",
376
+ inputs: [],
377
+ name: "contractURI",
378
+ outputs: [{ name: "", internalType: "string", type: "string" }],
379
+ },
380
+ {
381
+ stateMutability: "pure",
382
+ type: "function",
383
+ inputs: [],
384
+ name: "contractVersion",
385
+ outputs: [{ name: "", internalType: "string", type: "string" }],
386
+ },
387
+ {
388
+ stateMutability: "nonpayable",
389
+ type: "function",
390
+ inputs: [
391
+ { name: "newContractURI", internalType: "string", type: "string" },
392
+ { name: "name", internalType: "string", type: "string" },
393
+ {
394
+ name: "defaultRoyaltyConfiguration",
395
+ internalType: "struct ICreatorRoyaltiesControl.RoyaltyConfiguration",
396
+ type: "tuple",
397
+ components: [
398
+ {
399
+ name: "royaltyMintSchedule",
400
+ internalType: "uint32",
401
+ type: "uint32",
402
+ },
403
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
404
+ {
405
+ name: "royaltyRecipient",
406
+ internalType: "address",
407
+ type: "address",
408
+ },
409
+ ],
410
+ },
411
+ {
412
+ name: "defaultAdmin",
413
+ internalType: "address payable",
414
+ type: "address",
415
+ },
416
+ { name: "setupActions", internalType: "bytes[]", type: "bytes[]" },
417
+ ],
418
+ name: "createContract",
419
+ outputs: [{ name: "", internalType: "address", type: "address" }],
420
+ },
421
+ {
422
+ stateMutability: "nonpayable",
423
+ type: "function",
424
+ inputs: [
425
+ { name: "newContractURI", internalType: "string", type: "string" },
426
+ { name: "name", internalType: "string", type: "string" },
427
+ {
428
+ name: "defaultRoyaltyConfiguration",
429
+ internalType: "struct ICreatorRoyaltiesControl.RoyaltyConfiguration",
430
+ type: "tuple",
431
+ components: [
432
+ {
433
+ name: "royaltyMintSchedule",
434
+ internalType: "uint32",
435
+ type: "uint32",
436
+ },
437
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
438
+ {
439
+ name: "royaltyRecipient",
440
+ internalType: "address",
441
+ type: "address",
442
+ },
443
+ ],
444
+ },
445
+ {
446
+ name: "defaultAdmin",
447
+ internalType: "address payable",
448
+ type: "address",
449
+ },
450
+ { name: "setupActions", internalType: "bytes[]", type: "bytes[]" },
451
+ ],
452
+ name: "createContractDeterministic",
453
+ outputs: [{ name: "", internalType: "address", type: "address" }],
454
+ },
455
+ {
456
+ stateMutability: "view",
457
+ type: "function",
458
+ inputs: [],
459
+ name: "defaultMinters",
460
+ outputs: [
461
+ {
462
+ name: "minters",
463
+ internalType: "contract IMinter1155[]",
464
+ type: "address[]",
465
+ },
466
+ ],
467
+ },
468
+ {
469
+ stateMutability: "view",
470
+ type: "function",
471
+ inputs: [
472
+ { name: "msgSender", internalType: "address", type: "address" },
473
+ { name: "newContractURI", internalType: "string", type: "string" },
474
+ { name: "name", internalType: "string", type: "string" },
475
+ { name: "contractAdmin", internalType: "address", type: "address" },
476
+ ],
477
+ name: "deterministicContractAddress",
478
+ outputs: [{ name: "", internalType: "address", type: "address" }],
479
+ },
480
+ {
481
+ stateMutability: "view",
482
+ type: "function",
483
+ inputs: [],
484
+ name: "fixedPriceMinter",
485
+ outputs: [
486
+ { name: "", internalType: "contract IMinter1155", type: "address" },
487
+ ],
488
+ },
489
+ {
490
+ stateMutability: "view",
491
+ type: "function",
492
+ inputs: [],
493
+ name: "implementation",
494
+ outputs: [{ name: "", internalType: "address", type: "address" }],
495
+ },
496
+ {
497
+ stateMutability: "nonpayable",
498
+ type: "function",
499
+ inputs: [
500
+ { name: "_initialOwner", internalType: "address", type: "address" },
501
+ ],
502
+ name: "initialize",
503
+ outputs: [],
504
+ },
505
+ {
506
+ stateMutability: "view",
507
+ type: "function",
508
+ inputs: [],
509
+ name: "merkleMinter",
510
+ outputs: [
511
+ { name: "", internalType: "contract IMinter1155", type: "address" },
512
+ ],
513
+ },
514
+ {
515
+ stateMutability: "view",
516
+ type: "function",
517
+ inputs: [],
518
+ name: "owner",
519
+ outputs: [{ name: "", internalType: "address", type: "address" }],
520
+ },
521
+ {
522
+ stateMutability: "view",
523
+ type: "function",
524
+ inputs: [],
525
+ name: "pendingOwner",
526
+ outputs: [{ name: "", internalType: "address", type: "address" }],
527
+ },
528
+ {
529
+ stateMutability: "view",
530
+ type: "function",
531
+ inputs: [],
532
+ name: "proxiableUUID",
533
+ outputs: [{ name: "", internalType: "bytes32", type: "bytes32" }],
534
+ },
535
+ {
536
+ stateMutability: "view",
537
+ type: "function",
538
+ inputs: [],
539
+ name: "redeemMinterFactory",
540
+ outputs: [
541
+ { name: "", internalType: "contract IMinter1155", type: "address" },
542
+ ],
543
+ },
544
+ {
545
+ stateMutability: "nonpayable",
546
+ type: "function",
547
+ inputs: [],
548
+ name: "resignOwnership",
549
+ outputs: [],
550
+ },
551
+ {
552
+ stateMutability: "nonpayable",
553
+ type: "function",
554
+ inputs: [{ name: "_newOwner", internalType: "address", type: "address" }],
555
+ name: "safeTransferOwnership",
556
+ outputs: [],
557
+ },
558
+ {
559
+ stateMutability: "nonpayable",
560
+ type: "function",
561
+ inputs: [{ name: "_newOwner", internalType: "address", type: "address" }],
562
+ name: "transferOwnership",
563
+ outputs: [],
564
+ },
565
+ {
566
+ stateMutability: "nonpayable",
567
+ type: "function",
568
+ inputs: [
569
+ { name: "newImplementation", internalType: "address", type: "address" },
570
+ ],
571
+ name: "upgradeTo",
572
+ outputs: [],
573
+ },
574
+ {
575
+ stateMutability: "payable",
576
+ type: "function",
577
+ inputs: [
578
+ { name: "newImplementation", internalType: "address", type: "address" },
579
+ { name: "data", internalType: "bytes", type: "bytes" },
580
+ ],
581
+ name: "upgradeToAndCall",
582
+ outputs: [],
583
+ },
584
+ {
585
+ stateMutability: "view",
586
+ type: "function",
587
+ inputs: [],
588
+ name: "zora1155Impl",
589
+ outputs: [
590
+ { name: "", internalType: "contract IZoraCreator1155", type: "address" },
591
+ ],
592
+ },
593
+ ] as const;
594
+
595
+ /**
596
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
597
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
598
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
599
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
600
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
601
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
602
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
603
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
604
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x13dAA8E9e3f68deDE7b1386ACdc12eA98F2FB688)
605
+ */
606
+ export const zoraCreator1155FactoryImplAddress = {
607
+ 1: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
608
+ 5: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
609
+ 10: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
610
+ 420: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
611
+ 424: "0x6E742921602a5195f6439c8b8b827E85902E1B2D",
612
+ 999: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
613
+ 8453: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
614
+ 58008: "0x6E742921602a5195f6439c8b8b827E85902E1B2D",
615
+ 84531: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
616
+ 7777777: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
617
+ 11155111: "0x13dAA8E9e3f68deDE7b1386ACdc12eA98F2FB688",
618
+ 999999999: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
619
+ } as const;
620
+
621
+ /**
622
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
623
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
624
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
625
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
626
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
627
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
628
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
629
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x777777C338d93e2C7adf08D102d45CA7CC4Ed021)
630
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x13dAA8E9e3f68deDE7b1386ACdc12eA98F2FB688)
631
+ */
632
+ export const zoraCreator1155FactoryImplConfig = {
633
+ address: zoraCreator1155FactoryImplAddress,
634
+ abi: zoraCreator1155FactoryImplABI,
635
+ } as const;
636
+
637
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
638
+ // ZoraCreator1155Impl
639
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
640
+
641
+ export const zoraCreator1155ImplABI = [
642
+ {
643
+ stateMutability: "nonpayable",
644
+ type: "constructor",
645
+ inputs: [
646
+ { name: "_mintFeeRecipient", internalType: "address", type: "address" },
647
+ { name: "_upgradeGate", internalType: "address", type: "address" },
648
+ { name: "_protocolRewards", internalType: "address", type: "address" },
649
+ ],
650
+ },
651
+ { type: "error", inputs: [], name: "ADDRESS_DELEGATECALL_TO_NON_CONTRACT" },
652
+ { type: "error", inputs: [], name: "ADDRESS_LOW_LEVEL_CALL_FAILED" },
653
+ {
654
+ type: "error",
655
+ inputs: [
656
+ { name: "operator", internalType: "address", type: "address" },
657
+ { name: "user", internalType: "address", type: "address" },
658
+ ],
659
+ name: "Burn_NotOwnerOrApproved",
660
+ },
661
+ { type: "error", inputs: [], name: "CREATOR_FUNDS_RECIPIENT_NOT_SET" },
662
+ {
663
+ type: "error",
664
+ inputs: [{ name: "reason", internalType: "bytes", type: "bytes" }],
665
+ name: "CallFailed",
666
+ },
667
+ { type: "error", inputs: [], name: "Call_TokenIdMismatch" },
668
+ {
669
+ type: "error",
670
+ inputs: [
671
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
672
+ { name: "quantity", internalType: "uint256", type: "uint256" },
673
+ { name: "totalMinted", internalType: "uint256", type: "uint256" },
674
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
675
+ ],
676
+ name: "CannotMintMoreTokens",
677
+ },
678
+ {
679
+ type: "error",
680
+ inputs: [
681
+ { name: "proposedAddress", internalType: "address", type: "address" },
682
+ ],
683
+ name: "Config_TransferHookNotSupported",
684
+ },
685
+ {
686
+ type: "error",
687
+ inputs: [],
688
+ name: "ERC1155_ACCOUNTS_AND_IDS_LENGTH_MISMATCH",
689
+ },
690
+ {
691
+ type: "error",
692
+ inputs: [],
693
+ name: "ERC1155_ADDRESS_ZERO_IS_NOT_A_VALID_OWNER",
694
+ },
695
+ { type: "error", inputs: [], name: "ERC1155_BURN_AMOUNT_EXCEEDS_BALANCE" },
696
+ { type: "error", inputs: [], name: "ERC1155_BURN_FROM_ZERO_ADDRESS" },
697
+ {
698
+ type: "error",
699
+ inputs: [],
700
+ name: "ERC1155_CALLER_IS_NOT_TOKEN_OWNER_OR_APPROVED",
701
+ },
702
+ {
703
+ type: "error",
704
+ inputs: [],
705
+ name: "ERC1155_ERC1155RECEIVER_REJECTED_TOKENS",
706
+ },
707
+ {
708
+ type: "error",
709
+ inputs: [],
710
+ name: "ERC1155_IDS_AND_AMOUNTS_LENGTH_MISMATCH",
711
+ },
712
+ {
713
+ type: "error",
714
+ inputs: [],
715
+ name: "ERC1155_INSUFFICIENT_BALANCE_FOR_TRANSFER",
716
+ },
717
+ { type: "error", inputs: [], name: "ERC1155_MINT_TO_ZERO_ADDRESS" },
718
+ { type: "error", inputs: [], name: "ERC1155_SETTING_APPROVAL_FOR_SELF" },
719
+ {
720
+ type: "error",
721
+ inputs: [],
722
+ name: "ERC1155_TRANSFER_TO_NON_ERC1155RECEIVER_IMPLEMENTER",
723
+ },
724
+ { type: "error", inputs: [], name: "ERC1155_TRANSFER_TO_ZERO_ADDRESS" },
725
+ { type: "error", inputs: [], name: "ERC1967_NEW_IMPL_NOT_CONTRACT" },
726
+ { type: "error", inputs: [], name: "ERC1967_NEW_IMPL_NOT_UUPS" },
727
+ { type: "error", inputs: [], name: "ERC1967_UNSUPPORTED_PROXIABLEUUID" },
728
+ {
729
+ type: "error",
730
+ inputs: [
731
+ { name: "recipient", internalType: "address", type: "address" },
732
+ { name: "amount", internalType: "uint256", type: "uint256" },
733
+ ],
734
+ name: "ETHWithdrawFailed",
735
+ },
736
+ {
737
+ type: "error",
738
+ inputs: [],
739
+ name: "FUNCTION_MUST_BE_CALLED_THROUGH_ACTIVE_PROXY",
740
+ },
741
+ {
742
+ type: "error",
743
+ inputs: [],
744
+ name: "FUNCTION_MUST_BE_CALLED_THROUGH_DELEGATECALL",
745
+ },
746
+ {
747
+ type: "error",
748
+ inputs: [
749
+ { name: "amount", internalType: "uint256", type: "uint256" },
750
+ { name: "contractValue", internalType: "uint256", type: "uint256" },
751
+ ],
752
+ name: "FundsWithdrawInsolvent",
753
+ },
754
+ {
755
+ type: "error",
756
+ inputs: [],
757
+ name: "INITIALIZABLE_CONTRACT_ALREADY_INITIALIZED",
758
+ },
759
+ {
760
+ type: "error",
761
+ inputs: [],
762
+ name: "INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING",
763
+ },
764
+ { type: "error", inputs: [], name: "INVALID_ADDRESS_ZERO" },
765
+ { type: "error", inputs: [], name: "INVALID_ETH_AMOUNT" },
766
+ { type: "error", inputs: [], name: "InvalidMintSchedule" },
767
+ { type: "error", inputs: [], name: "MintNotYetStarted" },
768
+ { type: "error", inputs: [], name: "Mint_InsolventSaleTransfer" },
769
+ { type: "error", inputs: [], name: "Mint_TokenIDMintNotAllowed" },
770
+ { type: "error", inputs: [], name: "Mint_UnknownCommand" },
771
+ { type: "error", inputs: [], name: "Mint_ValueTransferFail" },
772
+ { type: "error", inputs: [], name: "NewOwnerNeedsToBeAdmin" },
773
+ {
774
+ type: "error",
775
+ inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
776
+ name: "NoRendererForToken",
777
+ },
778
+ { type: "error", inputs: [], name: "ONLY_CREATE_REFERRAL" },
779
+ { type: "error", inputs: [], name: "PremintDeleted" },
780
+ {
781
+ type: "error",
782
+ inputs: [
783
+ { name: "caller", internalType: "address", type: "address" },
784
+ { name: "recipient", internalType: "address", type: "address" },
785
+ { name: "amount", internalType: "uint256", type: "uint256" },
786
+ ],
787
+ name: "ProtocolRewardsWithdrawFailed",
788
+ },
789
+ {
790
+ type: "error",
791
+ inputs: [{ name: "renderer", internalType: "address", type: "address" }],
792
+ name: "RendererNotValid",
793
+ },
794
+ { type: "error", inputs: [], name: "Renderer_NotValidRendererContract" },
795
+ {
796
+ type: "error",
797
+ inputs: [
798
+ { name: "targetContract", internalType: "address", type: "address" },
799
+ ],
800
+ name: "Sale_CannotCallNonSalesContract",
801
+ },
802
+ {
803
+ type: "error",
804
+ inputs: [
805
+ { name: "expected", internalType: "uint256", type: "uint256" },
806
+ { name: "actual", internalType: "uint256", type: "uint256" },
807
+ ],
808
+ name: "TokenIdMismatch",
809
+ },
810
+ {
811
+ type: "error",
812
+ inputs: [],
813
+ name: "UUPS_UPGRADEABLE_MUST_NOT_BE_CALLED_THROUGH_DELEGATECALL",
814
+ },
815
+ {
816
+ type: "error",
817
+ inputs: [
818
+ { name: "user", internalType: "address", type: "address" },
819
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
820
+ { name: "role", internalType: "uint256", type: "uint256" },
821
+ ],
822
+ name: "UserMissingRoleForToken",
823
+ },
824
+ {
825
+ type: "event",
826
+ anonymous: false,
827
+ inputs: [
828
+ {
829
+ name: "previousAdmin",
830
+ internalType: "address",
831
+ type: "address",
832
+ indexed: false,
833
+ },
834
+ {
835
+ name: "newAdmin",
836
+ internalType: "address",
837
+ type: "address",
838
+ indexed: false,
839
+ },
840
+ ],
841
+ name: "AdminChanged",
842
+ },
843
+ {
844
+ type: "event",
845
+ anonymous: false,
846
+ inputs: [
847
+ {
848
+ name: "account",
849
+ internalType: "address",
850
+ type: "address",
851
+ indexed: true,
852
+ },
853
+ {
854
+ name: "operator",
855
+ internalType: "address",
856
+ type: "address",
857
+ indexed: true,
858
+ },
859
+ { name: "approved", internalType: "bool", type: "bool", indexed: false },
860
+ ],
861
+ name: "ApprovalForAll",
862
+ },
863
+ {
864
+ type: "event",
865
+ anonymous: false,
866
+ inputs: [
867
+ {
868
+ name: "beacon",
869
+ internalType: "address",
870
+ type: "address",
871
+ indexed: true,
872
+ },
873
+ ],
874
+ name: "BeaconUpgraded",
875
+ },
876
+ {
877
+ type: "event",
878
+ anonymous: false,
879
+ inputs: [
880
+ {
881
+ name: "updater",
882
+ internalType: "address",
883
+ type: "address",
884
+ indexed: true,
885
+ },
886
+ {
887
+ name: "updateType",
888
+ internalType: "enum IZoraCreator1155.ConfigUpdate",
889
+ type: "uint8",
890
+ indexed: true,
891
+ },
892
+ {
893
+ name: "newConfig",
894
+ internalType: "struct IZoraCreator1155TypesV1.ContractConfig",
895
+ type: "tuple",
896
+ components: [
897
+ { name: "owner", internalType: "address", type: "address" },
898
+ { name: "__gap1", internalType: "uint96", type: "uint96" },
899
+ {
900
+ name: "fundsRecipient",
901
+ internalType: "address payable",
902
+ type: "address",
903
+ },
904
+ { name: "__gap2", internalType: "uint96", type: "uint96" },
905
+ {
906
+ name: "transferHook",
907
+ internalType: "contract ITransferHookReceiver",
908
+ type: "address",
909
+ },
910
+ { name: "__gap3", internalType: "uint96", type: "uint96" },
911
+ ],
912
+ indexed: false,
913
+ },
914
+ ],
915
+ name: "ConfigUpdated",
916
+ },
917
+ {
918
+ type: "event",
919
+ anonymous: false,
920
+ inputs: [
921
+ {
922
+ name: "updater",
923
+ internalType: "address",
924
+ type: "address",
925
+ indexed: true,
926
+ },
927
+ { name: "uri", internalType: "string", type: "string", indexed: false },
928
+ { name: "name", internalType: "string", type: "string", indexed: false },
929
+ ],
930
+ name: "ContractMetadataUpdated",
931
+ },
932
+ {
933
+ type: "event",
934
+ anonymous: false,
935
+ inputs: [
936
+ {
937
+ name: "renderer",
938
+ internalType: "contract IRenderer1155",
939
+ type: "address",
940
+ indexed: false,
941
+ },
942
+ ],
943
+ name: "ContractRendererUpdated",
944
+ },
945
+ {
946
+ type: "event",
947
+ anonymous: false,
948
+ inputs: [
949
+ {
950
+ name: "structHash",
951
+ internalType: "bytes32",
952
+ type: "bytes32",
953
+ indexed: false,
954
+ },
955
+ {
956
+ name: "domainName",
957
+ internalType: "string",
958
+ type: "string",
959
+ indexed: false,
960
+ },
961
+ {
962
+ name: "version",
963
+ internalType: "string",
964
+ type: "string",
965
+ indexed: false,
966
+ },
967
+ {
968
+ name: "creator",
969
+ internalType: "address",
970
+ type: "address",
971
+ indexed: false,
972
+ },
973
+ {
974
+ name: "signature",
975
+ internalType: "bytes",
976
+ type: "bytes",
977
+ indexed: false,
978
+ },
979
+ ],
980
+ name: "CreatorAttribution",
981
+ },
982
+ {
983
+ type: "event",
984
+ anonymous: false,
985
+ inputs: [
986
+ { name: "version", internalType: "uint8", type: "uint8", indexed: false },
987
+ ],
988
+ name: "Initialized",
989
+ },
990
+ {
991
+ type: "event",
992
+ anonymous: false,
993
+ inputs: [
994
+ {
995
+ name: "lastOwner",
996
+ internalType: "address",
997
+ type: "address",
998
+ indexed: false,
999
+ },
1000
+ {
1001
+ name: "newOwner",
1002
+ internalType: "address",
1003
+ type: "address",
1004
+ indexed: false,
1005
+ },
1006
+ ],
1007
+ name: "OwnershipTransferred",
1008
+ },
1009
+ {
1010
+ type: "event",
1011
+ anonymous: false,
1012
+ inputs: [
1013
+ {
1014
+ name: "sender",
1015
+ internalType: "address",
1016
+ type: "address",
1017
+ indexed: true,
1018
+ },
1019
+ {
1020
+ name: "minter",
1021
+ internalType: "address",
1022
+ type: "address",
1023
+ indexed: true,
1024
+ },
1025
+ {
1026
+ name: "tokenId",
1027
+ internalType: "uint256",
1028
+ type: "uint256",
1029
+ indexed: true,
1030
+ },
1031
+ {
1032
+ name: "quantity",
1033
+ internalType: "uint256",
1034
+ type: "uint256",
1035
+ indexed: false,
1036
+ },
1037
+ {
1038
+ name: "value",
1039
+ internalType: "uint256",
1040
+ type: "uint256",
1041
+ indexed: false,
1042
+ },
1043
+ ],
1044
+ name: "Purchased",
1045
+ },
1046
+ {
1047
+ type: "event",
1048
+ anonymous: false,
1049
+ inputs: [
1050
+ {
1051
+ name: "tokenId",
1052
+ internalType: "uint256",
1053
+ type: "uint256",
1054
+ indexed: true,
1055
+ },
1056
+ {
1057
+ name: "renderer",
1058
+ internalType: "address",
1059
+ type: "address",
1060
+ indexed: true,
1061
+ },
1062
+ { name: "user", internalType: "address", type: "address", indexed: true },
1063
+ ],
1064
+ name: "RendererUpdated",
1065
+ },
1066
+ {
1067
+ type: "event",
1068
+ anonymous: false,
1069
+ inputs: [
1070
+ {
1071
+ name: "tokenId",
1072
+ internalType: "uint256",
1073
+ type: "uint256",
1074
+ indexed: true,
1075
+ },
1076
+ {
1077
+ name: "sender",
1078
+ internalType: "address",
1079
+ type: "address",
1080
+ indexed: true,
1081
+ },
1082
+ {
1083
+ name: "newURI",
1084
+ internalType: "string",
1085
+ type: "string",
1086
+ indexed: false,
1087
+ },
1088
+ {
1089
+ name: "maxSupply",
1090
+ internalType: "uint256",
1091
+ type: "uint256",
1092
+ indexed: false,
1093
+ },
1094
+ ],
1095
+ name: "SetupNewToken",
1096
+ },
1097
+ {
1098
+ type: "event",
1099
+ anonymous: false,
1100
+ inputs: [
1101
+ {
1102
+ name: "operator",
1103
+ internalType: "address",
1104
+ type: "address",
1105
+ indexed: true,
1106
+ },
1107
+ { name: "from", internalType: "address", type: "address", indexed: true },
1108
+ { name: "to", internalType: "address", type: "address", indexed: true },
1109
+ {
1110
+ name: "ids",
1111
+ internalType: "uint256[]",
1112
+ type: "uint256[]",
1113
+ indexed: false,
1114
+ },
1115
+ {
1116
+ name: "values",
1117
+ internalType: "uint256[]",
1118
+ type: "uint256[]",
1119
+ indexed: false,
1120
+ },
1121
+ ],
1122
+ name: "TransferBatch",
1123
+ },
1124
+ {
1125
+ type: "event",
1126
+ anonymous: false,
1127
+ inputs: [
1128
+ {
1129
+ name: "operator",
1130
+ internalType: "address",
1131
+ type: "address",
1132
+ indexed: true,
1133
+ },
1134
+ { name: "from", internalType: "address", type: "address", indexed: true },
1135
+ { name: "to", internalType: "address", type: "address", indexed: true },
1136
+ { name: "id", internalType: "uint256", type: "uint256", indexed: false },
1137
+ {
1138
+ name: "value",
1139
+ internalType: "uint256",
1140
+ type: "uint256",
1141
+ indexed: false,
1142
+ },
1143
+ ],
1144
+ name: "TransferSingle",
1145
+ },
1146
+ {
1147
+ type: "event",
1148
+ anonymous: false,
1149
+ inputs: [
1150
+ { name: "value", internalType: "string", type: "string", indexed: false },
1151
+ { name: "id", internalType: "uint256", type: "uint256", indexed: true },
1152
+ ],
1153
+ name: "URI",
1154
+ },
1155
+ {
1156
+ type: "event",
1157
+ anonymous: false,
1158
+ inputs: [
1159
+ {
1160
+ name: "tokenId",
1161
+ internalType: "uint256",
1162
+ type: "uint256",
1163
+ indexed: true,
1164
+ },
1165
+ { name: "user", internalType: "address", type: "address", indexed: true },
1166
+ {
1167
+ name: "permissions",
1168
+ internalType: "uint256",
1169
+ type: "uint256",
1170
+ indexed: true,
1171
+ },
1172
+ ],
1173
+ name: "UpdatedPermissions",
1174
+ },
1175
+ {
1176
+ type: "event",
1177
+ anonymous: false,
1178
+ inputs: [
1179
+ {
1180
+ name: "tokenId",
1181
+ internalType: "uint256",
1182
+ type: "uint256",
1183
+ indexed: true,
1184
+ },
1185
+ { name: "user", internalType: "address", type: "address", indexed: true },
1186
+ {
1187
+ name: "configuration",
1188
+ internalType: "struct ICreatorRoyaltiesControl.RoyaltyConfiguration",
1189
+ type: "tuple",
1190
+ components: [
1191
+ {
1192
+ name: "royaltyMintSchedule",
1193
+ internalType: "uint32",
1194
+ type: "uint32",
1195
+ },
1196
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
1197
+ {
1198
+ name: "royaltyRecipient",
1199
+ internalType: "address",
1200
+ type: "address",
1201
+ },
1202
+ ],
1203
+ indexed: false,
1204
+ },
1205
+ ],
1206
+ name: "UpdatedRoyalties",
1207
+ },
1208
+ {
1209
+ type: "event",
1210
+ anonymous: false,
1211
+ inputs: [
1212
+ { name: "from", internalType: "address", type: "address", indexed: true },
1213
+ {
1214
+ name: "tokenId",
1215
+ internalType: "uint256",
1216
+ type: "uint256",
1217
+ indexed: true,
1218
+ },
1219
+ {
1220
+ name: "tokenData",
1221
+ internalType: "struct IZoraCreator1155TypesV1.TokenData",
1222
+ type: "tuple",
1223
+ components: [
1224
+ { name: "uri", internalType: "string", type: "string" },
1225
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
1226
+ { name: "totalMinted", internalType: "uint256", type: "uint256" },
1227
+ ],
1228
+ indexed: false,
1229
+ },
1230
+ ],
1231
+ name: "UpdatedToken",
1232
+ },
1233
+ {
1234
+ type: "event",
1235
+ anonymous: false,
1236
+ inputs: [
1237
+ {
1238
+ name: "implementation",
1239
+ internalType: "address",
1240
+ type: "address",
1241
+ indexed: true,
1242
+ },
1243
+ ],
1244
+ name: "Upgraded",
1245
+ },
1246
+ {
1247
+ stateMutability: "view",
1248
+ type: "function",
1249
+ inputs: [],
1250
+ name: "CONTRACT_BASE_ID",
1251
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1252
+ },
1253
+ {
1254
+ stateMutability: "view",
1255
+ type: "function",
1256
+ inputs: [],
1257
+ name: "PERMISSION_BIT_ADMIN",
1258
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1259
+ },
1260
+ {
1261
+ stateMutability: "view",
1262
+ type: "function",
1263
+ inputs: [],
1264
+ name: "PERMISSION_BIT_FUNDS_MANAGER",
1265
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1266
+ },
1267
+ {
1268
+ stateMutability: "view",
1269
+ type: "function",
1270
+ inputs: [],
1271
+ name: "PERMISSION_BIT_METADATA",
1272
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1273
+ },
1274
+ {
1275
+ stateMutability: "view",
1276
+ type: "function",
1277
+ inputs: [],
1278
+ name: "PERMISSION_BIT_MINTER",
1279
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1280
+ },
1281
+ {
1282
+ stateMutability: "view",
1283
+ type: "function",
1284
+ inputs: [],
1285
+ name: "PERMISSION_BIT_SALES",
1286
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1287
+ },
1288
+ {
1289
+ stateMutability: "nonpayable",
1290
+ type: "function",
1291
+ inputs: [
1292
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1293
+ { name: "user", internalType: "address", type: "address" },
1294
+ { name: "permissionBits", internalType: "uint256", type: "uint256" },
1295
+ ],
1296
+ name: "addPermission",
1297
+ outputs: [],
1298
+ },
1299
+ {
1300
+ stateMutability: "nonpayable",
1301
+ type: "function",
1302
+ inputs: [
1303
+ { name: "recipient", internalType: "address", type: "address" },
1304
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1305
+ { name: "quantity", internalType: "uint256", type: "uint256" },
1306
+ { name: "data", internalType: "bytes", type: "bytes" },
1307
+ ],
1308
+ name: "adminMint",
1309
+ outputs: [],
1310
+ },
1311
+ {
1312
+ stateMutability: "nonpayable",
1313
+ type: "function",
1314
+ inputs: [
1315
+ { name: "recipient", internalType: "address", type: "address" },
1316
+ { name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
1317
+ { name: "quantities", internalType: "uint256[]", type: "uint256[]" },
1318
+ { name: "data", internalType: "bytes", type: "bytes" },
1319
+ ],
1320
+ name: "adminMintBatch",
1321
+ outputs: [],
1322
+ },
1323
+ {
1324
+ stateMutability: "view",
1325
+ type: "function",
1326
+ inputs: [{ name: "lastTokenId", internalType: "uint256", type: "uint256" }],
1327
+ name: "assumeLastTokenIdMatches",
1328
+ outputs: [],
1329
+ },
1330
+ {
1331
+ stateMutability: "view",
1332
+ type: "function",
1333
+ inputs: [
1334
+ { name: "account", internalType: "address", type: "address" },
1335
+ { name: "id", internalType: "uint256", type: "uint256" },
1336
+ ],
1337
+ name: "balanceOf",
1338
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1339
+ },
1340
+ {
1341
+ stateMutability: "view",
1342
+ type: "function",
1343
+ inputs: [
1344
+ { name: "accounts", internalType: "address[]", type: "address[]" },
1345
+ { name: "ids", internalType: "uint256[]", type: "uint256[]" },
1346
+ ],
1347
+ name: "balanceOfBatch",
1348
+ outputs: [
1349
+ { name: "batchBalances", internalType: "uint256[]", type: "uint256[]" },
1350
+ ],
1351
+ },
1352
+ {
1353
+ stateMutability: "nonpayable",
1354
+ type: "function",
1355
+ inputs: [
1356
+ { name: "from", internalType: "address", type: "address" },
1357
+ { name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
1358
+ { name: "amounts", internalType: "uint256[]", type: "uint256[]" },
1359
+ ],
1360
+ name: "burnBatch",
1361
+ outputs: [],
1362
+ },
1363
+ {
1364
+ stateMutability: "nonpayable",
1365
+ type: "function",
1366
+ inputs: [
1367
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1368
+ { name: "data", internalType: "bytes", type: "bytes" },
1369
+ ],
1370
+ name: "callRenderer",
1371
+ outputs: [],
1372
+ },
1373
+ {
1374
+ stateMutability: "nonpayable",
1375
+ type: "function",
1376
+ inputs: [
1377
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1378
+ {
1379
+ name: "salesConfig",
1380
+ internalType: "contract IMinter1155",
1381
+ type: "address",
1382
+ },
1383
+ { name: "data", internalType: "bytes", type: "bytes" },
1384
+ ],
1385
+ name: "callSale",
1386
+ outputs: [],
1387
+ },
1388
+ {
1389
+ stateMutability: "pure",
1390
+ type: "function",
1391
+ inputs: [{ name: "numTokens", internalType: "uint256", type: "uint256" }],
1392
+ name: "computeFreeMintRewards",
1393
+ outputs: [
1394
+ {
1395
+ name: "",
1396
+ internalType: "struct RewardsSettings",
1397
+ type: "tuple",
1398
+ components: [
1399
+ { name: "creatorReward", internalType: "uint256", type: "uint256" },
1400
+ {
1401
+ name: "createReferralReward",
1402
+ internalType: "uint256",
1403
+ type: "uint256",
1404
+ },
1405
+ {
1406
+ name: "mintReferralReward",
1407
+ internalType: "uint256",
1408
+ type: "uint256",
1409
+ },
1410
+ {
1411
+ name: "firstMinterReward",
1412
+ internalType: "uint256",
1413
+ type: "uint256",
1414
+ },
1415
+ { name: "zoraReward", internalType: "uint256", type: "uint256" },
1416
+ ],
1417
+ },
1418
+ ],
1419
+ },
1420
+ {
1421
+ stateMutability: "pure",
1422
+ type: "function",
1423
+ inputs: [{ name: "numTokens", internalType: "uint256", type: "uint256" }],
1424
+ name: "computePaidMintRewards",
1425
+ outputs: [
1426
+ {
1427
+ name: "",
1428
+ internalType: "struct RewardsSettings",
1429
+ type: "tuple",
1430
+ components: [
1431
+ { name: "creatorReward", internalType: "uint256", type: "uint256" },
1432
+ {
1433
+ name: "createReferralReward",
1434
+ internalType: "uint256",
1435
+ type: "uint256",
1436
+ },
1437
+ {
1438
+ name: "mintReferralReward",
1439
+ internalType: "uint256",
1440
+ type: "uint256",
1441
+ },
1442
+ {
1443
+ name: "firstMinterReward",
1444
+ internalType: "uint256",
1445
+ type: "uint256",
1446
+ },
1447
+ { name: "zoraReward", internalType: "uint256", type: "uint256" },
1448
+ ],
1449
+ },
1450
+ ],
1451
+ },
1452
+ {
1453
+ stateMutability: "pure",
1454
+ type: "function",
1455
+ inputs: [{ name: "numTokens", internalType: "uint256", type: "uint256" }],
1456
+ name: "computeTotalReward",
1457
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1458
+ },
1459
+ {
1460
+ stateMutability: "view",
1461
+ type: "function",
1462
+ inputs: [],
1463
+ name: "config",
1464
+ outputs: [
1465
+ { name: "owner", internalType: "address", type: "address" },
1466
+ { name: "__gap1", internalType: "uint96", type: "uint96" },
1467
+ {
1468
+ name: "fundsRecipient",
1469
+ internalType: "address payable",
1470
+ type: "address",
1471
+ },
1472
+ { name: "__gap2", internalType: "uint96", type: "uint96" },
1473
+ {
1474
+ name: "transferHook",
1475
+ internalType: "contract ITransferHookReceiver",
1476
+ type: "address",
1477
+ },
1478
+ { name: "__gap3", internalType: "uint96", type: "uint96" },
1479
+ ],
1480
+ },
1481
+ {
1482
+ stateMutability: "view",
1483
+ type: "function",
1484
+ inputs: [],
1485
+ name: "contractURI",
1486
+ outputs: [{ name: "", internalType: "string", type: "string" }],
1487
+ },
1488
+ {
1489
+ stateMutability: "pure",
1490
+ type: "function",
1491
+ inputs: [],
1492
+ name: "contractVersion",
1493
+ outputs: [{ name: "", internalType: "string", type: "string" }],
1494
+ },
1495
+ {
1496
+ stateMutability: "view",
1497
+ type: "function",
1498
+ inputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1499
+ name: "createReferrals",
1500
+ outputs: [{ name: "", internalType: "address", type: "address" }],
1501
+ },
1502
+ {
1503
+ stateMutability: "view",
1504
+ type: "function",
1505
+ inputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1506
+ name: "customRenderers",
1507
+ outputs: [
1508
+ { name: "", internalType: "contract IRenderer1155", type: "address" },
1509
+ ],
1510
+ },
1511
+ {
1512
+ stateMutability: "nonpayable",
1513
+ type: "function",
1514
+ inputs: [
1515
+ {
1516
+ name: "premintConfig",
1517
+ internalType: "struct PremintConfig",
1518
+ type: "tuple",
1519
+ components: [
1520
+ {
1521
+ name: "tokenConfig",
1522
+ internalType: "struct TokenCreationConfig",
1523
+ type: "tuple",
1524
+ components: [
1525
+ { name: "tokenURI", internalType: "string", type: "string" },
1526
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
1527
+ {
1528
+ name: "maxTokensPerAddress",
1529
+ internalType: "uint64",
1530
+ type: "uint64",
1531
+ },
1532
+ { name: "pricePerToken", internalType: "uint96", type: "uint96" },
1533
+ { name: "mintStart", internalType: "uint64", type: "uint64" },
1534
+ { name: "mintDuration", internalType: "uint64", type: "uint64" },
1535
+ {
1536
+ name: "royaltyMintSchedule",
1537
+ internalType: "uint32",
1538
+ type: "uint32",
1539
+ },
1540
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
1541
+ {
1542
+ name: "royaltyRecipient",
1543
+ internalType: "address",
1544
+ type: "address",
1545
+ },
1546
+ {
1547
+ name: "fixedPriceMinter",
1548
+ internalType: "address",
1549
+ type: "address",
1550
+ },
1551
+ ],
1552
+ },
1553
+ { name: "uid", internalType: "uint32", type: "uint32" },
1554
+ { name: "version", internalType: "uint32", type: "uint32" },
1555
+ { name: "deleted", internalType: "bool", type: "bool" },
1556
+ ],
1557
+ },
1558
+ { name: "signature", internalType: "bytes", type: "bytes" },
1559
+ { name: "sender", internalType: "address", type: "address" },
1560
+ ],
1561
+ name: "delegateSetupNewToken",
1562
+ outputs: [{ name: "newTokenId", internalType: "uint256", type: "uint256" }],
1563
+ },
1564
+ {
1565
+ stateMutability: "view",
1566
+ type: "function",
1567
+ inputs: [{ name: "", internalType: "uint32", type: "uint32" }],
1568
+ name: "delegatedTokenId",
1569
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1570
+ },
1571
+ {
1572
+ stateMutability: "view",
1573
+ type: "function",
1574
+ inputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1575
+ name: "firstMinters",
1576
+ outputs: [{ name: "", internalType: "address", type: "address" }],
1577
+ },
1578
+ {
1579
+ stateMutability: "view",
1580
+ type: "function",
1581
+ inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
1582
+ name: "getCreatorRewardRecipient",
1583
+ outputs: [{ name: "", internalType: "address", type: "address" }],
1584
+ },
1585
+ {
1586
+ stateMutability: "view",
1587
+ type: "function",
1588
+ inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
1589
+ name: "getCustomRenderer",
1590
+ outputs: [
1591
+ {
1592
+ name: "customRenderer",
1593
+ internalType: "contract IRenderer1155",
1594
+ type: "address",
1595
+ },
1596
+ ],
1597
+ },
1598
+ {
1599
+ stateMutability: "view",
1600
+ type: "function",
1601
+ inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
1602
+ name: "getRoyalties",
1603
+ outputs: [
1604
+ {
1605
+ name: "",
1606
+ internalType: "struct ICreatorRoyaltiesControl.RoyaltyConfiguration",
1607
+ type: "tuple",
1608
+ components: [
1609
+ {
1610
+ name: "royaltyMintSchedule",
1611
+ internalType: "uint32",
1612
+ type: "uint32",
1613
+ },
1614
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
1615
+ {
1616
+ name: "royaltyRecipient",
1617
+ internalType: "address",
1618
+ type: "address",
1619
+ },
1620
+ ],
1621
+ },
1622
+ ],
1623
+ },
1624
+ {
1625
+ stateMutability: "view",
1626
+ type: "function",
1627
+ inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
1628
+ name: "getTokenInfo",
1629
+ outputs: [
1630
+ {
1631
+ name: "",
1632
+ internalType: "struct IZoraCreator1155TypesV1.TokenData",
1633
+ type: "tuple",
1634
+ components: [
1635
+ { name: "uri", internalType: "string", type: "string" },
1636
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
1637
+ { name: "totalMinted", internalType: "uint256", type: "uint256" },
1638
+ ],
1639
+ },
1640
+ ],
1641
+ },
1642
+ {
1643
+ stateMutability: "view",
1644
+ type: "function",
1645
+ inputs: [],
1646
+ name: "implementation",
1647
+ outputs: [{ name: "", internalType: "address", type: "address" }],
1648
+ },
1649
+ {
1650
+ stateMutability: "nonpayable",
1651
+ type: "function",
1652
+ inputs: [
1653
+ { name: "contractName", internalType: "string", type: "string" },
1654
+ { name: "newContractURI", internalType: "string", type: "string" },
1655
+ {
1656
+ name: "defaultRoyaltyConfiguration",
1657
+ internalType: "struct ICreatorRoyaltiesControl.RoyaltyConfiguration",
1658
+ type: "tuple",
1659
+ components: [
1660
+ {
1661
+ name: "royaltyMintSchedule",
1662
+ internalType: "uint32",
1663
+ type: "uint32",
1664
+ },
1665
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
1666
+ {
1667
+ name: "royaltyRecipient",
1668
+ internalType: "address",
1669
+ type: "address",
1670
+ },
1671
+ ],
1672
+ },
1673
+ {
1674
+ name: "defaultAdmin",
1675
+ internalType: "address payable",
1676
+ type: "address",
1677
+ },
1678
+ { name: "setupActions", internalType: "bytes[]", type: "bytes[]" },
1679
+ ],
1680
+ name: "initialize",
1681
+ outputs: [],
1682
+ },
1683
+ {
1684
+ stateMutability: "view",
1685
+ type: "function",
1686
+ inputs: [
1687
+ { name: "user", internalType: "address", type: "address" },
1688
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1689
+ { name: "role", internalType: "uint256", type: "uint256" },
1690
+ ],
1691
+ name: "isAdminOrRole",
1692
+ outputs: [{ name: "", internalType: "bool", type: "bool" }],
1693
+ },
1694
+ {
1695
+ stateMutability: "view",
1696
+ type: "function",
1697
+ inputs: [
1698
+ { name: "account", internalType: "address", type: "address" },
1699
+ { name: "operator", internalType: "address", type: "address" },
1700
+ ],
1701
+ name: "isApprovedForAll",
1702
+ outputs: [{ name: "", internalType: "bool", type: "bool" }],
1703
+ },
1704
+ {
1705
+ stateMutability: "view",
1706
+ type: "function",
1707
+ inputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1708
+ name: "metadataRendererContract",
1709
+ outputs: [{ name: "", internalType: "address", type: "address" }],
1710
+ },
1711
+ {
1712
+ stateMutability: "payable",
1713
+ type: "function",
1714
+ inputs: [
1715
+ { name: "minter", internalType: "contract IMinter1155", type: "address" },
1716
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1717
+ { name: "quantity", internalType: "uint256", type: "uint256" },
1718
+ { name: "minterArguments", internalType: "bytes", type: "bytes" },
1719
+ ],
1720
+ name: "mint",
1721
+ outputs: [],
1722
+ },
1723
+ {
1724
+ stateMutability: "pure",
1725
+ type: "function",
1726
+ inputs: [],
1727
+ name: "mintFee",
1728
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1729
+ },
1730
+ {
1731
+ stateMutability: "payable",
1732
+ type: "function",
1733
+ inputs: [
1734
+ { name: "minter", internalType: "contract IMinter1155", type: "address" },
1735
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1736
+ { name: "quantity", internalType: "uint256", type: "uint256" },
1737
+ { name: "minterArguments", internalType: "bytes", type: "bytes" },
1738
+ { name: "mintReferral", internalType: "address", type: "address" },
1739
+ ],
1740
+ name: "mintWithRewards",
1741
+ outputs: [],
1742
+ },
1743
+ {
1744
+ stateMutability: "nonpayable",
1745
+ type: "function",
1746
+ inputs: [{ name: "data", internalType: "bytes[]", type: "bytes[]" }],
1747
+ name: "multicall",
1748
+ outputs: [{ name: "results", internalType: "bytes[]", type: "bytes[]" }],
1749
+ },
1750
+ {
1751
+ stateMutability: "view",
1752
+ type: "function",
1753
+ inputs: [],
1754
+ name: "name",
1755
+ outputs: [{ name: "", internalType: "string", type: "string" }],
1756
+ },
1757
+ {
1758
+ stateMutability: "view",
1759
+ type: "function",
1760
+ inputs: [],
1761
+ name: "nextTokenId",
1762
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1763
+ },
1764
+ {
1765
+ stateMutability: "view",
1766
+ type: "function",
1767
+ inputs: [],
1768
+ name: "owner",
1769
+ outputs: [{ name: "", internalType: "address", type: "address" }],
1770
+ },
1771
+ {
1772
+ stateMutability: "view",
1773
+ type: "function",
1774
+ inputs: [
1775
+ { name: "", internalType: "uint256", type: "uint256" },
1776
+ { name: "", internalType: "address", type: "address" },
1777
+ ],
1778
+ name: "permissions",
1779
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1780
+ },
1781
+ {
1782
+ stateMutability: "view",
1783
+ type: "function",
1784
+ inputs: [],
1785
+ name: "proxiableUUID",
1786
+ outputs: [{ name: "", internalType: "bytes32", type: "bytes32" }],
1787
+ },
1788
+ {
1789
+ stateMutability: "nonpayable",
1790
+ type: "function",
1791
+ inputs: [
1792
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1793
+ { name: "user", internalType: "address", type: "address" },
1794
+ { name: "permissionBits", internalType: "uint256", type: "uint256" },
1795
+ ],
1796
+ name: "removePermission",
1797
+ outputs: [],
1798
+ },
1799
+ {
1800
+ stateMutability: "view",
1801
+ type: "function",
1802
+ inputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1803
+ name: "royalties",
1804
+ outputs: [
1805
+ { name: "royaltyMintSchedule", internalType: "uint32", type: "uint32" },
1806
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
1807
+ { name: "royaltyRecipient", internalType: "address", type: "address" },
1808
+ ],
1809
+ },
1810
+ {
1811
+ stateMutability: "view",
1812
+ type: "function",
1813
+ inputs: [
1814
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1815
+ { name: "salePrice", internalType: "uint256", type: "uint256" },
1816
+ ],
1817
+ name: "royaltyInfo",
1818
+ outputs: [
1819
+ { name: "receiver", internalType: "address", type: "address" },
1820
+ { name: "royaltyAmount", internalType: "uint256", type: "uint256" },
1821
+ ],
1822
+ },
1823
+ {
1824
+ stateMutability: "nonpayable",
1825
+ type: "function",
1826
+ inputs: [
1827
+ { name: "from", internalType: "address", type: "address" },
1828
+ { name: "to", internalType: "address", type: "address" },
1829
+ { name: "ids", internalType: "uint256[]", type: "uint256[]" },
1830
+ { name: "amounts", internalType: "uint256[]", type: "uint256[]" },
1831
+ { name: "data", internalType: "bytes", type: "bytes" },
1832
+ ],
1833
+ name: "safeBatchTransferFrom",
1834
+ outputs: [],
1835
+ },
1836
+ {
1837
+ stateMutability: "nonpayable",
1838
+ type: "function",
1839
+ inputs: [
1840
+ { name: "from", internalType: "address", type: "address" },
1841
+ { name: "to", internalType: "address", type: "address" },
1842
+ { name: "id", internalType: "uint256", type: "uint256" },
1843
+ { name: "amount", internalType: "uint256", type: "uint256" },
1844
+ { name: "data", internalType: "bytes", type: "bytes" },
1845
+ ],
1846
+ name: "safeTransferFrom",
1847
+ outputs: [],
1848
+ },
1849
+ {
1850
+ stateMutability: "nonpayable",
1851
+ type: "function",
1852
+ inputs: [
1853
+ { name: "operator", internalType: "address", type: "address" },
1854
+ { name: "approved", internalType: "bool", type: "bool" },
1855
+ ],
1856
+ name: "setApprovalForAll",
1857
+ outputs: [],
1858
+ },
1859
+ {
1860
+ stateMutability: "nonpayable",
1861
+ type: "function",
1862
+ inputs: [
1863
+ {
1864
+ name: "fundsRecipient",
1865
+ internalType: "address payable",
1866
+ type: "address",
1867
+ },
1868
+ ],
1869
+ name: "setFundsRecipient",
1870
+ outputs: [],
1871
+ },
1872
+ {
1873
+ stateMutability: "nonpayable",
1874
+ type: "function",
1875
+ inputs: [{ name: "newOwner", internalType: "address", type: "address" }],
1876
+ name: "setOwner",
1877
+ outputs: [],
1878
+ },
1879
+ {
1880
+ stateMutability: "nonpayable",
1881
+ type: "function",
1882
+ inputs: [
1883
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1884
+ {
1885
+ name: "renderer",
1886
+ internalType: "contract IRenderer1155",
1887
+ type: "address",
1888
+ },
1889
+ ],
1890
+ name: "setTokenMetadataRenderer",
1891
+ outputs: [],
1892
+ },
1893
+ {
1894
+ stateMutability: "nonpayable",
1895
+ type: "function",
1896
+ inputs: [
1897
+ {
1898
+ name: "transferHook",
1899
+ internalType: "contract ITransferHookReceiver",
1900
+ type: "address",
1901
+ },
1902
+ ],
1903
+ name: "setTransferHook",
1904
+ outputs: [],
1905
+ },
1906
+ {
1907
+ stateMutability: "nonpayable",
1908
+ type: "function",
1909
+ inputs: [
1910
+ { name: "newURI", internalType: "string", type: "string" },
1911
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
1912
+ ],
1913
+ name: "setupNewToken",
1914
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1915
+ },
1916
+ {
1917
+ stateMutability: "nonpayable",
1918
+ type: "function",
1919
+ inputs: [
1920
+ { name: "newURI", internalType: "string", type: "string" },
1921
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
1922
+ { name: "createReferral", internalType: "address", type: "address" },
1923
+ ],
1924
+ name: "setupNewTokenWithCreateReferral",
1925
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
1926
+ },
1927
+ {
1928
+ stateMutability: "view",
1929
+ type: "function",
1930
+ inputs: [{ name: "interfaceId", internalType: "bytes4", type: "bytes4" }],
1931
+ name: "supportsInterface",
1932
+ outputs: [{ name: "", internalType: "bool", type: "bool" }],
1933
+ },
1934
+ {
1935
+ stateMutability: "pure",
1936
+ type: "function",
1937
+ inputs: [],
1938
+ name: "symbol",
1939
+ outputs: [{ name: "", internalType: "string", type: "string" }],
1940
+ },
1941
+ {
1942
+ stateMutability: "nonpayable",
1943
+ type: "function",
1944
+ inputs: [
1945
+ { name: "_newURI", internalType: "string", type: "string" },
1946
+ { name: "_newName", internalType: "string", type: "string" },
1947
+ ],
1948
+ name: "updateContractMetadata",
1949
+ outputs: [],
1950
+ },
1951
+ {
1952
+ stateMutability: "nonpayable",
1953
+ type: "function",
1954
+ inputs: [
1955
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1956
+ { name: "recipient", internalType: "address", type: "address" },
1957
+ ],
1958
+ name: "updateCreateReferral",
1959
+ outputs: [],
1960
+ },
1961
+ {
1962
+ stateMutability: "nonpayable",
1963
+ type: "function",
1964
+ inputs: [
1965
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1966
+ {
1967
+ name: "newConfiguration",
1968
+ internalType: "struct ICreatorRoyaltiesControl.RoyaltyConfiguration",
1969
+ type: "tuple",
1970
+ components: [
1971
+ {
1972
+ name: "royaltyMintSchedule",
1973
+ internalType: "uint32",
1974
+ type: "uint32",
1975
+ },
1976
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
1977
+ {
1978
+ name: "royaltyRecipient",
1979
+ internalType: "address",
1980
+ type: "address",
1981
+ },
1982
+ ],
1983
+ },
1984
+ ],
1985
+ name: "updateRoyaltiesForToken",
1986
+ outputs: [],
1987
+ },
1988
+ {
1989
+ stateMutability: "nonpayable",
1990
+ type: "function",
1991
+ inputs: [
1992
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1993
+ { name: "_newURI", internalType: "string", type: "string" },
1994
+ ],
1995
+ name: "updateTokenURI",
1996
+ outputs: [],
1997
+ },
1998
+ {
1999
+ stateMutability: "nonpayable",
2000
+ type: "function",
2001
+ inputs: [
2002
+ { name: "newImplementation", internalType: "address", type: "address" },
2003
+ ],
2004
+ name: "upgradeTo",
2005
+ outputs: [],
2006
+ },
2007
+ {
2008
+ stateMutability: "payable",
2009
+ type: "function",
2010
+ inputs: [
2011
+ { name: "newImplementation", internalType: "address", type: "address" },
2012
+ { name: "data", internalType: "bytes", type: "bytes" },
2013
+ ],
2014
+ name: "upgradeToAndCall",
2015
+ outputs: [],
2016
+ },
2017
+ {
2018
+ stateMutability: "view",
2019
+ type: "function",
2020
+ inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
2021
+ name: "uri",
2022
+ outputs: [{ name: "", internalType: "string", type: "string" }],
2023
+ },
2024
+ {
2025
+ stateMutability: "nonpayable",
2026
+ type: "function",
2027
+ inputs: [],
2028
+ name: "withdraw",
2029
+ outputs: [],
2030
+ },
2031
+ {
2032
+ stateMutability: "nonpayable",
2033
+ type: "function",
2034
+ inputs: [
2035
+ { name: "to", internalType: "address", type: "address" },
2036
+ { name: "amount", internalType: "uint256", type: "uint256" },
2037
+ ],
2038
+ name: "withdrawRewards",
2039
+ outputs: [],
2040
+ },
2041
+ ] as const;
2042
+
2043
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2044
+ // ZoraCreator1155PremintExecutorImpl
2045
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2046
+
2047
+ /**
2048
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2049
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2050
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2051
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2052
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2053
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2054
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2055
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2056
+ */
2057
+ export const zoraCreator1155PremintExecutorImplABI = [
2058
+ {
2059
+ stateMutability: "nonpayable",
2060
+ type: "constructor",
2061
+ inputs: [
2062
+ {
2063
+ name: "_factory",
2064
+ internalType: "contract IZoraCreator1155Factory",
2065
+ type: "address",
2066
+ },
2067
+ ],
2068
+ },
2069
+ { type: "error", inputs: [], name: "ADDRESS_DELEGATECALL_TO_NON_CONTRACT" },
2070
+ { type: "error", inputs: [], name: "ADDRESS_LOW_LEVEL_CALL_FAILED" },
2071
+ {
2072
+ type: "error",
2073
+ inputs: [
2074
+ { name: "operator", internalType: "address", type: "address" },
2075
+ { name: "user", internalType: "address", type: "address" },
2076
+ ],
2077
+ name: "Burn_NotOwnerOrApproved",
2078
+ },
2079
+ {
2080
+ type: "error",
2081
+ inputs: [{ name: "reason", internalType: "bytes", type: "bytes" }],
2082
+ name: "CallFailed",
2083
+ },
2084
+ { type: "error", inputs: [], name: "Call_TokenIdMismatch" },
2085
+ {
2086
+ type: "error",
2087
+ inputs: [
2088
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
2089
+ { name: "quantity", internalType: "uint256", type: "uint256" },
2090
+ { name: "totalMinted", internalType: "uint256", type: "uint256" },
2091
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
2092
+ ],
2093
+ name: "CannotMintMoreTokens",
2094
+ },
2095
+ {
2096
+ type: "error",
2097
+ inputs: [
2098
+ { name: "proposedAddress", internalType: "address", type: "address" },
2099
+ ],
2100
+ name: "Config_TransferHookNotSupported",
2101
+ },
2102
+ { type: "error", inputs: [], name: "ERC1967_NEW_IMPL_NOT_CONTRACT" },
2103
+ { type: "error", inputs: [], name: "ERC1967_NEW_IMPL_NOT_UUPS" },
2104
+ { type: "error", inputs: [], name: "ERC1967_UNSUPPORTED_PROXIABLEUUID" },
2105
+ {
2106
+ type: "error",
2107
+ inputs: [
2108
+ { name: "recipient", internalType: "address", type: "address" },
2109
+ { name: "amount", internalType: "uint256", type: "uint256" },
2110
+ ],
2111
+ name: "ETHWithdrawFailed",
2112
+ },
2113
+ {
2114
+ type: "error",
2115
+ inputs: [],
2116
+ name: "FUNCTION_MUST_BE_CALLED_THROUGH_ACTIVE_PROXY",
2117
+ },
2118
+ {
2119
+ type: "error",
2120
+ inputs: [],
2121
+ name: "FUNCTION_MUST_BE_CALLED_THROUGH_DELEGATECALL",
2122
+ },
2123
+ {
2124
+ type: "error",
2125
+ inputs: [
2126
+ { name: "amount", internalType: "uint256", type: "uint256" },
2127
+ { name: "contractValue", internalType: "uint256", type: "uint256" },
2128
+ ],
2129
+ name: "FundsWithdrawInsolvent",
2130
+ },
2131
+ {
2132
+ type: "error",
2133
+ inputs: [],
2134
+ name: "INITIALIZABLE_CONTRACT_ALREADY_INITIALIZED",
2135
+ },
2136
+ {
2137
+ type: "error",
2138
+ inputs: [],
2139
+ name: "INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING",
2140
+ },
2141
+ { type: "error", inputs: [], name: "MintNotYetStarted" },
2142
+ { type: "error", inputs: [], name: "Mint_InsolventSaleTransfer" },
2143
+ { type: "error", inputs: [], name: "Mint_TokenIDMintNotAllowed" },
2144
+ { type: "error", inputs: [], name: "Mint_UnknownCommand" },
2145
+ { type: "error", inputs: [], name: "Mint_ValueTransferFail" },
2146
+ { type: "error", inputs: [], name: "NewOwnerNeedsToBeAdmin" },
2147
+ { type: "error", inputs: [], name: "ONLY_OWNER" },
2148
+ { type: "error", inputs: [], name: "ONLY_PENDING_OWNER" },
2149
+ { type: "error", inputs: [], name: "OWNER_CANNOT_BE_ZERO_ADDRESS" },
2150
+ { type: "error", inputs: [], name: "PremintDeleted" },
2151
+ {
2152
+ type: "error",
2153
+ inputs: [
2154
+ { name: "caller", internalType: "address", type: "address" },
2155
+ { name: "recipient", internalType: "address", type: "address" },
2156
+ { name: "amount", internalType: "uint256", type: "uint256" },
2157
+ ],
2158
+ name: "ProtocolRewardsWithdrawFailed",
2159
+ },
2160
+ { type: "error", inputs: [], name: "Renderer_NotValidRendererContract" },
2161
+ {
2162
+ type: "error",
2163
+ inputs: [
2164
+ { name: "targetContract", internalType: "address", type: "address" },
2165
+ ],
2166
+ name: "Sale_CannotCallNonSalesContract",
2167
+ },
2168
+ {
2169
+ type: "error",
2170
+ inputs: [
2171
+ { name: "expected", internalType: "uint256", type: "uint256" },
2172
+ { name: "actual", internalType: "uint256", type: "uint256" },
2173
+ ],
2174
+ name: "TokenIdMismatch",
2175
+ },
2176
+ {
2177
+ type: "error",
2178
+ inputs: [],
2179
+ name: "UUPS_UPGRADEABLE_MUST_NOT_BE_CALLED_THROUGH_DELEGATECALL",
2180
+ },
2181
+ {
2182
+ type: "error",
2183
+ inputs: [
2184
+ { name: "expected", internalType: "string", type: "string" },
2185
+ { name: "actual", internalType: "string", type: "string" },
2186
+ ],
2187
+ name: "UpgradeToMismatchedContractName",
2188
+ },
2189
+ {
2190
+ type: "error",
2191
+ inputs: [
2192
+ { name: "user", internalType: "address", type: "address" },
2193
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
2194
+ { name: "role", internalType: "uint256", type: "uint256" },
2195
+ ],
2196
+ name: "UserMissingRoleForToken",
2197
+ },
2198
+ {
2199
+ type: "event",
2200
+ anonymous: false,
2201
+ inputs: [
2202
+ {
2203
+ name: "previousAdmin",
2204
+ internalType: "address",
2205
+ type: "address",
2206
+ indexed: false,
2207
+ },
2208
+ {
2209
+ name: "newAdmin",
2210
+ internalType: "address",
2211
+ type: "address",
2212
+ indexed: false,
2213
+ },
2214
+ ],
2215
+ name: "AdminChanged",
2216
+ },
2217
+ {
2218
+ type: "event",
2219
+ anonymous: false,
2220
+ inputs: [
2221
+ {
2222
+ name: "beacon",
2223
+ internalType: "address",
2224
+ type: "address",
2225
+ indexed: true,
2226
+ },
2227
+ ],
2228
+ name: "BeaconUpgraded",
2229
+ },
2230
+ {
2231
+ type: "event",
2232
+ anonymous: false,
2233
+ inputs: [
2234
+ { name: "version", internalType: "uint8", type: "uint8", indexed: false },
2235
+ ],
2236
+ name: "Initialized",
2237
+ },
2238
+ {
2239
+ type: "event",
2240
+ anonymous: false,
2241
+ inputs: [
2242
+ {
2243
+ name: "owner",
2244
+ internalType: "address",
2245
+ type: "address",
2246
+ indexed: true,
2247
+ },
2248
+ {
2249
+ name: "canceledOwner",
2250
+ internalType: "address",
2251
+ type: "address",
2252
+ indexed: true,
2253
+ },
2254
+ ],
2255
+ name: "OwnerCanceled",
2256
+ },
2257
+ {
2258
+ type: "event",
2259
+ anonymous: false,
2260
+ inputs: [
2261
+ {
2262
+ name: "owner",
2263
+ internalType: "address",
2264
+ type: "address",
2265
+ indexed: true,
2266
+ },
2267
+ {
2268
+ name: "pendingOwner",
2269
+ internalType: "address",
2270
+ type: "address",
2271
+ indexed: true,
2272
+ },
2273
+ ],
2274
+ name: "OwnerPending",
2275
+ },
2276
+ {
2277
+ type: "event",
2278
+ anonymous: false,
2279
+ inputs: [
2280
+ {
2281
+ name: "prevOwner",
2282
+ internalType: "address",
2283
+ type: "address",
2284
+ indexed: true,
2285
+ },
2286
+ {
2287
+ name: "newOwner",
2288
+ internalType: "address",
2289
+ type: "address",
2290
+ indexed: true,
2291
+ },
2292
+ ],
2293
+ name: "OwnerUpdated",
2294
+ },
2295
+ {
2296
+ type: "event",
2297
+ anonymous: false,
2298
+ inputs: [
2299
+ {
2300
+ name: "contractAddress",
2301
+ internalType: "address",
2302
+ type: "address",
2303
+ indexed: true,
2304
+ },
2305
+ {
2306
+ name: "tokenId",
2307
+ internalType: "uint256",
2308
+ type: "uint256",
2309
+ indexed: true,
2310
+ },
2311
+ {
2312
+ name: "createdNewContract",
2313
+ internalType: "bool",
2314
+ type: "bool",
2315
+ indexed: true,
2316
+ },
2317
+ { name: "uid", internalType: "uint32", type: "uint32", indexed: false },
2318
+ {
2319
+ name: "contractConfig",
2320
+ internalType: "struct ContractCreationConfig",
2321
+ type: "tuple",
2322
+ components: [
2323
+ { name: "contractAdmin", internalType: "address", type: "address" },
2324
+ { name: "contractURI", internalType: "string", type: "string" },
2325
+ { name: "contractName", internalType: "string", type: "string" },
2326
+ ],
2327
+ indexed: false,
2328
+ },
2329
+ {
2330
+ name: "tokenConfig",
2331
+ internalType: "struct TokenCreationConfig",
2332
+ type: "tuple",
2333
+ components: [
2334
+ { name: "tokenURI", internalType: "string", type: "string" },
2335
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
2336
+ {
2337
+ name: "maxTokensPerAddress",
2338
+ internalType: "uint64",
2339
+ type: "uint64",
2340
+ },
2341
+ { name: "pricePerToken", internalType: "uint96", type: "uint96" },
2342
+ { name: "mintStart", internalType: "uint64", type: "uint64" },
2343
+ { name: "mintDuration", internalType: "uint64", type: "uint64" },
2344
+ {
2345
+ name: "royaltyMintSchedule",
2346
+ internalType: "uint32",
2347
+ type: "uint32",
2348
+ },
2349
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
2350
+ {
2351
+ name: "royaltyRecipient",
2352
+ internalType: "address",
2353
+ type: "address",
2354
+ },
2355
+ {
2356
+ name: "fixedPriceMinter",
2357
+ internalType: "address",
2358
+ type: "address",
2359
+ },
2360
+ ],
2361
+ indexed: false,
2362
+ },
2363
+ {
2364
+ name: "minter",
2365
+ internalType: "address",
2366
+ type: "address",
2367
+ indexed: false,
2368
+ },
2369
+ {
2370
+ name: "quantityMinted",
2371
+ internalType: "uint256",
2372
+ type: "uint256",
2373
+ indexed: false,
2374
+ },
2375
+ ],
2376
+ name: "Preminted",
2377
+ },
2378
+ {
2379
+ type: "event",
2380
+ anonymous: false,
2381
+ inputs: [
2382
+ {
2383
+ name: "implementation",
2384
+ internalType: "address",
2385
+ type: "address",
2386
+ indexed: true,
2387
+ },
2388
+ ],
2389
+ name: "Upgraded",
2390
+ },
2391
+ {
2392
+ stateMutability: "nonpayable",
2393
+ type: "function",
2394
+ inputs: [],
2395
+ name: "acceptOwnership",
2396
+ outputs: [],
2397
+ },
2398
+ {
2399
+ stateMutability: "nonpayable",
2400
+ type: "function",
2401
+ inputs: [],
2402
+ name: "cancelOwnershipTransfer",
2403
+ outputs: [],
2404
+ },
2405
+ {
2406
+ stateMutability: "pure",
2407
+ type: "function",
2408
+ inputs: [],
2409
+ name: "contractName",
2410
+ outputs: [{ name: "", internalType: "string", type: "string" }],
2411
+ },
2412
+ {
2413
+ stateMutability: "view",
2414
+ type: "function",
2415
+ inputs: [
2416
+ {
2417
+ name: "contractConfig",
2418
+ internalType: "struct ContractCreationConfig",
2419
+ type: "tuple",
2420
+ components: [
2421
+ { name: "contractAdmin", internalType: "address", type: "address" },
2422
+ { name: "contractURI", internalType: "string", type: "string" },
2423
+ { name: "contractName", internalType: "string", type: "string" },
2424
+ ],
2425
+ },
2426
+ ],
2427
+ name: "getContractAddress",
2428
+ outputs: [{ name: "", internalType: "address", type: "address" }],
2429
+ },
2430
+ {
2431
+ stateMutability: "nonpayable",
2432
+ type: "function",
2433
+ inputs: [
2434
+ { name: "_initialOwner", internalType: "address", type: "address" },
2435
+ ],
2436
+ name: "initialize",
2437
+ outputs: [],
2438
+ },
2439
+ {
2440
+ stateMutability: "view",
2441
+ type: "function",
2442
+ inputs: [
2443
+ {
2444
+ name: "contractConfig",
2445
+ internalType: "struct ContractCreationConfig",
2446
+ type: "tuple",
2447
+ components: [
2448
+ { name: "contractAdmin", internalType: "address", type: "address" },
2449
+ { name: "contractURI", internalType: "string", type: "string" },
2450
+ { name: "contractName", internalType: "string", type: "string" },
2451
+ ],
2452
+ },
2453
+ {
2454
+ name: "premintConfig",
2455
+ internalType: "struct PremintConfig",
2456
+ type: "tuple",
2457
+ components: [
2458
+ {
2459
+ name: "tokenConfig",
2460
+ internalType: "struct TokenCreationConfig",
2461
+ type: "tuple",
2462
+ components: [
2463
+ { name: "tokenURI", internalType: "string", type: "string" },
2464
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
2465
+ {
2466
+ name: "maxTokensPerAddress",
2467
+ internalType: "uint64",
2468
+ type: "uint64",
2469
+ },
2470
+ { name: "pricePerToken", internalType: "uint96", type: "uint96" },
2471
+ { name: "mintStart", internalType: "uint64", type: "uint64" },
2472
+ { name: "mintDuration", internalType: "uint64", type: "uint64" },
2473
+ {
2474
+ name: "royaltyMintSchedule",
2475
+ internalType: "uint32",
2476
+ type: "uint32",
2477
+ },
2478
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
2479
+ {
2480
+ name: "royaltyRecipient",
2481
+ internalType: "address",
2482
+ type: "address",
2483
+ },
2484
+ {
2485
+ name: "fixedPriceMinter",
2486
+ internalType: "address",
2487
+ type: "address",
2488
+ },
2489
+ ],
2490
+ },
2491
+ { name: "uid", internalType: "uint32", type: "uint32" },
2492
+ { name: "version", internalType: "uint32", type: "uint32" },
2493
+ { name: "deleted", internalType: "bool", type: "bool" },
2494
+ ],
2495
+ },
2496
+ { name: "signature", internalType: "bytes", type: "bytes" },
2497
+ ],
2498
+ name: "isValidSignature",
2499
+ outputs: [
2500
+ { name: "isValid", internalType: "bool", type: "bool" },
2501
+ { name: "contractAddress", internalType: "address", type: "address" },
2502
+ { name: "recoveredSigner", internalType: "address", type: "address" },
2503
+ ],
2504
+ },
2505
+ {
2506
+ stateMutability: "view",
2507
+ type: "function",
2508
+ inputs: [],
2509
+ name: "owner",
2510
+ outputs: [{ name: "", internalType: "address", type: "address" }],
2511
+ },
2512
+ {
2513
+ stateMutability: "view",
2514
+ type: "function",
2515
+ inputs: [],
2516
+ name: "pendingOwner",
2517
+ outputs: [{ name: "", internalType: "address", type: "address" }],
2518
+ },
2519
+ {
2520
+ stateMutability: "payable",
2521
+ type: "function",
2522
+ inputs: [
2523
+ {
2524
+ name: "contractConfig",
2525
+ internalType: "struct ContractCreationConfig",
2526
+ type: "tuple",
2527
+ components: [
2528
+ { name: "contractAdmin", internalType: "address", type: "address" },
2529
+ { name: "contractURI", internalType: "string", type: "string" },
2530
+ { name: "contractName", internalType: "string", type: "string" },
2531
+ ],
2532
+ },
2533
+ {
2534
+ name: "premintConfig",
2535
+ internalType: "struct PremintConfig",
2536
+ type: "tuple",
2537
+ components: [
2538
+ {
2539
+ name: "tokenConfig",
2540
+ internalType: "struct TokenCreationConfig",
2541
+ type: "tuple",
2542
+ components: [
2543
+ { name: "tokenURI", internalType: "string", type: "string" },
2544
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
2545
+ {
2546
+ name: "maxTokensPerAddress",
2547
+ internalType: "uint64",
2548
+ type: "uint64",
2549
+ },
2550
+ { name: "pricePerToken", internalType: "uint96", type: "uint96" },
2551
+ { name: "mintStart", internalType: "uint64", type: "uint64" },
2552
+ { name: "mintDuration", internalType: "uint64", type: "uint64" },
2553
+ {
2554
+ name: "royaltyMintSchedule",
2555
+ internalType: "uint32",
2556
+ type: "uint32",
2557
+ },
2558
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
2559
+ {
2560
+ name: "royaltyRecipient",
2561
+ internalType: "address",
2562
+ type: "address",
2563
+ },
2564
+ {
2565
+ name: "fixedPriceMinter",
2566
+ internalType: "address",
2567
+ type: "address",
2568
+ },
2569
+ ],
2570
+ },
2571
+ { name: "uid", internalType: "uint32", type: "uint32" },
2572
+ { name: "version", internalType: "uint32", type: "uint32" },
2573
+ { name: "deleted", internalType: "bool", type: "bool" },
2574
+ ],
2575
+ },
2576
+ { name: "signature", internalType: "bytes", type: "bytes" },
2577
+ { name: "quantityToMint", internalType: "uint256", type: "uint256" },
2578
+ { name: "mintComment", internalType: "string", type: "string" },
2579
+ ],
2580
+ name: "premint",
2581
+ outputs: [{ name: "newTokenId", internalType: "uint256", type: "uint256" }],
2582
+ },
2583
+ {
2584
+ stateMutability: "view",
2585
+ type: "function",
2586
+ inputs: [
2587
+ { name: "contractAddress", internalType: "address", type: "address" },
2588
+ { name: "uid", internalType: "uint32", type: "uint32" },
2589
+ ],
2590
+ name: "premintStatus",
2591
+ outputs: [
2592
+ { name: "contractCreated", internalType: "bool", type: "bool" },
2593
+ { name: "tokenIdForPremint", internalType: "uint256", type: "uint256" },
2594
+ ],
2595
+ },
2596
+ {
2597
+ stateMutability: "view",
2598
+ type: "function",
2599
+ inputs: [],
2600
+ name: "proxiableUUID",
2601
+ outputs: [{ name: "", internalType: "bytes32", type: "bytes32" }],
2602
+ },
2603
+ {
2604
+ stateMutability: "view",
2605
+ type: "function",
2606
+ inputs: [
2607
+ {
2608
+ name: "premintConfig",
2609
+ internalType: "struct PremintConfig",
2610
+ type: "tuple",
2611
+ components: [
2612
+ {
2613
+ name: "tokenConfig",
2614
+ internalType: "struct TokenCreationConfig",
2615
+ type: "tuple",
2616
+ components: [
2617
+ { name: "tokenURI", internalType: "string", type: "string" },
2618
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
2619
+ {
2620
+ name: "maxTokensPerAddress",
2621
+ internalType: "uint64",
2622
+ type: "uint64",
2623
+ },
2624
+ { name: "pricePerToken", internalType: "uint96", type: "uint96" },
2625
+ { name: "mintStart", internalType: "uint64", type: "uint64" },
2626
+ { name: "mintDuration", internalType: "uint64", type: "uint64" },
2627
+ {
2628
+ name: "royaltyMintSchedule",
2629
+ internalType: "uint32",
2630
+ type: "uint32",
2631
+ },
2632
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
2633
+ {
2634
+ name: "royaltyRecipient",
2635
+ internalType: "address",
2636
+ type: "address",
2637
+ },
2638
+ {
2639
+ name: "fixedPriceMinter",
2640
+ internalType: "address",
2641
+ type: "address",
2642
+ },
2643
+ ],
2644
+ },
2645
+ { name: "uid", internalType: "uint32", type: "uint32" },
2646
+ { name: "version", internalType: "uint32", type: "uint32" },
2647
+ { name: "deleted", internalType: "bool", type: "bool" },
2648
+ ],
2649
+ },
2650
+ { name: "zor1155Address", internalType: "address", type: "address" },
2651
+ { name: "signature", internalType: "bytes", type: "bytes" },
2652
+ ],
2653
+ name: "recoverSigner",
2654
+ outputs: [{ name: "", internalType: "address", type: "address" }],
2655
+ },
2656
+ {
2657
+ stateMutability: "nonpayable",
2658
+ type: "function",
2659
+ inputs: [],
2660
+ name: "resignOwnership",
2661
+ outputs: [],
2662
+ },
2663
+ {
2664
+ stateMutability: "nonpayable",
2665
+ type: "function",
2666
+ inputs: [{ name: "_newOwner", internalType: "address", type: "address" }],
2667
+ name: "safeTransferOwnership",
2668
+ outputs: [],
2669
+ },
2670
+ {
2671
+ stateMutability: "nonpayable",
2672
+ type: "function",
2673
+ inputs: [{ name: "_newOwner", internalType: "address", type: "address" }],
2674
+ name: "transferOwnership",
2675
+ outputs: [],
2676
+ },
2677
+ {
2678
+ stateMutability: "nonpayable",
2679
+ type: "function",
2680
+ inputs: [
2681
+ { name: "newImplementation", internalType: "address", type: "address" },
2682
+ ],
2683
+ name: "upgradeTo",
2684
+ outputs: [],
2685
+ },
2686
+ {
2687
+ stateMutability: "payable",
2688
+ type: "function",
2689
+ inputs: [
2690
+ { name: "newImplementation", internalType: "address", type: "address" },
2691
+ { name: "data", internalType: "bytes", type: "bytes" },
2692
+ ],
2693
+ name: "upgradeToAndCall",
2694
+ outputs: [],
2695
+ },
2696
+ {
2697
+ stateMutability: "view",
2698
+ type: "function",
2699
+ inputs: [],
2700
+ name: "zora1155Factory",
2701
+ outputs: [
2702
+ {
2703
+ name: "",
2704
+ internalType: "contract IZoraCreator1155Factory",
2705
+ type: "address",
2706
+ },
2707
+ ],
2708
+ },
2709
+ ] as const;
2710
+
2711
+ /**
2712
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2713
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2714
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2715
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2716
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2717
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2718
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2719
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2720
+ */
2721
+ export const zoraCreator1155PremintExecutorImplAddress = {
2722
+ 1: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
2723
+ 5: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
2724
+ 10: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
2725
+ 420: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
2726
+ 999: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
2727
+ 8453: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
2728
+ 84531: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
2729
+ 7777777: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
2730
+ 999999999: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
2731
+ } as const;
2732
+
2733
+ /**
2734
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2735
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2736
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2737
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2738
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2739
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2740
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2741
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x7777773606e7e46C8Ba8B98C08f5cD218e31d340)
2742
+ */
2743
+ export const zoraCreator1155PremintExecutorImplConfig = {
2744
+ address: zoraCreator1155PremintExecutorImplAddress,
2745
+ abi: zoraCreator1155PremintExecutorImplABI,
2746
+ } as const;
2747
+
2748
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2749
+ // ZoraCreatorFixedPriceSaleStrategy
2750
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2751
+
2752
+ /**
2753
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2754
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2755
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x3678862f04290E565cCA2EF163BAeb92Bb76790C)
2756
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2757
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2758
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2759
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2760
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2761
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xA5E8d0d4FCed34E86AF6d4E16131C7210Ba8b4b7)
2762
+ */
2763
+ export const zoraCreatorFixedPriceSaleStrategyABI = [
2764
+ { type: "error", inputs: [], name: "SaleEnded" },
2765
+ { type: "error", inputs: [], name: "SaleHasNotStarted" },
2766
+ {
2767
+ type: "error",
2768
+ inputs: [
2769
+ { name: "user", internalType: "address", type: "address" },
2770
+ { name: "limit", internalType: "uint256", type: "uint256" },
2771
+ { name: "requestedAmount", internalType: "uint256", type: "uint256" },
2772
+ ],
2773
+ name: "UserExceedsMintLimit",
2774
+ },
2775
+ { type: "error", inputs: [], name: "WrongValueSent" },
2776
+ {
2777
+ type: "event",
2778
+ anonymous: false,
2779
+ inputs: [
2780
+ {
2781
+ name: "sender",
2782
+ internalType: "address",
2783
+ type: "address",
2784
+ indexed: true,
2785
+ },
2786
+ {
2787
+ name: "tokenContract",
2788
+ internalType: "address",
2789
+ type: "address",
2790
+ indexed: true,
2791
+ },
2792
+ {
2793
+ name: "tokenId",
2794
+ internalType: "uint256",
2795
+ type: "uint256",
2796
+ indexed: true,
2797
+ },
2798
+ {
2799
+ name: "quantity",
2800
+ internalType: "uint256",
2801
+ type: "uint256",
2802
+ indexed: false,
2803
+ },
2804
+ {
2805
+ name: "comment",
2806
+ internalType: "string",
2807
+ type: "string",
2808
+ indexed: false,
2809
+ },
2810
+ ],
2811
+ name: "MintComment",
2812
+ },
2813
+ {
2814
+ type: "event",
2815
+ anonymous: false,
2816
+ inputs: [
2817
+ {
2818
+ name: "mediaContract",
2819
+ internalType: "address",
2820
+ type: "address",
2821
+ indexed: true,
2822
+ },
2823
+ {
2824
+ name: "tokenId",
2825
+ internalType: "uint256",
2826
+ type: "uint256",
2827
+ indexed: true,
2828
+ },
2829
+ {
2830
+ name: "salesConfig",
2831
+ internalType: "struct ZoraCreatorFixedPriceSaleStrategy.SalesConfig",
2832
+ type: "tuple",
2833
+ components: [
2834
+ { name: "saleStart", internalType: "uint64", type: "uint64" },
2835
+ { name: "saleEnd", internalType: "uint64", type: "uint64" },
2836
+ {
2837
+ name: "maxTokensPerAddress",
2838
+ internalType: "uint64",
2839
+ type: "uint64",
2840
+ },
2841
+ { name: "pricePerToken", internalType: "uint96", type: "uint96" },
2842
+ { name: "fundsRecipient", internalType: "address", type: "address" },
2843
+ ],
2844
+ indexed: false,
2845
+ },
2846
+ ],
2847
+ name: "SaleSet",
2848
+ },
2849
+ {
2850
+ stateMutability: "pure",
2851
+ type: "function",
2852
+ inputs: [],
2853
+ name: "contractName",
2854
+ outputs: [{ name: "", internalType: "string", type: "string" }],
2855
+ },
2856
+ {
2857
+ stateMutability: "pure",
2858
+ type: "function",
2859
+ inputs: [],
2860
+ name: "contractURI",
2861
+ outputs: [{ name: "", internalType: "string", type: "string" }],
2862
+ },
2863
+ {
2864
+ stateMutability: "pure",
2865
+ type: "function",
2866
+ inputs: [],
2867
+ name: "contractVersion",
2868
+ outputs: [{ name: "", internalType: "string", type: "string" }],
2869
+ },
2870
+ {
2871
+ stateMutability: "view",
2872
+ type: "function",
2873
+ inputs: [
2874
+ { name: "tokenContract", internalType: "address", type: "address" },
2875
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
2876
+ { name: "wallet", internalType: "address", type: "address" },
2877
+ ],
2878
+ name: "getMintedPerWallet",
2879
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
2880
+ },
2881
+ {
2882
+ stateMutability: "nonpayable",
2883
+ type: "function",
2884
+ inputs: [
2885
+ { name: "", internalType: "address", type: "address" },
2886
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
2887
+ { name: "quantity", internalType: "uint256", type: "uint256" },
2888
+ { name: "ethValueSent", internalType: "uint256", type: "uint256" },
2889
+ { name: "minterArguments", internalType: "bytes", type: "bytes" },
2890
+ ],
2891
+ name: "requestMint",
2892
+ outputs: [
2893
+ {
2894
+ name: "commands",
2895
+ internalType: "struct ICreatorCommands.CommandSet",
2896
+ type: "tuple",
2897
+ components: [
2898
+ {
2899
+ name: "commands",
2900
+ internalType: "struct ICreatorCommands.Command[]",
2901
+ type: "tuple[]",
2902
+ components: [
2903
+ {
2904
+ name: "method",
2905
+ internalType: "enum ICreatorCommands.CreatorActions",
2906
+ type: "uint8",
2907
+ },
2908
+ { name: "args", internalType: "bytes", type: "bytes" },
2909
+ ],
2910
+ },
2911
+ { name: "at", internalType: "uint256", type: "uint256" },
2912
+ ],
2913
+ },
2914
+ ],
2915
+ },
2916
+ {
2917
+ stateMutability: "nonpayable",
2918
+ type: "function",
2919
+ inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
2920
+ name: "resetSale",
2921
+ outputs: [],
2922
+ },
2923
+ {
2924
+ stateMutability: "view",
2925
+ type: "function",
2926
+ inputs: [
2927
+ { name: "tokenContract", internalType: "address", type: "address" },
2928
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
2929
+ ],
2930
+ name: "sale",
2931
+ outputs: [
2932
+ {
2933
+ name: "",
2934
+ internalType: "struct ZoraCreatorFixedPriceSaleStrategy.SalesConfig",
2935
+ type: "tuple",
2936
+ components: [
2937
+ { name: "saleStart", internalType: "uint64", type: "uint64" },
2938
+ { name: "saleEnd", internalType: "uint64", type: "uint64" },
2939
+ {
2940
+ name: "maxTokensPerAddress",
2941
+ internalType: "uint64",
2942
+ type: "uint64",
2943
+ },
2944
+ { name: "pricePerToken", internalType: "uint96", type: "uint96" },
2945
+ { name: "fundsRecipient", internalType: "address", type: "address" },
2946
+ ],
2947
+ },
2948
+ ],
2949
+ },
2950
+ {
2951
+ stateMutability: "nonpayable",
2952
+ type: "function",
2953
+ inputs: [
2954
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
2955
+ {
2956
+ name: "salesConfig",
2957
+ internalType: "struct ZoraCreatorFixedPriceSaleStrategy.SalesConfig",
2958
+ type: "tuple",
2959
+ components: [
2960
+ { name: "saleStart", internalType: "uint64", type: "uint64" },
2961
+ { name: "saleEnd", internalType: "uint64", type: "uint64" },
2962
+ {
2963
+ name: "maxTokensPerAddress",
2964
+ internalType: "uint64",
2965
+ type: "uint64",
2966
+ },
2967
+ { name: "pricePerToken", internalType: "uint96", type: "uint96" },
2968
+ { name: "fundsRecipient", internalType: "address", type: "address" },
2969
+ ],
2970
+ },
2971
+ ],
2972
+ name: "setSale",
2973
+ outputs: [],
2974
+ },
2975
+ {
2976
+ stateMutability: "pure",
2977
+ type: "function",
2978
+ inputs: [{ name: "interfaceId", internalType: "bytes4", type: "bytes4" }],
2979
+ name: "supportsInterface",
2980
+ outputs: [{ name: "", internalType: "bool", type: "bool" }],
2981
+ },
2982
+ ] as const;
2983
+
2984
+ /**
2985
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2986
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2987
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x3678862f04290E565cCA2EF163BAeb92Bb76790C)
2988
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2989
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2990
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2991
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2992
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
2993
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xA5E8d0d4FCed34E86AF6d4E16131C7210Ba8b4b7)
2994
+ */
2995
+ export const zoraCreatorFixedPriceSaleStrategyAddress = {
2996
+ 1: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
2997
+ 5: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
2998
+ 10: "0x3678862f04290E565cCA2EF163BAeb92Bb76790C",
2999
+ 420: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
3000
+ 424: "0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3",
3001
+ 999: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
3002
+ 8453: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
3003
+ 58008: "0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3",
3004
+ 84531: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
3005
+ 7777777: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
3006
+ 11155111: "0xA5E8d0d4FCed34E86AF6d4E16131C7210Ba8b4b7",
3007
+ 999999999: "0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A",
3008
+ } as const;
3009
+
3010
+ /**
3011
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
3012
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
3013
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x3678862f04290E565cCA2EF163BAeb92Bb76790C)
3014
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
3015
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
3016
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
3017
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
3018
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x04E2516A2c207E84a1839755675dfd8eF6302F0a)
3019
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0xA5E8d0d4FCed34E86AF6d4E16131C7210Ba8b4b7)
3020
+ */
3021
+ export const zoraCreatorFixedPriceSaleStrategyConfig = {
3022
+ address: zoraCreatorFixedPriceSaleStrategyAddress,
3023
+ abi: zoraCreatorFixedPriceSaleStrategyABI,
3024
+ } as const;
3025
+
3026
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
3027
+ // ZoraCreatorMerkleMinterStrategy
3028
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
3029
+
3030
+ /**
3031
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3032
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3033
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8)
3034
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3035
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3036
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3037
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3038
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3039
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x357D8108A77762B41Ea0C4D69fBb1eF4391251eC)
3040
+ */
3041
+ export const zoraCreatorMerkleMinterStrategyABI = [
3042
+ {
3043
+ type: "error",
3044
+ inputs: [
3045
+ { name: "mintTo", internalType: "address", type: "address" },
3046
+ { name: "merkleProof", internalType: "bytes32[]", type: "bytes32[]" },
3047
+ { name: "merkleRoot", internalType: "bytes32", type: "bytes32" },
3048
+ ],
3049
+ name: "InvalidMerkleProof",
3050
+ },
3051
+ { type: "error", inputs: [], name: "MerkleClaimsExceeded" },
3052
+ { type: "error", inputs: [], name: "SaleEnded" },
3053
+ { type: "error", inputs: [], name: "SaleHasNotStarted" },
3054
+ {
3055
+ type: "error",
3056
+ inputs: [
3057
+ { name: "user", internalType: "address", type: "address" },
3058
+ { name: "limit", internalType: "uint256", type: "uint256" },
3059
+ { name: "requestedAmount", internalType: "uint256", type: "uint256" },
3060
+ ],
3061
+ name: "UserExceedsMintLimit",
3062
+ },
3063
+ { type: "error", inputs: [], name: "WrongValueSent" },
3064
+ {
3065
+ type: "event",
3066
+ anonymous: false,
3067
+ inputs: [
3068
+ {
3069
+ name: "mediaContract",
3070
+ internalType: "address",
3071
+ type: "address",
3072
+ indexed: true,
3073
+ },
3074
+ {
3075
+ name: "tokenId",
3076
+ internalType: "uint256",
3077
+ type: "uint256",
3078
+ indexed: true,
3079
+ },
3080
+ {
3081
+ name: "merkleSaleSettings",
3082
+ internalType:
3083
+ "struct ZoraCreatorMerkleMinterStrategy.MerkleSaleSettings",
3084
+ type: "tuple",
3085
+ components: [
3086
+ { name: "presaleStart", internalType: "uint64", type: "uint64" },
3087
+ { name: "presaleEnd", internalType: "uint64", type: "uint64" },
3088
+ { name: "fundsRecipient", internalType: "address", type: "address" },
3089
+ { name: "merkleRoot", internalType: "bytes32", type: "bytes32" },
3090
+ ],
3091
+ indexed: false,
3092
+ },
3093
+ ],
3094
+ name: "SaleSet",
3095
+ },
3096
+ {
3097
+ stateMutability: "view",
3098
+ type: "function",
3099
+ inputs: [
3100
+ { name: "", internalType: "address", type: "address" },
3101
+ { name: "", internalType: "uint256", type: "uint256" },
3102
+ ],
3103
+ name: "allowedMerkles",
3104
+ outputs: [
3105
+ { name: "presaleStart", internalType: "uint64", type: "uint64" },
3106
+ { name: "presaleEnd", internalType: "uint64", type: "uint64" },
3107
+ { name: "fundsRecipient", internalType: "address", type: "address" },
3108
+ { name: "merkleRoot", internalType: "bytes32", type: "bytes32" },
3109
+ ],
3110
+ },
3111
+ {
3112
+ stateMutability: "pure",
3113
+ type: "function",
3114
+ inputs: [],
3115
+ name: "contractName",
3116
+ outputs: [{ name: "", internalType: "string", type: "string" }],
3117
+ },
3118
+ {
3119
+ stateMutability: "pure",
3120
+ type: "function",
3121
+ inputs: [],
3122
+ name: "contractURI",
3123
+ outputs: [{ name: "", internalType: "string", type: "string" }],
3124
+ },
3125
+ {
3126
+ stateMutability: "pure",
3127
+ type: "function",
3128
+ inputs: [],
3129
+ name: "contractVersion",
3130
+ outputs: [{ name: "", internalType: "string", type: "string" }],
3131
+ },
3132
+ {
3133
+ stateMutability: "view",
3134
+ type: "function",
3135
+ inputs: [
3136
+ { name: "tokenContract", internalType: "address", type: "address" },
3137
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
3138
+ { name: "wallet", internalType: "address", type: "address" },
3139
+ ],
3140
+ name: "getMintedPerWallet",
3141
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
3142
+ },
3143
+ {
3144
+ stateMutability: "nonpayable",
3145
+ type: "function",
3146
+ inputs: [
3147
+ { name: "", internalType: "address", type: "address" },
3148
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
3149
+ { name: "quantity", internalType: "uint256", type: "uint256" },
3150
+ { name: "ethValueSent", internalType: "uint256", type: "uint256" },
3151
+ { name: "minterArguments", internalType: "bytes", type: "bytes" },
3152
+ ],
3153
+ name: "requestMint",
3154
+ outputs: [
3155
+ {
3156
+ name: "commands",
3157
+ internalType: "struct ICreatorCommands.CommandSet",
3158
+ type: "tuple",
3159
+ components: [
3160
+ {
3161
+ name: "commands",
3162
+ internalType: "struct ICreatorCommands.Command[]",
3163
+ type: "tuple[]",
3164
+ components: [
3165
+ {
3166
+ name: "method",
3167
+ internalType: "enum ICreatorCommands.CreatorActions",
3168
+ type: "uint8",
3169
+ },
3170
+ { name: "args", internalType: "bytes", type: "bytes" },
3171
+ ],
3172
+ },
3173
+ { name: "at", internalType: "uint256", type: "uint256" },
3174
+ ],
3175
+ },
3176
+ ],
3177
+ },
3178
+ {
3179
+ stateMutability: "nonpayable",
3180
+ type: "function",
3181
+ inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
3182
+ name: "resetSale",
3183
+ outputs: [],
3184
+ },
3185
+ {
3186
+ stateMutability: "view",
3187
+ type: "function",
3188
+ inputs: [
3189
+ { name: "tokenContract", internalType: "address", type: "address" },
3190
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
3191
+ ],
3192
+ name: "sale",
3193
+ outputs: [
3194
+ {
3195
+ name: "",
3196
+ internalType:
3197
+ "struct ZoraCreatorMerkleMinterStrategy.MerkleSaleSettings",
3198
+ type: "tuple",
3199
+ components: [
3200
+ { name: "presaleStart", internalType: "uint64", type: "uint64" },
3201
+ { name: "presaleEnd", internalType: "uint64", type: "uint64" },
3202
+ { name: "fundsRecipient", internalType: "address", type: "address" },
3203
+ { name: "merkleRoot", internalType: "bytes32", type: "bytes32" },
3204
+ ],
3205
+ },
3206
+ ],
3207
+ },
3208
+ {
3209
+ stateMutability: "nonpayable",
3210
+ type: "function",
3211
+ inputs: [
3212
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
3213
+ {
3214
+ name: "merkleSaleSettings",
3215
+ internalType:
3216
+ "struct ZoraCreatorMerkleMinterStrategy.MerkleSaleSettings",
3217
+ type: "tuple",
3218
+ components: [
3219
+ { name: "presaleStart", internalType: "uint64", type: "uint64" },
3220
+ { name: "presaleEnd", internalType: "uint64", type: "uint64" },
3221
+ { name: "fundsRecipient", internalType: "address", type: "address" },
3222
+ { name: "merkleRoot", internalType: "bytes32", type: "bytes32" },
3223
+ ],
3224
+ },
3225
+ ],
3226
+ name: "setSale",
3227
+ outputs: [],
3228
+ },
3229
+ {
3230
+ stateMutability: "pure",
3231
+ type: "function",
3232
+ inputs: [{ name: "interfaceId", internalType: "bytes4", type: "bytes4" }],
3233
+ name: "supportsInterface",
3234
+ outputs: [{ name: "", internalType: "bool", type: "bool" }],
3235
+ },
3236
+ ] as const;
3237
+
3238
+ /**
3239
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3240
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3241
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8)
3242
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3243
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3244
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3245
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3246
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3247
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x357D8108A77762B41Ea0C4D69fBb1eF4391251eC)
3248
+ */
3249
+ export const zoraCreatorMerkleMinterStrategyAddress = {
3250
+ 1: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
3251
+ 5: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
3252
+ 10: "0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8",
3253
+ 420: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
3254
+ 424: "0x314E552b55DFbDfD4d76623E1D45E5056723998B",
3255
+ 999: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
3256
+ 8453: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
3257
+ 58008: "0x314E552b55DFbDfD4d76623E1D45E5056723998B",
3258
+ 84531: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
3259
+ 7777777: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
3260
+ 11155111: "0x357D8108A77762B41Ea0C4D69fBb1eF4391251eC",
3261
+ 999999999: "0x5e5fD4b758076BAD940db0284b711A67E8a3B88c",
3262
+ } as const;
3263
+
3264
+ /**
3265
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3266
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3267
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8)
3268
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3269
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3270
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3271
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3272
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7)
3273
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x357D8108A77762B41Ea0C4D69fBb1eF4391251eC)
3274
+ */
3275
+ export const zoraCreatorMerkleMinterStrategyConfig = {
3276
+ address: zoraCreatorMerkleMinterStrategyAddress,
3277
+ abi: zoraCreatorMerkleMinterStrategyABI,
3278
+ } as const;
3279
+
3280
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
3281
+ // ZoraCreatorRedeemMinterFactory
3282
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
3283
+
3284
+ /**
3285
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
3286
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
3287
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2)
3288
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
3289
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
3290
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
3291
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
3292
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
3293
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x66e7bE0b5A7dD9eb7999AAbE7AbdFa40381b6d5E)
3294
+ */
3295
+ export const zoraCreatorRedeemMinterFactoryABI = [
3296
+ { stateMutability: "nonpayable", type: "constructor", inputs: [] },
3297
+ { type: "error", inputs: [], name: "CallerNotZoraCreator1155" },
3298
+ { type: "error", inputs: [], name: "MinterContractAlreadyExists" },
3299
+ { type: "error", inputs: [], name: "MinterContractDoesNotExist" },
3300
+ {
3301
+ type: "event",
3302
+ anonymous: false,
3303
+ inputs: [
3304
+ {
3305
+ name: "creatorContract",
3306
+ internalType: "address",
3307
+ type: "address",
3308
+ indexed: true,
3309
+ },
3310
+ {
3311
+ name: "minterContract",
3312
+ internalType: "address",
3313
+ type: "address",
3314
+ indexed: true,
3315
+ },
3316
+ ],
3317
+ name: "RedeemMinterDeployed",
3318
+ },
3319
+ {
3320
+ stateMutability: "view",
3321
+ type: "function",
3322
+ inputs: [],
3323
+ name: "CONTRACT_BASE_ID",
3324
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }],
3325
+ },
3326
+ {
3327
+ stateMutability: "pure",
3328
+ type: "function",
3329
+ inputs: [],
3330
+ name: "contractName",
3331
+ outputs: [{ name: "", internalType: "string", type: "string" }],
3332
+ },
3333
+ {
3334
+ stateMutability: "pure",
3335
+ type: "function",
3336
+ inputs: [],
3337
+ name: "contractURI",
3338
+ outputs: [{ name: "", internalType: "string", type: "string" }],
3339
+ },
3340
+ {
3341
+ stateMutability: "pure",
3342
+ type: "function",
3343
+ inputs: [],
3344
+ name: "contractVersion",
3345
+ outputs: [{ name: "", internalType: "string", type: "string" }],
3346
+ },
3347
+ {
3348
+ stateMutability: "nonpayable",
3349
+ type: "function",
3350
+ inputs: [],
3351
+ name: "createMinterIfNoneExists",
3352
+ outputs: [],
3353
+ },
3354
+ {
3355
+ stateMutability: "view",
3356
+ type: "function",
3357
+ inputs: [
3358
+ { name: "_creatorContract", internalType: "address", type: "address" },
3359
+ ],
3360
+ name: "doesRedeemMinterExistForCreatorContract",
3361
+ outputs: [{ name: "", internalType: "bool", type: "bool" }],
3362
+ },
3363
+ {
3364
+ stateMutability: "view",
3365
+ type: "function",
3366
+ inputs: [
3367
+ { name: "_creatorContract", internalType: "address", type: "address" },
3368
+ ],
3369
+ name: "getDeployedRedeemMinterForCreatorContract",
3370
+ outputs: [{ name: "", internalType: "address", type: "address" }],
3371
+ },
3372
+ {
3373
+ stateMutability: "view",
3374
+ type: "function",
3375
+ inputs: [
3376
+ { name: "_creatorContract", internalType: "address", type: "address" },
3377
+ ],
3378
+ name: "predictMinterAddress",
3379
+ outputs: [{ name: "", internalType: "address", type: "address" }],
3380
+ },
3381
+ {
3382
+ stateMutability: "nonpayable",
3383
+ type: "function",
3384
+ inputs: [
3385
+ { name: "sender", internalType: "address", type: "address" },
3386
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
3387
+ { name: "quantity", internalType: "uint256", type: "uint256" },
3388
+ { name: "ethValueSent", internalType: "uint256", type: "uint256" },
3389
+ { name: "minterArguments", internalType: "bytes", type: "bytes" },
3390
+ ],
3391
+ name: "requestMint",
3392
+ outputs: [
3393
+ {
3394
+ name: "commands",
3395
+ internalType: "struct ICreatorCommands.CommandSet",
3396
+ type: "tuple",
3397
+ components: [
3398
+ {
3399
+ name: "commands",
3400
+ internalType: "struct ICreatorCommands.Command[]",
3401
+ type: "tuple[]",
3402
+ components: [
3403
+ {
3404
+ name: "method",
3405
+ internalType: "enum ICreatorCommands.CreatorActions",
3406
+ type: "uint8",
3407
+ },
3408
+ { name: "args", internalType: "bytes", type: "bytes" },
3409
+ ],
3410
+ },
3411
+ { name: "at", internalType: "uint256", type: "uint256" },
3412
+ ],
3413
+ },
3414
+ ],
3415
+ },
3416
+ {
3417
+ stateMutability: "pure",
3418
+ type: "function",
3419
+ inputs: [{ name: "interfaceId", internalType: "bytes4", type: "bytes4" }],
3420
+ name: "supportsInterface",
3421
+ outputs: [{ name: "", internalType: "bool", type: "bool" }],
3422
+ },
3423
+ {
3424
+ stateMutability: "view",
3425
+ type: "function",
3426
+ inputs: [],
3427
+ name: "zoraRedeemMinterImplementation",
3428
+ outputs: [{ name: "", internalType: "address", type: "address" }],
3429
+ },
3430
+ ] as const;
3431
+
3432
+ /**
3433
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
3434
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
3435
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2)
3436
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
3437
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
3438
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
3439
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
3440
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
3441
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x66e7bE0b5A7dD9eb7999AAbE7AbdFa40381b6d5E)
3442
+ */
3443
+ export const zoraCreatorRedeemMinterFactoryAddress = {
3444
+ 1: "0x78964965cF77850224513a367f899435C5B69174",
3445
+ 5: "0x78964965cF77850224513a367f899435C5B69174",
3446
+ 10: "0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2",
3447
+ 420: "0x78964965cF77850224513a367f899435C5B69174",
3448
+ 424: "0xC6899816663891D7493939d74d83cb7f2BBcBB16",
3449
+ 999: "0x78964965cF77850224513a367f899435C5B69174",
3450
+ 8453: "0x78964965cF77850224513a367f899435C5B69174",
3451
+ 58008: "0xC6899816663891D7493939d74d83cb7f2BBcBB16",
3452
+ 84531: "0x78964965cF77850224513a367f899435C5B69174",
3453
+ 7777777: "0x78964965cF77850224513a367f899435C5B69174",
3454
+ 11155111: "0x66e7bE0b5A7dD9eb7999AAbE7AbdFa40381b6d5E",
3455
+ 999999999: "0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6",
3456
+ } as const;
3457
+
3458
+ /**
3459
+ * - [__View Contract on Ethereum Etherscan__](https://etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
3460
+ * - [__View Contract on Goerli Etherscan__](https://goerli.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
3461
+ * - [__View Contract on Op Mainnet Optimism Explorer__](https://explorer.optimism.io/address/0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2)
3462
+ * - [__View Contract on Optimism Goerli Etherscan__](https://goerli-optimism.etherscan.io/address/0x78964965cF77850224513a367f899435C5B69174)
3463
+ * - [__View Contract on Zora Goerli Testnet Explorer__](https://testnet.explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
3464
+ * - [__View Contract on Base Basescan__](https://basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
3465
+ * - [__View Contract on Base Goerli Basescan__](https://goerli.basescan.org/address/0x78964965cF77850224513a367f899435C5B69174)
3466
+ * - [__View Contract on Zora Explorer__](https://explorer.zora.energy/address/0x78964965cF77850224513a367f899435C5B69174)
3467
+ * - [__View Contract on Sepolia Etherscan__](https://sepolia.etherscan.io/address/0x66e7bE0b5A7dD9eb7999AAbE7AbdFa40381b6d5E)
3468
+ */
3469
+ export const zoraCreatorRedeemMinterFactoryConfig = {
3470
+ address: zoraCreatorRedeemMinterFactoryAddress,
3471
+ abi: zoraCreatorRedeemMinterFactoryABI,
3472
+ } as const;