@zoralabs/protocol-deployments 0.1.3-MINT.3 → 0.1.4

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,7 +21,6 @@ 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,
25
24
  zoraCreator1155FactoryImplABI: () => zoraCreator1155FactoryImplABI,
26
25
  zoraCreator1155FactoryImplAddress: () => zoraCreator1155FactoryImplAddress,
27
26
  zoraCreator1155FactoryImplConfig: () => zoraCreator1155FactoryImplConfig,
@@ -37,10 +36,7 @@ __export(src_exports, {
37
36
  zoraCreatorMerkleMinterStrategyConfig: () => zoraCreatorMerkleMinterStrategyConfig,
38
37
  zoraCreatorRedeemMinterFactoryABI: () => zoraCreatorRedeemMinterFactoryABI,
39
38
  zoraCreatorRedeemMinterFactoryAddress: () => zoraCreatorRedeemMinterFactoryAddress,
40
- zoraCreatorRedeemMinterFactoryConfig: () => zoraCreatorRedeemMinterFactoryConfig,
41
- zoraMintsImplABI: () => zoraMintsImplABI,
42
- zoraMintsImplAddress: () => zoraMintsImplAddress,
43
- zoraMintsImplConfig: () => zoraMintsImplConfig
39
+ zoraCreatorRedeemMinterFactoryConfig: () => zoraCreatorRedeemMinterFactoryConfig
44
40
  });
45
41
  module.exports = __toCommonJS(src_exports);
46
42
 
@@ -1428,6 +1424,7 @@ var zoraCreator1155ImplABI = [
1428
1424
  ],
1429
1425
  name: "ContractRendererUpdated"
1430
1426
  },
