@zoralabs/protocol-deployments 0.1.2 → 0.1.3-MINT.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -21,6 +21,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
21
21
  var src_exports = {};
22
22
  __export(src_exports, {
23
23
  contracts1155: () => __exports,
24
+ mints: () => mints_exports,
24
25
  zoraCreator1155FactoryImplABI: () => zoraCreator1155FactoryImplABI,
25
26
  zoraCreator1155FactoryImplAddress: () => zoraCreator1155FactoryImplAddress,
26
27
  zoraCreator1155FactoryImplConfig: () => zoraCreator1155FactoryImplConfig,
@@ -36,7 +37,10 @@ __export(src_exports, {
36
37
  zoraCreatorMerkleMinterStrategyConfig: () => zoraCreatorMerkleMinterStrategyConfig,
37
38
  zoraCreatorRedeemMinterFactoryABI: () => zoraCreatorRedeemMinterFactoryABI,
38
39
  zoraCreatorRedeemMinterFactoryAddress: () => zoraCreatorRedeemMinterFactoryAddress,
39
- zoraCreatorRedeemMinterFactoryConfig: () => zoraCreatorRedeemMinterFactoryConfig
40
+ zoraCreatorRedeemMinterFactoryConfig: () => zoraCreatorRedeemMinterFactoryConfig,
41
+ zoraMintsImplABI: () => zoraMintsImplABI,
42
+ zoraMintsImplAddress: () => zoraMintsImplAddress,
43
+ zoraMintsImplConfig: () => zoraMintsImplConfig
40
44
  });
41
45
  module.exports = __toCommonJS(src_exports);
42
46
 
@@ -538,7 +542,8 @@ var zoraCreator1155ImplABI = [
538
542
  inputs: [
539
543
  { name: "_mintFeeRecipient", internalType: "address", type: "address" },
540
544
  { name: "_upgradeGate", internalType: "address", type: "address" },
541
- { name: "_protocolRewards", internalType: "address", type: "address" }
545
+ { name: "_protocolRewards", internalType: "address", type: "address" },
546
+ { name: "_mints", internalType: "address", type: "address" }
542
547
  ]
543
548
  },
544
549
  { stateMutability: "payable", type: "receive" },
@@ -687,12 +692,12 @@ var zoraCreator1155ImplABI = [
687
692
  {
688
693
  stateMutability: "pure",
689
694
  type: "function",
690
- inputs: [{ name: "numTokens", internalType: "uint256", type: "uint256" }],
695
+ inputs: [{ name: "totalReward", internalType: "uint256", type: "uint256" }],
691
696
  name: "computeFreeMintRewards",
692
697
  outputs: [
693
698
  {
694
699
  name: "",
695
- internalType: "struct RewardsSettings",
700
+ internalType: "struct IRewardSplits.RewardsSettings",
696
701
  type: "tuple",
697
702
  components: [
698
703
  { name: "creatorReward", internalType: "uint256", type: "uint256" },
@@ -719,12 +724,12 @@ var zoraCreator1155ImplABI = [
719
724
  {
720
725
  stateMutability: "pure",
721
726
  type: "function",
722
- inputs: [{ name: "numTokens", internalType: "uint256", type: "uint256" }],
727
+ inputs: [{ name: "totalReward", internalType: "uint256", type: "uint256" }],
723
728
  name: "computePaidMintRewards",
724
729
  outputs: [
725
730
  {
726
731
  name: "",
727
- internalType: "struct RewardsSettings",
732
+ internalType: "struct IRewardSplits.RewardsSettings",
728
733
  type: "tuple",
729
734
  components: [
730
735
  { name: "creatorReward", internalType: "uint256", type: "uint256" },
@@ -751,7 +756,20 @@ var zoraCreator1155ImplABI = [
751
756
  {
752
757
  stateMutability: "pure",
753
758
  type: "function",
754
- inputs: [{ name: "numTokens", internalType: "uint256", type: "uint256" }],
759
+ inputs: [
760
+ { name: "totalReward", internalType: "uint256", type: "uint256" },
761
+ { name: "rewardPct", internalType: "uint256", type: "uint256" }
762
+ ],
763
+ name: "computeRewardsPct",
764
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
765
+ },
766
+ {
767
+ stateMutability: "pure",
768
+ type: "function",
769
+ inputs: [
770
+ { name: "mintPrice", internalType: "uint256", type: "uint256" },
771
+ { name: "quantity", internalType: "uint256", type: "uint256" }
772
+ ],
755
773
  name: "computeTotalReward",
756
774
  outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
757
775
  },
@@ -989,12 +1007,32 @@ var zoraCreator1155ImplABI = [
989
1007
  outputs: []
990
1008
  },
991
1009
  {
992
- stateMutability: "pure",
1010
+ stateMutability: "view",
993
1011
  type: "function",
994
1012
  inputs: [],
995
1013
  name: "mintFee",
996
1014
  outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
997
1015
  },
1016
+ {
1017
+ stateMutability: "payable",
1018
+ type: "function",
1019
+ inputs: [
1020
+ { name: "mintTokenIds", internalType: "uint256[]", type: "uint256[]" },
1021
+ { name: "quantities", internalType: "uint256[]", type: "uint256[]" },
1022
+ { name: "minter", internalType: "contract IMinter1155", type: "address" },
1023
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
1024
+ {
1025
+ name: "rewardsRecipients",
1026
+ internalType: "address[]",
1027
+ type: "address[]"
1028
+ },
1029
+ { name: "minterArguments", internalType: "bytes", type: "bytes" }
1030
+ ],
1031
+ name: "mintWithMints",
1032
+ outputs: [
1033
+ { name: "quantityMinted", internalType: "uint256", type: "uint256" }
1034
+ ]
1035
+ },
998
1036
  {
999
1037
  stateMutability: "payable",
1000
1038
  type: "function",
@@ -1029,6 +1067,19 @@ var zoraCreator1155ImplABI = [
1029
1067
  name: "nextTokenId",
1030
1068
  outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
1031
1069
  },
1070
+ {
1071
+ stateMutability: "pure",
1072
+ type: "function",
1073
+ inputs: [
1074
+ { name: "", internalType: "address", type: "address" },
1075
+ { name: "", internalType: "address", type: "address" },
1076
+ { name: "", internalType: "uint256", type: "uint256" },
1077
+ { name: "", internalType: "uint256", type: "uint256" },
1078
+ { name: "", internalType: "bytes", type: "bytes" }
1079
+ ],
1080
+ name: "onERC1155Received",
1081
+ outputs: [{ name: "", internalType: "bytes4", type: "bytes4" }]
1082
+ },
1032
1083
  {
1033
1084
  stateMutability: "view",
1034
1085
  type: "function",
@@ -1852,17 +1903,8 @@ var zoraCreator1155ImplABI = [
1852
1903
  name: "InvalidMerkleProof"
1853
1904
  },
1854
1905
  { type: "error", inputs: [], name: "InvalidMintSchedule" },
1855
- {
1856
- type: "error",
1857
- inputs: [
1858
- {
1859
- name: "recoverError",
1860
- internalType: "enum ECDSAUpgradeable.RecoverError",
1861
- type: "uint8"
1862
- }
1863
- ],
1864
- name: "InvalidSignature"
1865
- },
1906
+ { type: "error", inputs: [], name: "InvalidMintSchedule" },
1907
+ { type: "error", inputs: [], name: "InvalidSignature" },
1866
1908
  { type: "error", inputs: [], name: "InvalidSignatureVersion" },
1867
1909
  {
1868
1910
  type: "error",
@@ -1871,6 +1913,7 @@ var zoraCreator1155ImplABI = [
1871
1913
  },
1872
1914
  { type: "error", inputs: [], name: "MintNotYetStarted" },
1873
1915
  { type: "error", inputs: [], name: "Mint_InsolventSaleTransfer" },
1916
+ { type: "error", inputs: [], name: "Mint_InvalidMintArrayLength" },
1874
1917
  { type: "error", inputs: [], name: "Mint_TokenIDMintNotAllowed" },
1875
1918
  { type: "error", inputs: [], name: "Mint_UnknownCommand" },
1876
1919
  { type: "error", inputs: [], name: "Mint_ValueTransferFail" },
@@ -2192,7 +2235,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2192
2235
  { name: "quantityToMint", internalType: "uint256", type: "uint256" },
2193
2236
  {
2194
2237
  name: "mintArguments",
2195
- internalType: "struct IZoraCreator1155PremintExecutor.MintArguments",
2238
+ internalType: "struct MintArguments",
2196
2239
  type: "tuple",
2197
2240
  components: [
2198
2241
  { name: "mintRecipient", internalType: "address", type: "address" },
@@ -2209,7 +2252,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2209
2252
  outputs: [
2210
2253
  {
2211
2254
  name: "result",
2212
- internalType: "struct IZoraCreator1155PremintExecutor.PremintResult",
2255
+ internalType: "struct PremintResult",
2213
2256
  type: "tuple",
2214
2257
  components: [
2215
2258
  { name: "contractAddress", internalType: "address", type: "address" },
@@ -2280,7 +2323,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2280
2323
  { name: "quantityToMint", internalType: "uint256", type: "uint256" },
2281
2324
  {
2282
2325
  name: "mintArguments",
2283
- internalType: "struct IZoraCreator1155PremintExecutor.MintArguments",
2326
+ internalType: "struct MintArguments",
2284
2327
  type: "tuple",
2285
2328
  components: [
2286
2329
  { name: "mintRecipient", internalType: "address", type: "address" },
@@ -2297,7 +2340,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2297
2340
  outputs: [
2298
2341
  {
2299
2342
  name: "result",
2300
- internalType: "struct IZoraCreator1155PremintExecutor.PremintResult",
2343
+ internalType: "struct PremintResult",
2301
2344
  type: "tuple",
2302
2345
  components: [
2303
2346
  { name: "contractAddress", internalType: "address", type: "address" },
@@ -2368,7 +2411,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2368
2411
  { name: "quantityToMint", internalType: "uint256", type: "uint256" },
2369
2412
  {
2370
2413
  name: "mintArguments",
2371
- internalType: "struct IZoraCreator1155PremintExecutor.MintArguments",
2414
+ internalType: "struct MintArguments",
2372
2415
  type: "tuple",
2373
2416
  components: [
2374
2417
  { name: "mintRecipient", internalType: "address", type: "address" },
@@ -2386,7 +2429,78 @@ var zoraCreator1155PremintExecutorImplABI = [
2386
2429
  outputs: [
2387
2430
  {
2388
2431
  name: "result",
2389
- internalType: "struct IZoraCreator1155PremintExecutor.PremintResult",
2432
+ internalType: "struct PremintResult",
2433
+ type: "tuple",
2434
+ components: [
2435
+ { name: "contractAddress", internalType: "address", type: "address" },
2436
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
2437
+ { name: "createdNewContract", internalType: "bool", type: "bool" }
2438
+ ]
2439
+ }
2440
+ ]
2441
+ },
2442
+ {
2443
+ stateMutability: "payable",
2444
+ type: "function",
2445
+ inputs: [
2446
+ { name: "mintTokenIds", internalType: "uint256[]", type: "uint256[]" },
2447
+ {
2448
+ name: "mintTokenIdQuantities",
2449
+ internalType: "uint256[]",
2450
+ type: "uint256[]"
2451
+ },
2452
+ {
2453
+ name: "contractConfig",
2454
+ internalType: "struct ContractCreationConfig",
2455
+ type: "tuple",
2456
+ components: [
2457
+ { name: "contractAdmin", internalType: "address", type: "address" },
2458
+ { name: "contractURI", internalType: "string", type: "string" },
2459
+ { name: "contractName", internalType: "string", type: "string" }
2460
+ ]
2461
+ },
2462
+ {
2463
+ name: "encodedPremintConfig",
2464
+ internalType: "struct EncodedPremintConfig",
2465
+ type: "tuple",
2466
+ components: [
2467
+ { name: "premintConfig", internalType: "bytes", type: "bytes" },
2468
+ {
2469
+ name: "premintConfigVersion",
2470
+ internalType: "bytes32",
2471
+ type: "bytes32"
2472
+ },
2473
+ { name: "uid", internalType: "uint32", type: "uint32" },
2474
+ {
2475
+ name: "fixedPriceMinter",
2476
+ internalType: "address",
2477
+ type: "address"
2478
+ }
2479
+ ]
2480
+ },
2481
+ { name: "signature", internalType: "bytes", type: "bytes" },
2482
+ {
2483
+ name: "mintArguments",
2484
+ internalType: "struct MintArguments",
2485
+ type: "tuple",
2486
+ components: [
2487
+ { name: "mintRecipient", internalType: "address", type: "address" },
2488
+ { name: "mintComment", internalType: "string", type: "string" },
2489
+ {
2490
+ name: "mintRewardsRecipients",
2491
+ internalType: "address[]",
2492
+ type: "address[]"
2493
+ }
2494
+ ]
2495
+ },
2496
+ { name: "minter", internalType: "address", type: "address" },
2497
+ { name: "signerContract", internalType: "address", type: "address" }
2498
+ ],
2499
+ name: "premintWithMints",
2500
+ outputs: [
2501
+ {
2502
+ name: "result",
2503
+ internalType: "struct PremintResult",
2390
2504
  type: "tuple",
2391
2505
  components: [
2392
2506
  { name: "contractAddress", internalType: "address", type: "address" },
@@ -2784,17 +2898,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2784
2898
  name: "InvalidMerkleProof"
2785
2899
  },
2786
2900
  { type: "error", inputs: [], name: "InvalidMintSchedule" },
2787
- {
2788
- type: "error",
2789
- inputs: [
2790
- {
2791
- name: "recoverError",
2792
- internalType: "enum ECDSAUpgradeable.RecoverError",
2793
- type: "uint8"
2794
- }
2795
- ],
2796
- name: "InvalidSignature"
2797
- },
2901
+ { type: "error", inputs: [], name: "InvalidSignature" },
2798
2902
  { type: "error", inputs: [], name: "InvalidSignatureVersion" },
2799
2903
  {
2800
2904
  type: "error",
@@ -2803,6 +2907,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2803
2907
  },
2804
2908
  { type: "error", inputs: [], name: "MintNotYetStarted" },
2805
2909
  { type: "error", inputs: [], name: "Mint_InsolventSaleTransfer" },
2910
+ { type: "error", inputs: [], name: "Mint_InvalidMintArrayLength" },
2806
2911
  { type: "error", inputs: [], name: "Mint_TokenIDMintNotAllowed" },
2807
2912
  { type: "error", inputs: [], name: "Mint_UnknownCommand" },
2808
2913
  { type: "error", inputs: [], name: "Mint_ValueTransferFail" },
@@ -3524,104 +3629,898 @@ var zoraCreatorRedeemMinterFactoryConfig = {
3524
3629
  address: zoraCreatorRedeemMinterFactoryAddress,
3525
3630
  abi: zoraCreatorRedeemMinterFactoryABI
3526
3631
  };
3527
-
3528
- // src/generated/1155.ts
3529
- var __exports = {};
3530
- __export(__exports, {
3531
- addresses: () => addresses,
3532
- chainConfigs: () => chainConfigs
3533
- });
3534
- var chainConfigs = {
3535
- "1": {
3536
- "FACTORY_OWNER": "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
3537
- "MINT_FEE_RECIPIENT": "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0",
3538
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3539
- },
3540
- "10": {
3541
- "FACTORY_OWNER": "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
3542
- "MINT_FEE_RECIPIENT": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c",
3543
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3544
- },
3545
- "999": {
3546
- "FACTORY_OWNER": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
3547
- "MINT_FEE_RECIPIENT": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
3548
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3549
- },
3550
- "8453": {
3551
- "FACTORY_OWNER": "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
3552
- "MINT_FEE_RECIPIENT": "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6",
3553
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3554
- },
3555
- "42161": {
3556
- "FACTORY_OWNER": "0xF7DafC329C93D84267c0E7B146C0bD68807f6A03",
3557
- "MINT_FEE_RECIPIENT": "0x10Fb02A68C3EA8bD439A6f515dcE07CC049f5c94",
3558
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3559
- },
3560
- "81457": {
3561
- "FACTORY_OWNER": "0x5b297B1b87f8De28C9fA7AFe183Db9F9e6295523",
3562
- "MINT_FEE_RECIPIENT": "0x72E6394056f9152D3a41e5A25De383c191D16134",
3563
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3564
- },
3565
- "421614": {
3566
- "FACTORY_OWNER": "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
3567
- "MINT_FEE_RECIPIENT": "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
3568
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3569
- },
3570
- "7777777": {
3571
- "FACTORY_OWNER": "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
3572
- "MINT_FEE_RECIPIENT": "0xEcfc2ee50409E459c554a2b0376F882Ce916D853",
3573
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3632
+ var zoraMintsImplABI = [
3633
+ {
3634
+ stateMutability: "nonpayable",
3635
+ type: "constructor",
3636
+ inputs: [
3637
+ {
3638
+ name: "_premintExecutor",
3639
+ internalType: "contract IPremintWithMints",
3640
+ type: "address"
3641
+ }
3642
+ ]
3574
3643
  },
3575
- "11155111": {
3576
- "FACTORY_OWNER": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
3577
- "MINT_FEE_RECIPIENT": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
3578
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3644
+ {
3645
+ stateMutability: "nonpayable",
3646
+ type: "function",
3647
+ inputs: [],
3648
+ name: "acceptOwnership",
3649
+ outputs: []
3579
3650
  },
3580
- "168587773": {
3581
- "FACTORY_OWNER": "0x8cF22F26d528B09b3cc54b7ff956630Bf741b773",
3582
- "MINT_FEE_RECIPIENT": "0x8cF22F26d528B09b3cc54b7ff956630Bf741b773",
3583
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3651
+ {
3652
+ stateMutability: "view",
3653
+ type: "function",
3654
+ inputs: [
3655
+ { name: "account", internalType: "address", type: "address" },
3656
+ { name: "id", internalType: "uint256", type: "uint256" }
3657
+ ],
3658
+ name: "balanceOf",
3659
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
3584
3660
  },
3585
- "999999999": {
3586
- "FACTORY_OWNER": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
3587
- "MINT_FEE_RECIPIENT": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
3588
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3589
- }
3590
- };
3591
- var addresses = {
3592
- "1": {
3593
- "CONTRACT_1155_IMPL": "0x32006e298C19818CD5e8000E26439691f0ac2128",
3594
- "CONTRACT_1155_IMPL_VERSION": "2.7.0",
3595
- "FACTORY_IMPL": "0xD662FB0fB00261C039441EF49Dbab154d7c533bD",
3596
- "FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
3597
- "FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
3598
- "MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
3599
- "PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
3600
- "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
3601
- "REDEEM_MINTER_FACTORY": "0x78964965cF77850224513a367f899435C5B69174",
3602
- "UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3603
- "timestamp": 1704400466
3661
+ {
3662
+ stateMutability: "view",
3663
+ type: "function",
3664
+ inputs: [
3665
+ { name: "accounts", internalType: "address[]", type: "address[]" },
3666
+ { name: "ids", internalType: "uint256[]", type: "uint256[]" }
3667
+ ],
3668
+ name: "balanceOfBatch",
3669
+ outputs: [{ name: "", internalType: "uint256[]", type: "uint256[]" }]
3604
3670
  },
3605
- "10": {
3606
- "CONTRACT_1155_IMPL": "0xECfbCf718E17B6e76A675dDB936a9249C69DD2aA",
3607
- "CONTRACT_1155_IMPL_VERSION": "2.7.0",
3608
- "FACTORY_IMPL": "0x32006e298C19818CD5e8000E26439691f0ac2128",
3609
- "FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
3610
- "FIXED_PRICE_SALE_STRATEGY": "0x3678862f04290E565cCA2EF163BAeb92Bb76790C",
3611
- "MERKLE_MINT_SALE_STRATEGY": "0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8",
3612
- "PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
3613
- "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
3614
- "REDEEM_MINTER_FACTORY": "0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2",
3615
- "UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3616
- "timestamp": 1704396387
3671
+ {
3672
+ stateMutability: "payable",
3673
+ type: "function",
3674
+ inputs: [
3675
+ { name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
3676
+ { name: "quantities", internalType: "uint256[]", type: "uint256[]" },
3677
+ {
3678
+ name: "zoraCreator1155Contract",
3679
+ internalType: "contract IMintWithMints",
3680
+ type: "address"
3681
+ },
3682
+ { name: "minter", internalType: "contract IMinter1155", type: "address" },
3683
+ {
3684
+ name: "zoraCreator1155TokenId",
3685
+ internalType: "uint256",
3686
+ type: "uint256"
3687
+ },
3688
+ {
3689
+ name: "rewardsRecipients",
3690
+ internalType: "address[]",
3691
+ type: "address[]"
3692
+ },
3693
+ { name: "minterArguments", internalType: "bytes", type: "bytes" }
3694
+ ],
3695
+ name: "collect",
3696
+ outputs: []
3617
3697
  },
3618
- "999": {
3619
- "CONTRACT_1155_IMPL": "0x2022AdEF470DA3543a19fac8c9be80618112704D",
3620
- "CONTRACT_1155_IMPL_VERSION": "2.7.0",
3621
- "FACTORY_IMPL": "0x4b0365Ec68C2D92Af2Fa56f120095F0859142Eff",
3622
- "FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
3623
- "FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
3624
- "MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
3698
+ {
3699
+ stateMutability: "payable",
3700
+ type: "function",
3701
+ inputs: [
3702
+ { name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
3703
+ { name: "quantities", internalType: "uint256[]", type: "uint256[]" },
3704
+ {
3705
+ name: "contractConfig",
3706
+ internalType: "struct ContractCreationConfig",
3707
+ type: "tuple",
3708
+ components: [
3709
+ { name: "contractAdmin", internalType: "address", type: "address" },
3710
+ { name: "contractURI", internalType: "string", type: "string" },
3711
+ { name: "contractName", internalType: "string", type: "string" }
3712
+ ]
3713
+ },
3714
+ {
3715
+ name: "premintConfig",
3716
+ internalType: "struct PremintConfigV2",
3717
+ type: "tuple",
3718
+ components: [
3719
+ {
3720
+ name: "tokenConfig",
3721
+ internalType: "struct TokenCreationConfigV2",
3722
+ type: "tuple",
3723
+ components: [
3724
+ { name: "tokenURI", internalType: "string", type: "string" },
3725
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
3726
+ {
3727
+ name: "maxTokensPerAddress",
3728
+ internalType: "uint64",
3729
+ type: "uint64"
3730
+ },
3731
+ { name: "pricePerToken", internalType: "uint96", type: "uint96" },
3732
+ { name: "mintStart", internalType: "uint64", type: "uint64" },
3733
+ { name: "mintDuration", internalType: "uint64", type: "uint64" },
3734
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
3735
+ {
3736
+ name: "payoutRecipient",
3737
+ internalType: "address",
3738
+ type: "address"
3739
+ },
3740
+ {
3741
+ name: "fixedPriceMinter",
3742
+ internalType: "address",
3743
+ type: "address"
3744
+ },
3745
+ {
3746
+ name: "createReferral",
3747
+ internalType: "address",
3748
+ type: "address"
3749
+ }
3750
+ ]
3751
+ },
3752
+ { name: "uid", internalType: "uint32", type: "uint32" },
3753
+ { name: "version", internalType: "uint32", type: "uint32" },
3754
+ { name: "deleted", internalType: "bool", type: "bool" }
3755
+ ]
3756
+ },
3757
+ { name: "signature", internalType: "bytes", type: "bytes" },
3758
+ {
3759
+ name: "mintArguments",
3760
+ internalType: "struct MintArguments",
3761
+ type: "tuple",
3762
+ components: [
3763
+ { name: "mintRecipient", internalType: "address", type: "address" },
3764
+ { name: "mintComment", internalType: "string", type: "string" },
3765
+ {
3766
+ name: "mintRewardsRecipients",
3767
+ internalType: "address[]",
3768
+ type: "address[]"
3769
+ }
3770
+ ]
3771
+ },
3772
+ { name: "signerContract", internalType: "address", type: "address" }
3773
+ ],
3774
+ name: "collectPremintV2",
3775
+ outputs: [
3776
+ {
3777
+ name: "result",
3778
+ internalType: "struct PremintResult",
3779
+ type: "tuple",
3780
+ components: [
3781
+ { name: "contractAddress", internalType: "address", type: "address" },
3782
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
3783
+ { name: "createdNewContract", internalType: "bool", type: "bool" }
3784
+ ]
3785
+ }
3786
+ ]
3787
+ },
3788
+ {
3789
+ stateMutability: "pure",
3790
+ type: "function",
3791
+ inputs: [],
3792
+ name: "contractVersion",
3793
+ outputs: [{ name: "", internalType: "string", type: "string" }]
3794
+ },
3795
+ {
3796
+ stateMutability: "nonpayable",
3797
+ type: "function",
3798
+ inputs: [
3799
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
3800
+ { name: "pricePerToken", internalType: "uint256", type: "uint256" },
3801
+ { name: "defaultMintable", internalType: "bool", type: "bool" }
3802
+ ],
3803
+ name: "createEthToken",
3804
+ outputs: []
3805
+ },
3806
+ {
3807
+ stateMutability: "view",
3808
+ type: "function",
3809
+ inputs: [],
3810
+ name: "getEthPrice",
3811
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
3812
+ },
3813
+ {
3814
+ stateMutability: "view",
3815
+ type: "function",
3816
+ inputs: [],
3817
+ name: "implementation",
3818
+ outputs: [{ name: "", internalType: "address", type: "address" }]
3819
+ },
3820
+ {
3821
+ stateMutability: "nonpayable",
3822
+ type: "function",
3823
+ inputs: [
3824
+ { name: "initialOwner", internalType: "address", type: "address" },
3825
+ { name: "initialEthTokenId", internalType: "uint256", type: "uint256" },
3826
+ {
3827
+ name: "initialEthTokenPrice",
3828
+ internalType: "uint256",
3829
+ type: "uint256"
3830
+ }
3831
+ ],
3832
+ name: "initialize",
3833
+ outputs: []
3834
+ },
3835
+ {
3836
+ stateMutability: "view",
3837
+ type: "function",
3838
+ inputs: [
3839
+ { name: "account", internalType: "address", type: "address" },
3840
+ { name: "operator", internalType: "address", type: "address" }
3841
+ ],
3842
+ name: "isApprovedForAll",
3843
+ outputs: [{ name: "", internalType: "bool", type: "bool" }]
3844
+ },
3845
+ {
3846
+ stateMutability: "payable",
3847
+ type: "function",
3848
+ inputs: [
3849
+ { name: "quantity", internalType: "uint256", type: "uint256" },
3850
+ { name: "recipient", internalType: "address", type: "address" }
3851
+ ],
3852
+ name: "mintWithEth",
3853
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
3854
+ },
3855
+ {
3856
+ stateMutability: "view",
3857
+ type: "function",
3858
+ inputs: [],
3859
+ name: "mintableEthToken",
3860
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
3861
+ },
3862
+ {
3863
+ stateMutability: "pure",
3864
+ type: "function",
3865
+ inputs: [],
3866
+ name: "name",
3867
+ outputs: [{ name: "", internalType: "string", type: "string" }]
3868
+ },
3869
+ {
3870
+ stateMutability: "view",
3871
+ type: "function",
3872
+ inputs: [],
3873
+ name: "owner",
3874
+ outputs: [{ name: "", internalType: "address", type: "address" }]
3875
+ },
3876
+ {
3877
+ stateMutability: "view",
3878
+ type: "function",
3879
+ inputs: [],
3880
+ name: "pendingOwner",
3881
+ outputs: [{ name: "", internalType: "address", type: "address" }]
3882
+ },
3883
+ {
3884
+ stateMutability: "view",
3885
+ type: "function",
3886
+ inputs: [],
3887
+ name: "premintExecutor",
3888
+ outputs: [
3889
+ { name: "", internalType: "contract IPremintWithMints", type: "address" }
3890
+ ]
3891
+ },
3892
+ {
3893
+ stateMutability: "nonpayable",
3894
+ type: "function",
3895
+ inputs: [
3896
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
3897
+ { name: "quantity", internalType: "uint256", type: "uint256" },
3898
+ { name: "recipient", internalType: "address", type: "address" }
3899
+ ],
3900
+ name: "redeem",
3901
+ outputs: [
3902
+ { name: "valueRedeemed", internalType: "uint256", type: "uint256" }
3903
+ ]
3904
+ },
3905
+ {
3906
+ stateMutability: "nonpayable",
3907
+ type: "function",
3908
+ inputs: [
3909
+ { name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
3910
+ { name: "quantities", internalType: "uint256[]", type: "uint256[]" },
3911
+ { name: "recipient", internalType: "address", type: "address" }
3912
+ ],
3913
+ name: "redeemBatch",
3914
+ outputs: [
3915
+ { name: "valueRedeemed", internalType: "uint256", type: "uint256" }
3916
+ ]
3917
+ },
3918
+ {
3919
+ stateMutability: "nonpayable",
3920
+ type: "function",
3921
+ inputs: [],
3922
+ name: "renounceOwnership",
3923
+ outputs: []
3924
+ },
3925
+ {
3926
+ stateMutability: "nonpayable",
3927
+ type: "function",
3928
+ inputs: [
3929
+ { name: "from", internalType: "address", type: "address" },
3930
+ { name: "to", internalType: "address", type: "address" },
3931
+ { name: "ids", internalType: "uint256[]", type: "uint256[]" },
3932
+ { name: "values", internalType: "uint256[]", type: "uint256[]" },
3933
+ { name: "data", internalType: "bytes", type: "bytes" }
3934
+ ],
3935
+ name: "safeBatchTransferFrom",
3936
+ outputs: []
3937
+ },
3938
+ {
3939
+ stateMutability: "nonpayable",
3940
+ type: "function",
3941
+ inputs: [
3942
+ { name: "from", internalType: "address", type: "address" },
3943
+ { name: "to", internalType: "address", type: "address" },
3944
+ { name: "id", internalType: "uint256", type: "uint256" },
3945
+ { name: "value", internalType: "uint256", type: "uint256" },
3946
+ { name: "data", internalType: "bytes", type: "bytes" }
3947
+ ],
3948
+ name: "safeTransferFrom",
3949
+ outputs: []
3950
+ },
3951
+ {
3952
+ stateMutability: "nonpayable",
3953
+ type: "function",
3954
+ inputs: [
3955
+ { name: "operator", internalType: "address", type: "address" },
3956
+ { name: "approved", internalType: "bool", type: "bool" }
3957
+ ],
3958
+ name: "setApprovalForAll",
3959
+ outputs: []
3960
+ },
3961
+ {
3962
+ stateMutability: "nonpayable",
3963
+ type: "function",
3964
+ inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
3965
+ name: "setMintableEthToken",
3966
+ outputs: []
3967
+ },
3968
+ {
3969
+ stateMutability: "view",
3970
+ type: "function",
3971
+ inputs: [{ name: "interfaceId", internalType: "bytes4", type: "bytes4" }],
3972
+ name: "supportsInterface",
3973
+ outputs: [{ name: "", internalType: "bool", type: "bool" }]
3974
+ },
3975
+ {
3976
+ stateMutability: "pure",
3977
+ type: "function",
3978
+ inputs: [],
3979
+ name: "symbol",
3980
+ outputs: [{ name: "", internalType: "string", type: "string" }]
3981
+ },
3982
+ {
3983
+ stateMutability: "view",
3984
+ type: "function",
3985
+ inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
3986
+ name: "tokenCreated",
3987
+ outputs: [{ name: "", internalType: "bool", type: "bool" }]
3988
+ },
3989
+ {
3990
+ stateMutability: "view",
3991
+ type: "function",
3992
+ inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
3993
+ name: "tokenPrice",
3994
+ outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
3995
+ },
3996
+ {
3997
+ stateMutability: "nonpayable",
3998
+ type: "function",
3999
+ inputs: [{ name: "newOwner", internalType: "address", type: "address" }],
4000
+ name: "transferOwnership",
4001
+ outputs: []
4002
+ },
4003
+ {
4004
+ stateMutability: "view",
4005
+ type: "function",
4006
+ inputs: [{ name: "", internalType: "uint256", type: "uint256" }],
4007
+ name: "uri",
4008
+ outputs: [{ name: "", internalType: "string", type: "string" }]
4009
+ },
4010
+ {
4011
+ type: "event",
4012
+ anonymous: false,
4013
+ inputs: [
4014
+ {
4015
+ name: "account",
4016
+ internalType: "address",
4017
+ type: "address",
4018
+ indexed: true
4019
+ },
4020
+ {
4021
+ name: "operator",
4022
+ internalType: "address",
4023
+ type: "address",
4024
+ indexed: true
4025
+ },
4026
+ { name: "approved", internalType: "bool", type: "bool", indexed: false }
4027
+ ],
4028
+ name: "ApprovalForAll"
4029
+ },
4030
+ {
4031
+ type: "event",
4032
+ anonymous: false,
4033
+ inputs: [
4034
+ {
4035
+ name: "tokenIds",
4036
+ internalType: "uint256[]",
4037
+ type: "uint256[]",
4038
+ indexed: true
4039
+ },
4040
+ {
4041
+ name: "quantities",
4042
+ internalType: "uint256[]",
4043
+ type: "uint256[]",
4044
+ indexed: false
4045
+ },
4046
+ {
4047
+ name: "zoraCreator1155Contract",
4048
+ internalType: "address",
4049
+ type: "address",
4050
+ indexed: true
4051
+ },
4052
+ {
4053
+ name: "zoraCreator1155TokenId",
4054
+ internalType: "uint256",
4055
+ type: "uint256",
4056
+ indexed: true
4057
+ }
4058
+ ],
4059
+ name: "Collected"
4060
+ },
4061
+ {
4062
+ type: "event",
4063
+ anonymous: false,
4064
+ inputs: [
4065
+ {
4066
+ name: "tokenId",
4067
+ internalType: "uint256",
4068
+ type: "uint256",
4069
+ indexed: true
4070
+ }
4071
+ ],
4072
+ name: "EthMintableTokenSet"
4073
+ },
4074
+ {
4075
+ type: "event",
4076
+ anonymous: false,
4077
+ inputs: [
4078
+ {
4079
+ name: "tokenId",
4080
+ internalType: "uint256",
4081
+ type: "uint256",
4082
+ indexed: true
4083
+ },
4084
+ {
4085
+ name: "pricePerToken",
4086
+ internalType: "uint256",
4087
+ type: "uint256",
4088
+ indexed: true
4089
+ }
4090
+ ],
4091
+ name: "EthTokenCreated"
4092
+ },
4093
+ {
4094
+ type: "event",
4095
+ anonymous: false,
4096
+ inputs: [
4097
+ {
4098
+ name: "version",
4099
+ internalType: "uint64",
4100
+ type: "uint64",
4101
+ indexed: false
4102
+ }
4103
+ ],
4104
+ name: "Initialized"
4105
+ },
4106
+ {
4107
+ type: "event",
4108
+ anonymous: false,
4109
+ inputs: [
4110
+ {
4111
+ name: "previousOwner",
4112
+ internalType: "address",
4113
+ type: "address",
4114
+ indexed: true
4115
+ },
4116
+ {
4117
+ name: "newOwner",
4118
+ internalType: "address",
4119
+ type: "address",
4120
+ indexed: true
4121
+ }
4122
+ ],
4123
+ name: "OwnershipTransferStarted"
4124
+ },
4125
+ {
4126
+ type: "event",
4127
+ anonymous: false,
4128
+ inputs: [
4129
+ {
4130
+ name: "previousOwner",
4131
+ internalType: "address",
4132
+ type: "address",
4133
+ indexed: true
4134
+ },
4135
+ {
4136
+ name: "newOwner",
4137
+ internalType: "address",
4138
+ type: "address",
4139
+ indexed: true
4140
+ }
4141
+ ],
4142
+ name: "OwnershipTransferred"
4143
+ },
4144
+ {
4145
+ type: "event",
4146
+ anonymous: false,
4147
+ inputs: [
4148
+ {
4149
+ name: "tokenIds",
4150
+ internalType: "uint256[]",
4151
+ type: "uint256[]",
4152
+ indexed: false
4153
+ },
4154
+ {
4155
+ name: "quantities",
4156
+ internalType: "uint256[]",
4157
+ type: "uint256[]",
4158
+ indexed: false
4159
+ },
4160
+ {
4161
+ name: "recipient",
4162
+ internalType: "address",
4163
+ type: "address",
4164
+ indexed: false
4165
+ }
4166
+ ],
4167
+ name: "RedeemedBatch"
4168
+ },
4169
+ {
4170
+ type: "event",
4171
+ anonymous: false,
4172
+ inputs: [
4173
+ {
4174
+ name: "operator",
4175
+ internalType: "address",
4176
+ type: "address",
4177
+ indexed: true
4178
+ },
4179
+ { name: "from", internalType: "address", type: "address", indexed: true },
4180
+ { name: "to", internalType: "address", type: "address", indexed: true },
4181
+ {
4182
+ name: "ids",
4183
+ internalType: "uint256[]",
4184
+ type: "uint256[]",
4185
+ indexed: false
4186
+ },
4187
+ {
4188
+ name: "values",
4189
+ internalType: "uint256[]",
4190
+ type: "uint256[]",
4191
+ indexed: false
4192
+ }
4193
+ ],
4194
+ name: "TransferBatch"
4195
+ },
4196
+ {
4197
+ type: "event",
4198
+ anonymous: false,
4199
+ inputs: [
4200
+ {
4201
+ name: "operator",
4202
+ internalType: "address",
4203
+ type: "address",
4204
+ indexed: true
4205
+ },
4206
+ { name: "from", internalType: "address", type: "address", indexed: true },
4207
+ { name: "to", internalType: "address", type: "address", indexed: true },
4208
+ { name: "id", internalType: "uint256", type: "uint256", indexed: false },
4209
+ {
4210
+ name: "value",
4211
+ internalType: "uint256",
4212
+ type: "uint256",
4213
+ indexed: false
4214
+ }
4215
+ ],
4216
+ name: "TransferSingle"
4217
+ },
4218
+ {
4219
+ type: "event",
4220
+ anonymous: false,
4221
+ inputs: [
4222
+ { name: "value", internalType: "string", type: "string", indexed: false },
4223
+ { name: "id", internalType: "uint256", type: "uint256", indexed: true }
4224
+ ],
4225
+ name: "URI"
4226
+ },
4227
+ {
4228
+ type: "error",
4229
+ inputs: [
4230
+ { name: "operator", internalType: "address", type: "address" },
4231
+ { name: "user", internalType: "address", type: "address" }
4232
+ ],
4233
+ name: "Burn_NotOwnerOrApproved"
4234
+ },
4235
+ {
4236
+ type: "error",
4237
+ inputs: [{ name: "reason", internalType: "bytes", type: "bytes" }],
4238
+ name: "CallFailed"
4239
+ },
4240
+ { type: "error", inputs: [], name: "Call_TokenIdMismatch" },
4241
+ { type: "error", inputs: [], name: "CallerNotZoraCreator1155" },
4242
+ {
4243
+ type: "error",
4244
+ inputs: [
4245
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
4246
+ { name: "quantity", internalType: "uint256", type: "uint256" },
4247
+ { name: "totalMinted", internalType: "uint256", type: "uint256" },
4248
+ { name: "maxSupply", internalType: "uint256", type: "uint256" }
4249
+ ],
4250
+ name: "CannotMintMoreTokens"
4251
+ },
4252
+ {
4253
+ type: "error",
4254
+ inputs: [
4255
+ { name: "proposedAddress", internalType: "address", type: "address" }
4256
+ ],
4257
+ name: "Config_TransferHookNotSupported"
4258
+ },
4259
+ {
4260
+ type: "error",
4261
+ inputs: [
4262
+ { name: "sender", internalType: "address", type: "address" },
4263
+ { name: "balance", internalType: "uint256", type: "uint256" },
4264
+ { name: "needed", internalType: "uint256", type: "uint256" },
4265
+ { name: "tokenId", internalType: "uint256", type: "uint256" }
4266
+ ],
4267
+ name: "ERC1155InsufficientBalance"
4268
+ },
4269
+ {
4270
+ type: "error",
4271
+ inputs: [{ name: "approver", internalType: "address", type: "address" }],
4272
+ name: "ERC1155InvalidApprover"
4273
+ },
4274
+ {
4275
+ type: "error",
4276
+ inputs: [
4277
+ { name: "idsLength", internalType: "uint256", type: "uint256" },
4278
+ { name: "valuesLength", internalType: "uint256", type: "uint256" }
4279
+ ],
4280
+ name: "ERC1155InvalidArrayLength"
4281
+ },
4282
+ {
4283
+ type: "error",
4284
+ inputs: [{ name: "operator", internalType: "address", type: "address" }],
4285
+ name: "ERC1155InvalidOperator"
4286
+ },
4287
+ {
4288
+ type: "error",
4289
+ inputs: [{ name: "receiver", internalType: "address", type: "address" }],
4290
+ name: "ERC1155InvalidReceiver"
4291
+ },
4292
+ {
4293
+ type: "error",
4294
+ inputs: [{ name: "sender", internalType: "address", type: "address" }],
4295
+ name: "ERC1155InvalidSender"
4296
+ },
4297
+ {
4298
+ type: "error",
4299
+ inputs: [
4300
+ { name: "operator", internalType: "address", type: "address" },
4301
+ { name: "owner", internalType: "address", type: "address" }
4302
+ ],
4303
+ name: "ERC1155MissingApprovalForAll"
4304
+ },
4305
+ { type: "error", inputs: [], name: "ERC1155_MINT_TO_ZERO_ADDRESS" },
4306
+ {
4307
+ type: "error",
4308
+ inputs: [
4309
+ { name: "recipient", internalType: "address", type: "address" },
4310
+ { name: "amount", internalType: "uint256", type: "uint256" }
4311
+ ],
4312
+ name: "ETHWithdrawFailed"
4313
+ },
4314
+ {
4315
+ type: "error",
4316
+ inputs: [
4317
+ { name: "amount", internalType: "uint256", type: "uint256" },
4318
+ { name: "contractValue", internalType: "uint256", type: "uint256" }
4319
+ ],
4320
+ name: "FundsWithdrawInsolvent"
4321
+ },
4322
+ { type: "error", inputs: [], name: "IncorrectAmountSent" },
4323
+ { type: "error", inputs: [], name: "InvalidInitialization" },
4324
+ {
4325
+ type: "error",
4326
+ inputs: [
4327
+ { name: "mintTo", internalType: "address", type: "address" },
4328
+ { name: "merkleProof", internalType: "bytes32[]", type: "bytes32[]" },
4329
+ { name: "merkleRoot", internalType: "bytes32", type: "bytes32" }
4330
+ ],
4331
+ name: "InvalidMerkleProof"
4332
+ },
4333
+ { type: "error", inputs: [], name: "InvalidMintSchedule" },
4334
+ { type: "error", inputs: [], name: "InvalidSignature" },
4335
+ { type: "error", inputs: [], name: "InvalidSignatureVersion" },
4336
+ {
4337
+ type: "error",
4338
+ inputs: [{ name: "magicValue", internalType: "bytes4", type: "bytes4" }],
4339
+ name: "InvalidSigner"
4340
+ },
4341
+ { type: "error", inputs: [], name: "InvalidTokenPrice" },
4342
+ { type: "error", inputs: [], name: "MintNotYetStarted" },
4343
+ { type: "error", inputs: [], name: "Mint_InsolventSaleTransfer" },
4344
+ { type: "error", inputs: [], name: "Mint_InvalidMintArrayLength" },
4345
+ { type: "error", inputs: [], name: "Mint_TokenIDMintNotAllowed" },
4346
+ { type: "error", inputs: [], name: "Mint_UnknownCommand" },
4347
+ { type: "error", inputs: [], name: "Mint_ValueTransferFail" },
4348
+ { type: "error", inputs: [], name: "MinterContractAlreadyExists" },
4349
+ { type: "error", inputs: [], name: "MinterContractDoesNotExist" },
4350
+ { type: "error", inputs: [], name: "NewOwnerNeedsToBeAdmin" },
4351
+ { type: "error", inputs: [], name: "NotInitializing" },
4352
+ {
4353
+ type: "error",
4354
+ inputs: [{ name: "owner", internalType: "address", type: "address" }],
4355
+ name: "OwnableInvalidOwner"
4356
+ },
4357
+ {
4358
+ type: "error",
4359
+ inputs: [{ name: "account", internalType: "address", type: "address" }],
4360
+ name: "OwnableUnauthorizedAccount"
4361
+ },
4362
+ { type: "error", inputs: [], name: "PremintDeleted" },
4363
+ {
4364
+ type: "error",
4365
+ inputs: [
4366
+ { name: "caller", internalType: "address", type: "address" },
4367
+ { name: "recipient", internalType: "address", type: "address" },
4368
+ { name: "amount", internalType: "uint256", type: "uint256" }
4369
+ ],
4370
+ name: "ProtocolRewardsWithdrawFailed"
4371
+ },
4372
+ { type: "error", inputs: [], name: "Renderer_NotValidRendererContract" },
4373
+ { type: "error", inputs: [], name: "SaleEnded" },
4374
+ { type: "error", inputs: [], name: "SaleHasNotStarted" },
4375
+ {
4376
+ type: "error",
4377
+ inputs: [
4378
+ { name: "targetContract", internalType: "address", type: "address" }
4379
+ ],
4380
+ name: "Sale_CannotCallNonSalesContract"
4381
+ },
4382
+ { type: "error", inputs: [], name: "TokenAlreadyCreated" },
4383
+ { type: "error", inputs: [], name: "TokenDoesNotExist" },
4384
+ {
4385
+ type: "error",
4386
+ inputs: [
4387
+ { name: "expected", internalType: "uint256", type: "uint256" },
4388
+ { name: "actual", internalType: "uint256", type: "uint256" }
4389
+ ],
4390
+ name: "TokenIdMismatch"
4391
+ },
4392
+ { type: "error", inputs: [], name: "TransferFailed" },
4393
+ {
4394
+ type: "error",
4395
+ inputs: [
4396
+ { name: "user", internalType: "address", type: "address" },
4397
+ { name: "limit", internalType: "uint256", type: "uint256" },
4398
+ { name: "requestedAmount", internalType: "uint256", type: "uint256" }
4399
+ ],
4400
+ name: "UserExceedsMintLimit"
4401
+ },
4402
+ {
4403
+ type: "error",
4404
+ inputs: [
4405
+ { name: "user", internalType: "address", type: "address" },
4406
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
4407
+ { name: "role", internalType: "uint256", type: "uint256" }
4408
+ ],
4409
+ name: "UserMissingRoleForToken"
4410
+ },
4411
+ { type: "error", inputs: [], name: "WrongValueSent" },
4412
+ {
4413
+ type: "error",
4414
+ inputs: [],
4415
+ name: "premintSignerContractFailedToRecoverSigner"
4416
+ },
4417
+ { type: "error", inputs: [], name: "premintSignerContractNotAContract" }
4418
+ ];
4419
+ var zoraMintsImplAddress = {
4420
+ 999999999: "0x77777773dE7607C8d2eF571ba03ab22a7df64CEA"
4421
+ };
4422
+ var zoraMintsImplConfig = {
4423
+ address: zoraMintsImplAddress,
4424
+ abi: zoraMintsImplABI
4425
+ };
4426
+
4427
+ // src/generated/1155.ts
4428
+ var __exports = {};
4429
+ __export(__exports, {
4430
+ addresses: () => addresses,
4431
+ chainConfigs: () => chainConfigs
4432
+ });
4433
+ var chainConfigs = {
4434
+ "1": {
4435
+ "FACTORY_OWNER": "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
4436
+ "MINT_FEE_RECIPIENT": "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0",
4437
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4438
+ },
4439
+ "10": {
4440
+ "FACTORY_OWNER": "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
4441
+ "MINT_FEE_RECIPIENT": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c",
4442
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4443
+ },
4444
+ "999": {
4445
+ "FACTORY_OWNER": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
4446
+ "MINT_FEE_RECIPIENT": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
4447
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4448
+ },
4449
+ "8453": {
4450
+ "FACTORY_OWNER": "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
4451
+ "MINT_FEE_RECIPIENT": "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6",
4452
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4453
+ },
4454
+ "42161": {
4455
+ "FACTORY_OWNER": "0xF7DafC329C93D84267c0E7B146C0bD68807f6A03",
4456
+ "MINT_FEE_RECIPIENT": "0x10Fb02A68C3EA8bD439A6f515dcE07CC049f5c94",
4457
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4458
+ },
4459
+ "81457": {
4460
+ "FACTORY_OWNER": "0x5b297B1b87f8De28C9fA7AFe183Db9F9e6295523",
4461
+ "MINT_FEE_RECIPIENT": "0x72E6394056f9152D3a41e5A25De383c191D16134",
4462
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4463
+ },
4464
+ "421614": {
4465
+ "FACTORY_OWNER": "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
4466
+ "MINT_FEE_RECIPIENT": "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
4467
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4468
+ },
4469
+ "7777777": {
4470
+ "FACTORY_OWNER": "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
4471
+ "MINT_FEE_RECIPIENT": "0xEcfc2ee50409E459c554a2b0376F882Ce916D853",
4472
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4473
+ },
4474
+ "11155111": {
4475
+ "FACTORY_OWNER": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
4476
+ "MINT_FEE_RECIPIENT": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
4477
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4478
+ },
4479
+ "168587773": {
4480
+ "FACTORY_OWNER": "0x8cF22F26d528B09b3cc54b7ff956630Bf741b773",
4481
+ "MINT_FEE_RECIPIENT": "0x8cF22F26d528B09b3cc54b7ff956630Bf741b773",
4482
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4483
+ },
4484
+ "999999999": {
4485
+ "FACTORY_OWNER": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
4486
+ "MINT_FEE_RECIPIENT": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
4487
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4488
+ }
4489
+ };
4490
+ var addresses = {
4491
+ "1": {
4492
+ "CONTRACT_1155_IMPL": "0x32006e298C19818CD5e8000E26439691f0ac2128",
4493
+ "CONTRACT_1155_IMPL_VERSION": "2.7.0",
4494
+ "FACTORY_IMPL": "0xD662FB0fB00261C039441EF49Dbab154d7c533bD",
4495
+ "FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
4496
+ "FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
4497
+ "MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
4498
+ "PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
4499
+ "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
4500
+ "REDEEM_MINTER_FACTORY": "0x78964965cF77850224513a367f899435C5B69174",
4501
+ "UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
4502
+ "timestamp": 1704400466
4503
+ },
4504
+ "10": {
4505
+ "CONTRACT_1155_IMPL": "0xECfbCf718E17B6e76A675dDB936a9249C69DD2aA",
4506
+ "CONTRACT_1155_IMPL_VERSION": "2.7.0",
4507
+ "FACTORY_IMPL": "0x32006e298C19818CD5e8000E26439691f0ac2128",
4508
+ "FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
4509
+ "FIXED_PRICE_SALE_STRATEGY": "0x3678862f04290E565cCA2EF163BAeb92Bb76790C",
4510
+ "MERKLE_MINT_SALE_STRATEGY": "0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8",
4511
+ "PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
4512
+ "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
4513
+ "REDEEM_MINTER_FACTORY": "0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2",
4514
+ "UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
4515
+ "timestamp": 1704396387
4516
+ },
4517
+ "999": {
4518
+ "CONTRACT_1155_IMPL": "0x2022AdEF470DA3543a19fac8c9be80618112704D",
4519
+ "CONTRACT_1155_IMPL_VERSION": "2.7.0",
4520
+ "FACTORY_IMPL": "0x4b0365Ec68C2D92Af2Fa56f120095F0859142Eff",
4521
+ "FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
4522
+ "FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
4523
+ "MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
3625
4524
  "PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
3626
4525
  "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
3627
4526
  "REDEEM_MINTER_FACTORY": "0x78964965cF77850224513a367f899435C5B69174",
@@ -3734,9 +4633,61 @@ var addresses = {
3734
4633
  "commit": "bdf6682"
3735
4634
  }
3736
4635
  };
4636
+
4637
+ // src/generated/mints.ts
4638
+ var mints_exports = {};
4639
+ __export(mints_exports, {
4640
+ addresses: () => addresses2,
4641
+ chainConfigs: () => chainConfigs2
4642
+ });
4643
+ var chainConfigs2 = {
4644
+ "1": {
4645
+ "PROXY_ADMIN": "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
4646
+ "MINTS_OWNER": "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0"
4647
+ },
4648
+ "10": {
4649
+ "PROXY_ADMIN": "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
4650
+ "MINTS_OWNER": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c"
4651
+ },
4652
+ "420": {
4653
+ "PROXY_ADMIN": "0xbb45052B2260707655Dfd916a416264f5981192c",
4654
+ "MINTS_OWNER": "0x5dEe21327CD7CD6725C2578DA1c3E5bb2D2D34b2"
4655
+ },
4656
+ "999": {
4657
+ "PROXY_ADMIN": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
4658
+ "MINTS_OWNER": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252"
4659
+ },
4660
+ "8453": {
4661
+ "PROXY_ADMIN": "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
4662
+ "MINTS_OWNER": "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6"
4663
+ },
4664
+ "84531": {
4665
+ "PROXY_ADMIN": "0x02539E813cA450C2c7334e885423f4A899a063Fe",
4666
+ "MINTS_OWNER": "0x02539E813cA450C2c7334e885423f4A899a063Fe"
4667
+ },
4668
+ "7777777": {
4669
+ "PROXY_ADMIN": "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
4670
+ "MINTS_OWNER": "0xEcfc2ee50409E459c554a2b0376F882Ce916D853"
4671
+ },
4672
+ "11155111": {
4673
+ "PROXY_ADMIN": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
4674
+ "MINTS_OWNER": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D"
4675
+ },
4676
+ "999999999": {
4677
+ "PROXY_ADMIN": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
4678
+ "MINTS_OWNER": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E"
4679
+ }
4680
+ };
4681
+ var addresses2 = {
4682
+ "999999999": {
4683
+ "MINTS_IMPL": "0x4D1d4767d5f2cC3884E221c340240BEa0B42b7BA",
4684
+ "MINTS_IMPL_VERSION": "0.0.2"
4685
+ }
4686
+ };
3737
4687
  // Annotate the CommonJS export names for ESM import in node:
3738
4688
  0 && (module.exports = {
3739
4689
  contracts1155,
4690
+ mints,
3740
4691
  zoraCreator1155FactoryImplABI,
3741
4692
  zoraCreator1155FactoryImplAddress,
3742
4693
  zoraCreator1155FactoryImplConfig,
@@ -3752,6 +4703,9 @@ var addresses = {
3752
4703
  zoraCreatorMerkleMinterStrategyConfig,
3753
4704
  zoraCreatorRedeemMinterFactoryABI,
3754
4705
  zoraCreatorRedeemMinterFactoryAddress,
3755
- zoraCreatorRedeemMinterFactoryConfig
4706
+ zoraCreatorRedeemMinterFactoryConfig,
4707
+ zoraMintsImplABI,
4708
+ zoraMintsImplAddress,
4709
+ zoraMintsImplConfig
3756
4710
  });
3757
4711
  //# sourceMappingURL=index.cjs.map