1427
+ { type: "event", anonymous: false, inputs: [], name: "ContractURIUpdated" },
1431
1428
  {
1432
1429
  type: "event",
1433
1430
  anonymous: false,
@@ -1826,6 +1823,7 @@ var zoraCreator1155ImplABI = [
1826
1823
  inputs: [],
1827
1824
  name: "FUNCTION_MUST_BE_CALLED_THROUGH_DELEGATECALL"
1828
1825
  },
1826
+ { type: "error", inputs: [], name: "FirstMinterAddressZero" },
1829
1827
  {
1830
1828
  type: "error",
1831
1829
  inputs: [
@@ -1856,17 +1854,9 @@ var zoraCreator1155ImplABI = [
1856
1854
  name: "InvalidMerkleProof"
1857
1855
  },
1858
1856
  { type: "error", inputs: [], name: "InvalidMintSchedule" },
1859
- {
1860
- type: "error",
1861
- inputs: [
1862
- {
1863
- name: "recoverError",
1864
- internalType: "enum ECDSAUpgradeable.RecoverError",
1865
- type: "uint8"
1866
- }
1867
- ],
1868
- name: "InvalidSignature"
1869
- },
1857
+ { type: "error", inputs: [], name: "InvalidMintSchedule" },
1858
+ { type: "error", inputs: [], name: "InvalidPremintVersion" },
1859
+ { type: "error", inputs: [], name: "InvalidSignature" },
1870
1860
  { type: "error", inputs: [], name: "InvalidSignatureVersion" },
1871
1861
  {
1872
1862
  type: "error",
@@ -1875,6 +1865,7 @@ var zoraCreator1155ImplABI = [
1875
1865
  },
1876
1866
  { type: "error", inputs: [], name: "MintNotYetStarted" },
1877
1867
  { type: "error", inputs: [], name: "Mint_InsolventSaleTransfer" },
1868
+ { type: "error", inputs: [], name: "Mint_InvalidMintArrayLength" },
1878
1869
  { type: "error", inputs: [], name: "Mint_TokenIDMintNotAllowed" },
1879
1870
  { type: "error", inputs: [], name: "Mint_UnknownCommand" },
1880
1871
  { type: "error", inputs: [], name: "Mint_ValueTransferFail" },
@@ -2122,6 +2113,97 @@ var zoraCreator1155PremintExecutorImplABI = [
2122
2113
  name: "pendingOwner",
2123
2114
  outputs: [{ name: "", internalType: "address", type: "address" }]
2124
2115
  },
2116
+ {
2117
+ stateMutability: "nonpayable",
2118
+ type: "function",
2119
+ inputs: [
2120
+ {
2121
+ name: "contractConfig",
2122
+ internalType: "struct ContractCreationConfig",
2123
+ type: "tuple",
2124
+ components: [
2125
+ { name: "contractAdmin", internalType: "address", type: "address" },
2126
+ { name: "contractURI", internalType: "string", type: "string" },
2127
+ { name: "contractName", internalType: "string", type: "string" }
2128
+ ]
2129
+ },
2130
+ {
2131
+ name: "premintConfig",
2132
+ internalType: "struct Erc20PremintConfigV1",
2133
+ type: "tuple",
2134
+ components: [
2135
+ {
2136
+ name: "tokenConfig",
2137
+ internalType: "struct Erc20TokenCreationConfigV1",
2138
+ type: "tuple",
2139
+ components: [
2140
+ { name: "tokenURI", internalType: "string", type: "string" },
2141
+ { name: "maxSupply", internalType: "uint256", type: "uint256" },
2142
+ { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
2143
+ {
2144
+ name: "payoutRecipient",
2145
+ internalType: "address",
2146
+ type: "address"
2147
+ },
2148
+ {
2149
+ name: "createReferral",
2150
+ internalType: "address",
2151
+ type: "address"
2152
+ },
2153
+ { name: "erc20Minter", internalType: "address", type: "address" },
2154
+ { name: "mintStart", internalType: "uint64", type: "uint64" },
2155
+ { name: "mintDuration", internalType: "uint64", type: "uint64" },
2156
+ {
2157
+ name: "maxTokensPerAddress",
2158
+ internalType: "uint64",
2159
+ type: "uint64"
2160
+ },
2161
+ { name: "currency", internalType: "address", type: "address" },
2162
+ {
2163
+ name: "pricePerToken",
2164
+ internalType: "uint256",
2165
+ type: "uint256"
2166
+ }
2167
+ ]
2168
+ },
2169
+ { name: "uid", internalType: "uint32", type: "uint32" },
2170
+ { name: "version", internalType: "uint32", type: "uint32" },
2171
+ { name: "deleted", internalType: "bool", type: "bool" }
2172
+ ]
2173
+ },
2174
+ { name: "signature", internalType: "bytes", type: "bytes" },
2175
+ { name: "quantityToMint", internalType: "uint256", type: "uint256" },
2176
+ {
2177
+ name: "mintArguments",
2178
+ internalType: "struct MintArguments",
2179
+ type: "tuple",
2180
+ components: [
2181
+ { name: "mintRecipient", internalType: "address", type: "address" },
2182
+ { name: "mintComment", internalType: "string", type: "string" },
2183
+ {
2184
+ name: "mintRewardsRecipients",
2185
+ internalType: "address[]",
2186
+ type: "address[]"
2187
+ }
2188
+ ]
2189
+ },
2190
+ { name: "firstMinter", internalType: "address", type: "address" },
2191
+ { name: "signerContract", internalType: "address", type: "address" }
2192
+ ],
2193
+ name: "premintErc20V1",
2194
+ outputs: [
2195
+ {
2196
+ name: "result",
2197
+ internalType: "struct PremintResult",
2198
+ type: "tuple",
2199
+ components: [
2200
+ { name: "contractAddress", internalType: "address", type: "address" },
2201
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
2202
+ { name: "createdNewContract", internalType: "bool", type: "bool" }
2203
+ ]
2204
+ }
2205
+ ]
2206
+ },
2125
2207
  {
2126
2208
  stateMutability: "view",
2127
2209
  type: "function",
@@ -2196,7 +2278,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2196
2278
  { name: "quantityToMint", internalType: "uint256", type: "uint256" },
2197
2279
  {
2198
2280
  name: "mintArguments",
2199
- internalType: "struct IZoraCreator1155PremintExecutor.MintArguments",
2281
+ internalType: "struct MintArguments",
2200
2282
  type: "tuple",
2201
2283
  components: [
2202
2284
  { name: "mintRecipient", internalType: "address", type: "address" },
@@ -2213,7 +2295,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2213
2295
  outputs: [
2214
2296
  {
2215
2297
  name: "result",
2216
- internalType: "struct IZoraCreator1155PremintExecutor.PremintResult",
2298
+ internalType: "struct PremintResult",
2217
2299
  type: "tuple",
2218
2300
  components: [
2219
2301
  { name: "contractAddress", internalType: "address", type: "address" },
@@ -2284,7 +2366,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2284
2366
  { name: "quantityToMint", internalType: "uint256", type: "uint256" },
2285
2367
  {
2286
2368
  name: "mintArguments",
2287
- internalType: "struct IZoraCreator1155PremintExecutor.MintArguments",
2369
+ internalType: "struct MintArguments",
2288
2370
  type: "tuple",
2289
2371
  components: [
2290
2372
  { name: "mintRecipient", internalType: "address", type: "address" },
@@ -2301,7 +2383,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2301
2383
  outputs: [
2302
2384
  {
2303
2385
  name: "result",
2304
- internalType: "struct IZoraCreator1155PremintExecutor.PremintResult",
2386
+ internalType: "struct PremintResult",
2305
2387
  type: "tuple",
2306
2388
  components: [
2307
2389
  { name: "contractAddress", internalType: "address", type: "address" },
@@ -2372,7 +2454,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2372
2454
  { name: "quantityToMint", internalType: "uint256", type: "uint256" },
2373
2455
  {
2374
2456
  name: "mintArguments",
2375
- internalType: "struct IZoraCreator1155PremintExecutor.MintArguments",
2457
+ internalType: "struct MintArguments",
2376
2458
  type: "tuple",
2377
2459
  components: [
2378
2460
  { name: "mintRecipient", internalType: "address", type: "address" },
@@ -2384,13 +2466,14 @@ var zoraCreator1155PremintExecutorImplABI = [
2384
2466
  }
2385
2467
  ]
2386
2468
  },
2469
+ { name: "firstMinter", internalType: "address", type: "address" },
2387
2470
  { name: "signerContract", internalType: "address", type: "address" }
2388
2471
  ],
2389
2472
  name: "premintV2WithSignerContract",
2390
2473
  outputs: [
2391
2474
  {
2392
2475
  name: "result",
2393
- internalType: "struct IZoraCreator1155PremintExecutor.PremintResult",
2476
+ internalType: "struct PremintResult",
2394
2477
  type: "tuple",
2395
2478
  components: [
2396
2479
  { name: "contractAddress", internalType: "address", type: "address" },
@@ -2739,6 +2822,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2739
2822
  { type: "error", inputs: [], name: "ERC1967_NEW_IMPL_NOT_CONTRACT" },
2740
2823
  { type: "error", inputs: [], name: "ERC1967_NEW_IMPL_NOT_UUPS" },
2741
2824
  { type: "error", inputs: [], name: "ERC1967_UNSUPPORTED_PROXIABLEUUID" },
2825
+ { type: "error", inputs: [], name: "ERC20TransferSlippage" },
2742
2826
  {
2743
2827
  type: "error",
2744
2828
  inputs: [
@@ -2757,6 +2841,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2757
2841
  inputs: [],
2758
2842
  name: "FUNCTION_MUST_BE_CALLED_THROUGH_DELEGATECALL"
2759
2843
  },
2844
+ { type: "error", inputs: [], name: "FirstMinterAddressZero" },
2760
2845
  {
2761
2846
  type: "error",
2762
2847
  inputs: [
@@ -2788,17 +2873,8 @@ var zoraCreator1155PremintExecutorImplABI = [
2788
2873
  name: "InvalidMerkleProof"
2789
2874
  },
2790
2875
  { type: "error", inputs: [], name: "InvalidMintSchedule" },
2791
- {
2792
- type: "error",
2793
- inputs: [
2794
- {
2795
- name: "recoverError",
2796
- internalType: "enum ECDSAUpgradeable.RecoverError",
2797
- type: "uint8"
2798
- }
2799
- ],
2800
- name: "InvalidSignature"
2801
- },
2876
+ { type: "error", inputs: [], name: "InvalidPremintVersion" },
2877
+ { type: "error", inputs: [], name: "InvalidSignature" },
2802
2878
  { type: "error", inputs: [], name: "InvalidSignatureVersion" },
2803
2879
  {
2804
2880
  type: "error",
@@ -2807,6 +2883,7 @@ var zoraCreator1155PremintExecutorImplABI = [
2807
2883
  },
2808
2884
  { type: "error", inputs: [], name: "MintNotYetStarted" },
2809
2885
  { type: "error", inputs: [], name: "Mint_InsolventSaleTransfer" },
2886
+ { type: "error", inputs: [], name: "Mint_InvalidMintArrayLength" },
2810
2887
  { type: "error", inputs: [], name: "Mint_TokenIDMintNotAllowed" },
2811
2888
  { type: "error", inputs: [], name: "Mint_UnknownCommand" },
2812
2889
  { type: "error", inputs: [], name: "Mint_ValueTransferFail" },
@@ -3528,832 +3605,38 @@ var zoraCreatorRedeemMinterFactoryConfig = {
3528
3605
  address: zoraCreatorRedeemMinterFactoryAddress,
3529
3606
  abi: zoraCreatorRedeemMinterFactoryABI
3530
3607
  };
3531
- var zoraMintsImplABI = [
3532
- {
3533
- stateMutability: "nonpayable",
3534
- type: "constructor",
3535
- inputs: [
3536
- {
3537
- name: "_premintExecutor",
3538
- internalType: "contract IPremintWithMints",
3539
- type: "address"
3540
- }
3541
- ]
3608
+
3609
+ // src/generated/1155.ts
3610
+ var __exports = {};
3611
+ __export(__exports, {
3612
+ addresses: () => addresses,
3613
+ chainConfigs: () => chainConfigs
3614
+ });
3615
+ var chainConfigs = {
3616
+ "1": {
3617
+ "FACTORY_OWNER": "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
3618
+ "MINT_FEE_RECIPIENT": "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0",
3619
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3542
3620
  },
3543
- {
3544
- stateMutability: "nonpayable",
3545
- type: "function",
3546
- inputs: [],
3547
- name: "acceptOwnership",
3548
- outputs: []
3621
+ "10": {
3622
+ "FACTORY_OWNER": "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
3623
+ "MINT_FEE_RECIPIENT": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c",
3624
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3549
3625
  },
3550
- {
3551
- stateMutability: "view",
3552
- type: "function",
3553
- inputs: [
3554
- { name: "account", internalType: "address", type: "address" },
3555
- { name: "id", internalType: "uint256", type: "uint256" }
3556
- ],
3557
- name: "balanceOf",
3558
- outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
3626
+ "999": {
3627
+ "FACTORY_OWNER": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
3628
+ "MINT_FEE_RECIPIENT": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
3629
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3559
3630
  },
3560
- {
3561
- stateMutability: "view",
3562
- type: "function",
3563
- inputs: [
3564
- { name: "accounts", internalType: "address[]", type: "address[]" },
3565
- { name: "ids", internalType: "uint256[]", type: "uint256[]" }
3566
- ],
3567
- name: "balanceOfBatch",
3568
- outputs: [{ name: "", internalType: "uint256[]", type: "uint256[]" }]
3631
+ "8453": {
3632
+ "FACTORY_OWNER": "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
3633
+ "MINT_FEE_RECIPIENT": "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6",
3634
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3569
3635
  },
3570
- {
3571
- stateMutability: "payable",
3572
- type: "function",
3573
- inputs: [
3574
- { name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
3575
- { name: "quantities", internalType: "uint256[]", type: "uint256[]" },
3576
- {
3577
- name: "zoraCreator1155Contract",
3578
- internalType: "contract IMintWithMints",
3579
- type: "address"
3580
- },
3581
- { name: "minter", internalType: "contract IMinter1155", type: "address" },
3582
- {
3583
- name: "zoraCreator1155TokenId",
3584
- internalType: "uint256",
3585
- type: "uint256"
3586
- },
3587
- {
3588
- name: "rewardsRecipients",
3589
- internalType: "address[]",
3590
- type: "address[]"
3591
- },
3592
- { name: "minterArguments", internalType: "bytes", type: "bytes" }
3593
- ],
3594
- name: "collect",
3595
- outputs: []
3596
- },
3597
- {
3598
- stateMutability: "payable",
3599
- type: "function",
3600
- inputs: [
3601
- { name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
3602
- { name: "quantities", internalType: "uint256[]", type: "uint256[]" },
3603
- {
3604
- name: "contractConfig",
3605
- internalType: "struct ContractCreationConfig",
3606
- type: "tuple",
3607
- components: [
3608
- { name: "contractAdmin", internalType: "address", type: "address" },
3609
- { name: "contractURI", internalType: "string", type: "string" },
3610
- { name: "contractName", internalType: "string", type: "string" }
3611
- ]
3612
- },
3613
- {
3614
- name: "premintConfig",
3615
- internalType: "struct PremintConfigV2",
3616
- type: "tuple",
3617
- components: [
3618
- {
3619
- name: "tokenConfig",
3620
- internalType: "struct TokenCreationConfigV2",
3621
- type: "tuple",
3622
- components: [
3623
- { name: "tokenURI", internalType: "string", type: "string" },
3624
- { name: "maxSupply", internalType: "uint256", type: "uint256" },
3625
- {
3626
- name: "maxTokensPerAddress",
3627
- internalType: "uint64",
3628
- type: "uint64"
3629
- },
3630
- { name: "pricePerToken", internalType: "uint96", type: "uint96" },
3631
- { name: "mintStart", internalType: "uint64", type: "uint64" },
3632
- { name: "mintDuration", internalType: "uint64", type: "uint64" },
3633
- { name: "royaltyBPS", internalType: "uint32", type: "uint32" },
3634
- {
3635
- name: "payoutRecipient",
3636
- internalType: "address",
3637
- type: "address"
3638
- },
3639
- {
3640
- name: "fixedPriceMinter",
3641
- internalType: "address",
3642
- type: "address"
3643
- },
3644
- {
3645
- name: "createReferral",
3646
- internalType: "address",
3647
- type: "address"
3648
- }
3649
- ]
3650
- },
3651
- { name: "uid", internalType: "uint32", type: "uint32" },
3652
- { name: "version", internalType: "uint32", type: "uint32" },
3653
- { name: "deleted", internalType: "bool", type: "bool" }
3654
- ]
3655
- },
3656
- { name: "signature", internalType: "bytes", type: "bytes" },
3657
- {
3658
- name: "mintArguments",
3659
- internalType: "struct MintArguments",
3660
- type: "tuple",
3661
- components: [
3662
- { name: "mintRecipient", internalType: "address", type: "address" },
3663
- { name: "mintComment", internalType: "string", type: "string" },
3664
- {
3665
- name: "mintRewardsRecipients",
3666
- internalType: "address[]",
3667
- type: "address[]"
3668
- }
3669
- ]
3670
- },
3671
- { name: "signerContract", internalType: "address", type: "address" }
3672
- ],
3673
- name: "collectPremintV2",
3674
- outputs: [
3675
- {
3676
- name: "result",
3677
- internalType: "struct PremintResult",
3678
- type: "tuple",
3679
- components: [
3680
- { name: "contractAddress", internalType: "address", type: "address" },
3681
- { name: "tokenId", internalType: "uint256", type: "uint256" },
3682
- { name: "createdNewContract", internalType: "bool", type: "bool" }
3683
- ]
3684
- }
3685
- ]
3686
- },
3687
- {
3688
- stateMutability: "pure",
3689
- type: "function",
3690
- inputs: [],
3691
- name: "contractVersion",
3692
- outputs: [{ name: "", internalType: "string", type: "string" }]
3693
- },
3694
- {
3695
- stateMutability: "nonpayable",
3696
- type: "function",
3697
- inputs: [
3698
- { name: "tokenId", internalType: "uint256", type: "uint256" },
3699
- { name: "pricePerToken", internalType: "uint256", type: "uint256" },
3700
- { name: "defaultMintable", internalType: "bool", type: "bool" }
3701
- ],
3702
- name: "createEthToken",
3703
- outputs: []
3704
- },
3705
- {
3706
- stateMutability: "view",
3707
- type: "function",
3708
- inputs: [],
3709
- name: "getEthPrice",
3710
- outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
3711
- },
3712
- {
3713
- stateMutability: "view",
3714
- type: "function",
3715
- inputs: [],
3716
- name: "implementation",
3717
- outputs: [{ name: "", internalType: "address", type: "address" }]
3718
- },
3719
- {
3720
- stateMutability: "nonpayable",
3721
- type: "function",
3722
- inputs: [
3723
- { name: "initialOwner", internalType: "address", type: "address" },
3724
- { name: "initialEthTokenId", internalType: "uint256", type: "uint256" },
3725
- {
3726
- name: "initialEthTokenPrice",
3727
- internalType: "uint256",
3728
- type: "uint256"
3729
- }
3730
- ],
3731
- name: "initialize",
3732
- outputs: []
3733
- },
3734
- {
3735
- stateMutability: "view",
3736
- type: "function",
3737
- inputs: [
3738
- { name: "account", internalType: "address", type: "address" },
3739
- { name: "operator", internalType: "address", type: "address" }
3740
- ],
3741
- name: "isApprovedForAll",
3742
- outputs: [{ name: "", internalType: "bool", type: "bool" }]
3743
- },
3744
- {
3745
- stateMutability: "payable",
3746
- type: "function",
3747
- inputs: [
3748
- { name: "quantity", internalType: "uint256", type: "uint256" },
3749
- { name: "recipient", internalType: "address", type: "address" }
3750
- ],
3751
- name: "mintWithEth",
3752
- outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
3753
- },
3754
- {
3755
- stateMutability: "view",
3756
- type: "function",
3757
- inputs: [],
3758
- name: "mintableEthToken",
3759
- outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
3760
- },
3761
- {
3762
- stateMutability: "pure",
3763
- type: "function",
3764
- inputs: [],
3765
- name: "name",
3766
- outputs: [{ name: "", internalType: "string", type: "string" }]
3767
- },
3768
- {
3769
- stateMutability: "view",
3770
- type: "function",
3771
- inputs: [],
3772
- name: "owner",
3773
- outputs: [{ name: "", internalType: "address", type: "address" }]
3774
- },
3775
- {
3776
- stateMutability: "view",
3777
- type: "function",
3778
- inputs: [],
3779
- name: "pendingOwner",
3780
- outputs: [{ name: "", internalType: "address", type: "address" }]
3781
- },
3782
- {
3783
- stateMutability: "view",
3784
- type: "function",
3785
- inputs: [],
3786
- name: "premintExecutor",
3787
- outputs: [
3788
- { name: "", internalType: "contract IPremintWithMints", type: "address" }
3789
- ]
3790
- },
3791
- {
3792
- stateMutability: "nonpayable",
3793
- type: "function",
3794
- inputs: [
3795
- { name: "tokenId", internalType: "uint256", type: "uint256" },
3796
- { name: "quantity", internalType: "uint256", type: "uint256" },
3797
- { name: "recipient", internalType: "address", type: "address" }
3798
- ],
3799
- name: "redeem",
3800
- outputs: [
3801
- { name: "valueRedeemed", internalType: "uint256", type: "uint256" }
3802
- ]
3803
- },
3804
- {
3805
- stateMutability: "nonpayable",
3806
- type: "function",
3807
- inputs: [
3808
- { name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
3809
- { name: "quantities", internalType: "uint256[]", type: "uint256[]" },
3810
- { name: "recipient", internalType: "address", type: "address" }
3811
- ],
3812
- name: "redeemBatch",
3813
- outputs: [
3814
- { name: "valueRedeemed", internalType: "uint256", type: "uint256" }
3815
- ]
3816
- },
3817
- {
3818
- stateMutability: "nonpayable",
3819
- type: "function",
3820
- inputs: [],
3821
- name: "renounceOwnership",
3822
- outputs: []
3823
- },
3824
- {
3825
- stateMutability: "nonpayable",
3826
- type: "function",
3827
- inputs: [
3828
- { name: "from", internalType: "address", type: "address" },
3829
- { name: "to", internalType: "address", type: "address" },
3830
- { name: "ids", internalType: "uint256[]", type: "uint256[]" },
3831
- { name: "values", internalType: "uint256[]", type: "uint256[]" },
3832
- { name: "data", internalType: "bytes", type: "bytes" }
3833
- ],
3834
- name: "safeBatchTransferFrom",
3835
- outputs: []
3836
- },
3837
- {
3838
- stateMutability: "nonpayable",
3839
- type: "function",
3840
- inputs: [
3841
- { name: "from", internalType: "address", type: "address" },
3842
- { name: "to", internalType: "address", type: "address" },
3843
- { name: "id", internalType: "uint256", type: "uint256" },
3844
- { name: "value", internalType: "uint256", type: "uint256" },
3845
- { name: "data", internalType: "bytes", type: "bytes" }
3846
- ],
3847
- name: "safeTransferFrom",
3848
- outputs: []
3849
- },
3850
- {
3851
- stateMutability: "nonpayable",
3852
- type: "function",
3853
- inputs: [
3854
- { name: "operator", internalType: "address", type: "address" },
3855
- { name: "approved", internalType: "bool", type: "bool" }
3856
- ],
3857
- name: "setApprovalForAll",
3858
- outputs: []
3859
- },
3860
- {
3861
- stateMutability: "nonpayable",
3862
- type: "function",
3863
- inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
3864
- name: "setMintableEthToken",
3865
- outputs: []
3866
- },
3867
- {
3868
- stateMutability: "view",
3869
- type: "function",
3870
- inputs: [{ name: "interfaceId", internalType: "bytes4", type: "bytes4" }],
3871
- name: "supportsInterface",
3872
- outputs: [{ name: "", internalType: "bool", type: "bool" }]
3873
- },
3874
- {
3875
- stateMutability: "pure",
3876
- type: "function",
3877
- inputs: [],
3878
- name: "symbol",
3879
- outputs: [{ name: "", internalType: "string", type: "string" }]
3880
- },
3881
- {
3882
- stateMutability: "view",
3883
- type: "function",
3884
- inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
3885
- name: "tokenCreated",
3886
- outputs: [{ name: "", internalType: "bool", type: "bool" }]
3887
- },
3888
- {
3889
- stateMutability: "view",
3890
- type: "function",
3891
- inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
3892
- name: "tokenPrice",
3893
- outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
3894
- },
3895
- {
3896
- stateMutability: "nonpayable",
3897
- type: "function",
3898
- inputs: [{ name: "newOwner", internalType: "address", type: "address" }],
3899
- name: "transferOwnership",
3900
- outputs: []
3901
- },
3902
- {
3903
- stateMutability: "view",
3904
- type: "function",
3905
- inputs: [{ name: "", internalType: "uint256", type: "uint256" }],
3906
- name: "uri",
3907
- outputs: [{ name: "", internalType: "string", type: "string" }]
3908
- },
3909
- {
3910
- type: "event",
3911
- anonymous: false,
3912
- inputs: [
3913
- {
3914
- name: "account",
3915
- internalType: "address",
3916
- type: "address",
3917
- indexed: true
3918
- },
3919
- {
3920
- name: "operator",
3921
- internalType: "address",
3922
- type: "address",
3923
- indexed: true
3924
- },
3925
- { name: "approved", internalType: "bool", type: "bool", indexed: false }
3926
- ],
3927
- name: "ApprovalForAll"
3928
- },
3929
- {
3930
- type: "event",
3931
- anonymous: false,
3932
- inputs: [
3933
- {
3934
- name: "tokenIds",
3935
- internalType: "uint256[]",
3936
- type: "uint256[]",
3937
- indexed: true
3938
- },
3939
- {
3940
- name: "quantities",
3941
- internalType: "uint256[]",
3942
- type: "uint256[]",
3943
- indexed: false
3944
- },
3945
- {
3946
- name: "zoraCreator1155Contract",
3947
- internalType: "address",
3948
- type: "address",
3949
- indexed: true
3950
- },
3951
- {
3952
- name: "zoraCreator1155TokenId",
3953
- internalType: "uint256",
3954
- type: "uint256",
3955
- indexed: true
3956
- }
3957
- ],
3958
- name: "Collected"
3959
- },
3960
- {
3961
- type: "event",
3962
- anonymous: false,
3963
- inputs: [
3964
- {
3965
- name: "tokenId",
3966
- internalType: "uint256",
3967
- type: "uint256",
3968
- indexed: true
3969
- }
3970
- ],
3971
- name: "EthMintableTokenSet"
3972
- },
3973
- {
3974
- type: "event",
3975
- anonymous: false,
3976
- inputs: [
3977
- {
3978
- name: "tokenId",
3979
- internalType: "uint256",
3980
- type: "uint256",
3981
- indexed: true
3982
- },
3983
- {
3984
- name: "pricePerToken",
3985
- internalType: "uint256",
3986
- type: "uint256",
3987
- indexed: true
3988
- }
3989
- ],
3990
- name: "EthTokenCreated"
3991
- },
3992
- {
3993
- type: "event",
3994
- anonymous: false,
3995
- inputs: [
3996
- {
3997
- name: "version",
3998
- internalType: "uint64",
3999
- type: "uint64",
4000
- indexed: false
4001
- }
4002
- ],
4003
- name: "Initialized"
4004
- },
4005
- {
4006
- type: "event",
4007
- anonymous: false,
4008
- inputs: [
4009
- {
4010
- name: "previousOwner",
4011
- internalType: "address",
4012
- type: "address",
4013
- indexed: true
4014
- },
4015
- {
4016
- name: "newOwner",
4017
- internalType: "address",
4018
- type: "address",
4019
- indexed: true
4020
- }
4021
- ],
4022
- name: "OwnershipTransferStarted"
4023
- },
4024
- {
4025
- type: "event",
4026
- anonymous: false,
4027
- inputs: [
4028
- {
4029
- name: "previousOwner",
4030
- internalType: "address",
4031
- type: "address",
4032
- indexed: true
4033
- },
4034
- {
4035
- name: "newOwner",
4036
- internalType: "address",
4037
- type: "address",
4038
- indexed: true
4039
- }
4040
- ],
4041
- name: "OwnershipTransferred"
4042
- },
4043
- {
4044
- type: "event",
4045
- anonymous: false,
4046
- inputs: [
4047
- {
4048
- name: "tokenIds",
4049
- internalType: "uint256[]",
4050
- type: "uint256[]",
4051
- indexed: false
4052
- },
4053
- {
4054
- name: "quantities",
4055
- internalType: "uint256[]",
4056
- type: "uint256[]",
4057
- indexed: false
4058
- },
4059
- {
4060
- name: "recipient",
4061
- internalType: "address",
4062
- type: "address",
4063
- indexed: false
4064
- }
4065
- ],
4066
- name: "RedeemedBatch"
4067
- },
4068
- {
4069
- type: "event",
4070
- anonymous: false,
4071
- inputs: [
4072
- {
4073
- name: "operator",
4074
- internalType: "address",
4075
- type: "address",
4076
- indexed: true
4077
- },
4078
- { name: "from", internalType: "address", type: "address", indexed: true },
4079
- { name: "to", internalType: "address", type: "address", indexed: true },
4080
- {
4081
- name: "ids",
4082
- internalType: "uint256[]",
4083
- type: "uint256[]",
4084
- indexed: false
4085
- },
4086
- {
4087
- name: "values",
4088
- internalType: "uint256[]",
4089
- type: "uint256[]",
4090
- indexed: false
4091
- }
4092
- ],
4093
- name: "TransferBatch"
4094
- },
4095
- {
4096
- type: "event",
4097
- anonymous: false,
4098
- inputs: [
4099
- {
4100
- name: "operator",
4101
- internalType: "address",
4102
- type: "address",
4103
- indexed: true
4104
- },
4105
- { name: "from", internalType: "address", type: "address", indexed: true },
4106
- { name: "to", internalType: "address", type: "address", indexed: true },
4107
- { name: "id", internalType: "uint256", type: "uint256", indexed: false },
4108
- {
4109
- name: "value",
4110
- internalType: "uint256",
4111
- type: "uint256",
4112
- indexed: false
4113
- }
4114
- ],
4115
- name: "TransferSingle"
4116
- },
4117
- {
4118
- type: "event",
4119
- anonymous: false,
4120
- inputs: [
4121
- { name: "value", internalType: "string", type: "string", indexed: false },
4122
- { name: "id", internalType: "uint256", type: "uint256", indexed: true }
4123
- ],
4124
- name: "URI"
4125
- },
4126
- {
4127
- type: "error",
4128
- inputs: [
4129
- { name: "operator", internalType: "address", type: "address" },
4130
- { name: "user", internalType: "address", type: "address" }
4131
- ],
4132
- name: "Burn_NotOwnerOrApproved"
4133
- },
4134
- {
4135
- type: "error",
4136
- inputs: [{ name: "reason", internalType: "bytes", type: "bytes" }],
4137
- name: "CallFailed"
4138
- },
4139
- { type: "error", inputs: [], name: "Call_TokenIdMismatch" },
4140
- { type: "error", inputs: [], name: "CallerNotZoraCreator1155" },
4141
- {
4142
- type: "error",
4143
- inputs: [
4144
- { name: "tokenId", internalType: "uint256", type: "uint256" },
4145
- { name: "quantity", internalType: "uint256", type: "uint256" },
4146
- { name: "totalMinted", internalType: "uint256", type: "uint256" },
4147
- { name: "maxSupply", internalType: "uint256", type: "uint256" }
4148
- ],
4149
- name: "CannotMintMoreTokens"
4150
- },
4151
- {
4152
- type: "error",
4153
- inputs: [
4154
- { name: "proposedAddress", internalType: "address", type: "address" }
4155
- ],
4156
- name: "Config_TransferHookNotSupported"
4157
- },
4158
- {
4159
- type: "error",
4160
- inputs: [
4161
- { name: "sender", internalType: "address", type: "address" },
4162
- { name: "balance", internalType: "uint256", type: "uint256" },
4163
- { name: "needed", internalType: "uint256", type: "uint256" },
4164
- { name: "tokenId", internalType: "uint256", type: "uint256" }
4165
- ],
4166
- name: "ERC1155InsufficientBalance"
4167
- },
4168
- {
4169
- type: "error",
4170
- inputs: [{ name: "approver", internalType: "address", type: "address" }],
4171
- name: "ERC1155InvalidApprover"
4172
- },
4173
- {
4174
- type: "error",
4175
- inputs: [
4176
- { name: "idsLength", internalType: "uint256", type: "uint256" },
4177
- { name: "valuesLength", internalType: "uint256", type: "uint256" }
4178
- ],
4179
- name: "ERC1155InvalidArrayLength"
4180
- },
4181
- {
4182
- type: "error",
4183
- inputs: [{ name: "operator", internalType: "address", type: "address" }],
4184
- name: "ERC1155InvalidOperator"
4185
- },
4186
- {
4187
- type: "error",
4188
- inputs: [{ name: "receiver", internalType: "address", type: "address" }],
4189
- name: "ERC1155InvalidReceiver"
4190
- },
4191
- {
4192
- type: "error",
4193
- inputs: [{ name: "sender", internalType: "address", type: "address" }],
4194
- name: "ERC1155InvalidSender"
4195
- },
4196
- {
4197
- type: "error",
4198
- inputs: [
4199
- { name: "operator", internalType: "address", type: "address" },
4200
- { name: "owner", internalType: "address", type: "address" }
4201
- ],
4202
- name: "ERC1155MissingApprovalForAll"
4203
- },
4204
- { type: "error", inputs: [], name: "ERC1155_MINT_TO_ZERO_ADDRESS" },
4205
- {
4206
- type: "error",
4207
- inputs: [
4208
- { name: "recipient", internalType: "address", type: "address" },
4209
- { name: "amount", internalType: "uint256", type: "uint256" }
4210
- ],
4211
- name: "ETHWithdrawFailed"
4212
- },
4213
- {
4214
- type: "error",
4215
- inputs: [
4216
- { name: "amount", internalType: "uint256", type: "uint256" },
4217
- { name: "contractValue", internalType: "uint256", type: "uint256" }
4218
- ],
4219
- name: "FundsWithdrawInsolvent"
4220
- },
4221
- { type: "error", inputs: [], name: "IncorrectAmountSent" },
4222
- { type: "error", inputs: [], name: "InvalidInitialization" },
4223
- {
4224
- type: "error",
4225
- inputs: [
4226
- { name: "mintTo", internalType: "address", type: "address" },
4227
- { name: "merkleProof", internalType: "bytes32[]", type: "bytes32[]" },
4228
- { name: "merkleRoot", internalType: "bytes32", type: "bytes32" }
4229
- ],
4230
- name: "InvalidMerkleProof"
4231
- },
4232
- { type: "error", inputs: [], name: "InvalidMintSchedule" },
4233
- { type: "error", inputs: [], name: "InvalidSignature" },
4234
- { type: "error", inputs: [], name: "InvalidSignatureVersion" },
4235
- {
4236
- type: "error",
4237
- inputs: [{ name: "magicValue", internalType: "bytes4", type: "bytes4" }],
4238
- name: "InvalidSigner"
4239
- },
4240
- { type: "error", inputs: [], name: "InvalidTokenPrice" },
4241
- { type: "error", inputs: [], name: "MintNotYetStarted" },
4242
- { type: "error", inputs: [], name: "Mint_InsolventSaleTransfer" },
4243
- { type: "error", inputs: [], name: "Mint_InvalidMintArrayLength" },
4244
- { type: "error", inputs: [], name: "Mint_TokenIDMintNotAllowed" },
4245
- { type: "error", inputs: [], name: "Mint_UnknownCommand" },
4246
- { type: "error", inputs: [], name: "Mint_ValueTransferFail" },
4247
- { type: "error", inputs: [], name: "MinterContractAlreadyExists" },
4248
- { type: "error", inputs: [], name: "MinterContractDoesNotExist" },
4249
- { type: "error", inputs: [], name: "NewOwnerNeedsToBeAdmin" },
4250
- { type: "error", inputs: [], name: "NotInitializing" },
4251
- {
4252
- type: "error",
4253
- inputs: [{ name: "owner", internalType: "address", type: "address" }],
4254
- name: "OwnableInvalidOwner"
4255
- },
4256
- {
4257
- type: "error",
4258
- inputs: [{ name: "account", internalType: "address", type: "address" }],
4259
- name: "OwnableUnauthorizedAccount"
4260
- },
4261
- { type: "error", inputs: [], name: "PremintDeleted" },
4262
- {
4263
- type: "error",
4264
- inputs: [
4265
- { name: "caller", internalType: "address", type: "address" },
4266
- { name: "recipient", internalType: "address", type: "address" },
4267
- { name: "amount", internalType: "uint256", type: "uint256" }
4268
- ],
4269
- name: "ProtocolRewardsWithdrawFailed"
4270
- },
4271
- { type: "error", inputs: [], name: "Renderer_NotValidRendererContract" },
4272
- { type: "error", inputs: [], name: "SaleEnded" },
4273
- { type: "error", inputs: [], name: "SaleHasNotStarted" },
4274
- {
4275
- type: "error",
4276
- inputs: [
4277
- { name: "targetContract", internalType: "address", type: "address" }
4278
- ],
4279
- name: "Sale_CannotCallNonSalesContract"
4280
- },
4281
- { type: "error", inputs: [], name: "TokenAlreadyCreated" },
4282
- { type: "error", inputs: [], name: "TokenDoesNotExist" },
4283
- {
4284
- type: "error",
4285
- inputs: [
4286
- { name: "expected", internalType: "uint256", type: "uint256" },
4287
- { name: "actual", internalType: "uint256", type: "uint256" }
4288
- ],
4289
- name: "TokenIdMismatch"
4290
- },
4291
- { type: "error", inputs: [], name: "TransferFailed" },
4292
- {
4293
- type: "error",
4294
- inputs: [
4295
- { name: "user", internalType: "address", type: "address" },
4296
- { name: "limit", internalType: "uint256", type: "uint256" },
4297
- { name: "requestedAmount", internalType: "uint256", type: "uint256" }
4298
- ],
4299
- name: "UserExceedsMintLimit"
4300
- },
4301
- {
4302
- type: "error",
4303
- inputs: [
4304
- { name: "user", internalType: "address", type: "address" },
4305
- { name: "tokenId", internalType: "uint256", type: "uint256" },
4306
- { name: "role", internalType: "uint256", type: "uint256" }
4307
- ],
4308
- name: "UserMissingRoleForToken"
4309
- },
4310
- { type: "error", inputs: [], name: "WrongValueSent" },
4311
- {
4312
- type: "error",
4313
- inputs: [],
4314
- name: "premintSignerContractFailedToRecoverSigner"
4315
- },
4316
- { type: "error", inputs: [], name: "premintSignerContractNotAContract" }
4317
- ];
4318
- var zoraMintsImplAddress = {
4319
- 999999999: "0x77777773dE7607C8d2eF571ba03ab22a7df64CEA"
4320
- };
4321
- var zoraMintsImplConfig = {
4322
- address: zoraMintsImplAddress,
4323
- abi: zoraMintsImplABI
4324
- };
4325
-
4326
- // src/generated/1155.ts
4327
- var __exports = {};
4328
- __export(__exports, {
4329
- addresses: () => addresses,
4330
- chainConfigs: () => chainConfigs
4331
- });
4332
- var chainConfigs = {
4333
- "1": {
4334
- "FACTORY_OWNER": "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
4335
- "MINT_FEE_RECIPIENT": "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0",
4336
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4337
- },
4338
- "10": {
4339
- "FACTORY_OWNER": "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
4340
- "MINT_FEE_RECIPIENT": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c",
4341
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4342
- },
4343
- "999": {
4344
- "FACTORY_OWNER": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
4345
- "MINT_FEE_RECIPIENT": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
4346
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4347
- },
4348
- "8453": {
4349
- "FACTORY_OWNER": "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
4350
- "MINT_FEE_RECIPIENT": "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6",
4351
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4352
- },
4353
- "42161": {
4354
- "FACTORY_OWNER": "0xF7DafC329C93D84267c0E7B146C0bD68807f6A03",
4355
- "MINT_FEE_RECIPIENT": "0x10Fb02A68C3EA8bD439A6f515dcE07CC049f5c94",
4356
- "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
3636
+ "42161": {
3637
+ "FACTORY_OWNER": "0xF7DafC329C93D84267c0E7B146C0bD68807f6A03",
3638
+ "MINT_FEE_RECIPIENT": "0x10Fb02A68C3EA8bD439A6f515dcE07CC049f5c94",
3639
+ "PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
4357
3640
  },
4358
3641
  "81457": {
4359
3642
  "FACTORY_OWNER": "0x5b297B1b87f8De28C9fA7AFe183Db9F9e6295523",
@@ -4394,11 +3677,12 @@ var addresses = {
4394
3677
  "FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
4395
3678
  "FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
4396
3679
  "MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
4397
- "PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
3680
+ "PREMINTER_IMPL": "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
4398
3681
  "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
4399
3682
  "REDEEM_MINTER_FACTORY": "0x78964965cF77850224513a367f899435C5B69174",
4400
3683
  "UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
4401
- "timestamp": 1704400466
3684
+ "ERC20_MINTER": "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
3685
+ "timestamp": 1706664239
4402
3686
  },
4403
3687
  "10": {
4404
3688
  "CONTRACT_1155_IMPL": "0xECfbCf718E17B6e76A675dDB936a9249C69DD2aA",
@@ -4407,11 +3691,12 @@ var addresses = {
4407
3691
  "FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
4408
3692
  "FIXED_PRICE_SALE_STRATEGY": "0x3678862f04290E565cCA2EF163BAeb92Bb76790C",
4409
3693
  "MERKLE_MINT_SALE_STRATEGY": "0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8",
4410
- "PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
3694
+ "PREMINTER_IMPL": "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
4411
3695
  "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
4412
3696
  "REDEEM_MINTER_FACTORY": "0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2",
4413
3697
  "UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
4414
- "timestamp": 1704396387
3698
+ "ERC20_MINTER": "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
3699
+ "timestamp": 1706664035
4415
3700
  },
4416
3701
  "999": {
4417
3702
  "CONTRACT_1155_IMPL": "0x2022AdEF470DA3543a19fac8c9be80618112704D",
@@ -4433,11 +3718,12 @@ var addresses = {
4433
3718
  "FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
4434
3719
  "FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
4435
3720
  "MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
4436
- "PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
3721
+ "PREMINTER_IMPL": "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
4437
3722
  "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
4438
3723
  "REDEEM_MINTER_FACTORY": "0x78964965cF77850224513a367f899435C5B69174",
4439
3724
  "UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
4440
- "timestamp": 1704396122
3725
+ "ERC20_MINTER": "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
3726
+ "timestamp": 1706663976
4441
3727
  },
4442
3728
  "42161": {
4443
3729
  "CONTRACT_1155_IMPL": "0x97eb05B8db496B12244BCcf17CF377d00a99b67a",
@@ -4446,11 +3732,12 @@ var addresses = {
4446
3732
  "FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
4447
3733
  "FIXED_PRICE_SALE_STRATEGY": "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
4448
3734
  "MERKLE_MINT_SALE_STRATEGY": "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
4449
- "PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
3735
+ "PREMINTER_IMPL": "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
4450
3736
  "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
4451
3737
  "REDEEM_MINTER_FACTORY": "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
4452
3738
  "UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
4453
- "timestamp": 1704914719
3739
+ "ERC20_MINTER": "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
3740
+ "timestamp": 1706664653
4454
3741
  },
4455
3742
  "81457": {
4456
3743
  "CONTRACT_1155_IMPL": "0x97eb05B8db496B12244BCcf17CF377d00a99b67a",
@@ -4463,6 +3750,7 @@ var addresses = {
4463
3750
  "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
4464
3751
  "REDEEM_MINTER_FACTORY": "0x7A0dE1B1f5420Df5D946878fBe2cF109011BE614",
4465
3752
  "UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3753
+ "ERC20_MINTER": "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
4466
3754
  "timestamp": 1709235955
4467
3755
  },
4468
3756
  "421614": {
@@ -4476,6 +3764,7 @@ var addresses = {
4476
3764
  "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
4477
3765
  "REDEEM_MINTER_FACTORY": "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
4478
3766
  "UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3767
+ "ERC20_MINTER": "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
4479
3768
  "timestamp": 1706661669
4480
3769
  },
4481
3770
  "7777777": {
@@ -4485,11 +3774,12 @@ var addresses = {
4485
3774
  "FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
4486
3775
  "FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
4487
3776
  "MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
4488
- "PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
3777
+ "PREMINTER_IMPL": "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
4489
3778
  "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
4490
3779
  "REDEEM_MINTER_FACTORY": "0x78964965cF77850224513a367f899435C5B69174",
4491
3780
  "UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
4492
- "timestamp": 1704401901
3781
+ "ERC20_MINTER": "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
3782
+ "timestamp": 1706663694
4493
3783
  },
4494
3784
  "11155111": {
4495
3785
  "CONTRACT_1155_IMPL": "0x437A762fc2a8f898Aa7a2575Be21c41753DC4797",
@@ -4502,6 +3792,7 @@ var addresses = {
4502
3792
  "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
4503
3793
  "REDEEM_MINTER_FACTORY": "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
4504
3794
  "UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
3795
+ "ERC20_MINTER": "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
4505
3796
  "timestamp": 1704336497
4506
3797
  },
4507
3798
  "168587773": {
@@ -4524,69 +3815,16 @@ var addresses = {
4524
3815
  "FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
4525
3816
  "FIXED_PRICE_SALE_STRATEGY": "0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A",
4526
3817
  "MERKLE_MINT_SALE_STRATEGY": "0x5e5fD4b758076BAD940db0284b711A67E8a3B88c",
4527
- "PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
3818
+ "PREMINTER_IMPL": "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
4528
3819
  "PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
4529
3820
  "REDEEM_MINTER_FACTORY": "0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6",
4530
3821
  "UPGRADE_GATE": "0x0000000000000000000000000000000000000000",
4531
- "timestamp": 1703007364,
4532
- "commit": "bdf6682"
4533
- }
4534
- };
4535
-
4536
- // src/generated/mints.ts
4537
- var mints_exports = {};
4538
- __export(mints_exports, {
4539
- addresses: () => addresses2,
4540
- chainConfigs: () => chainConfigs2
4541
- });
4542
- var chainConfigs2 = {
4543
- "1": {
4544
- "PROXY_ADMIN": "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
4545
- "MINTS_OWNER": "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0"
4546
- },
4547
- "10": {
4548
- "PROXY_ADMIN": "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
4549
- "MINTS_OWNER": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c"
4550
- },
4551
- "420": {
4552
- "PROXY_ADMIN": "0xbb45052B2260707655Dfd916a416264f5981192c",
4553
- "MINTS_OWNER": "0x5dEe21327CD7CD6725C2578DA1c3E5bb2D2D34b2"
4554
- },
4555
- "999": {
4556
- "PROXY_ADMIN": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
4557
- "MINTS_OWNER": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252"
4558
- },
4559
- "8453": {
4560
- "PROXY_ADMIN": "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
4561
- "MINTS_OWNER": "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6"
4562
- },
4563
- "84531": {
4564
- "PROXY_ADMIN": "0x02539E813cA450C2c7334e885423f4A899a063Fe",
4565
- "MINTS_OWNER": "0x02539E813cA450C2c7334e885423f4A899a063Fe"
4566
- },
4567
- "7777777": {
4568
- "PROXY_ADMIN": "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
4569
- "MINTS_OWNER": "0xEcfc2ee50409E459c554a2b0376F882Ce916D853"
4570
- },
4571
- "11155111": {
4572
- "PROXY_ADMIN": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
4573
- "MINTS_OWNER": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D"
4574
- },
4575
- "999999999": {
4576
- "PROXY_ADMIN": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
4577
- "MINTS_OWNER": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E"
4578
- }
4579
- };
4580
- var addresses2 = {
4581
- "999999999": {
4582
- "MINTS_IMPL": "0x4D1d4767d5f2cC3884E221c340240BEa0B42b7BA",
4583
- "MINTS_IMPL_VERSION": "0.0.2"
3822
+ "timestamp": 1706663810
4584
3823
  }
4585
3824
  };
4586
3825
  // Annotate the CommonJS export names for ESM import in node:
4587
3826
  0 && (module.exports = {
4588
3827
  contracts1155,
4589
- mints,
4590
3828
  zoraCreator1155FactoryImplABI,
4591
3829
  zoraCreator1155FactoryImplAddress,
4592
3830
  zoraCreator1155FactoryImplConfig,
@@ -4602,9 +3840,6 @@ var addresses2 = {
4602
3840
  zoraCreatorMerkleMinterStrategyConfig,
4603
3841
  zoraCreatorRedeemMinterFactoryABI,
4604
3842
  zoraCreatorRedeemMinterFactoryAddress,
4605
- zoraCreatorRedeemMinterFactoryConfig,
4606
- zoraMintsImplABI,
4607
- zoraMintsImplAddress,
4608
- zoraMintsImplConfig
3843
+ zoraCreatorRedeemMinterFactoryConfig
4609
3844
  });
4610
3845
  //# sourceMappingURL=index.cjs.map