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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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
 
@@ -3524,6 +3528,800 @@ var zoraCreatorRedeemMinterFactoryConfig = {
3524
3528
  address: zoraCreatorRedeemMinterFactoryAddress,
3525
3529
  abi: zoraCreatorRedeemMinterFactoryABI
3526
3530
  };
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
+ ]
3542
+ },
3543
+ {
3544
+ stateMutability: "nonpayable",
3545
+ type: "function",
3546
+ inputs: [],
3547
+ name: "acceptOwnership",
3548
+ outputs: []
3549
+ },
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" }]
3559
+ },
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[]" }]
3569
+ },
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
+ };
3527
4325
 
3528
4326
  // src/generated/1155.ts
3529
4327
  var __exports = {};
@@ -3734,9 +4532,61 @@ var addresses = {
3734
4532
  "commit": "bdf6682"
3735
4533
  }
3736
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"
4584
+ }
4585
+ };
3737
4586
  // Annotate the CommonJS export names for ESM import in node:
3738
4587
  0 && (module.exports = {
3739
4588
  contracts1155,
4589
+ mints,
3740
4590
  zoraCreator1155FactoryImplABI,
3741
4591
  zoraCreator1155FactoryImplAddress,
3742
4592
  zoraCreator1155FactoryImplConfig,
@@ -3752,6 +4602,9 @@ var addresses = {
3752
4602
  zoraCreatorMerkleMinterStrategyConfig,
3753
4603
  zoraCreatorRedeemMinterFactoryABI,
3754
4604
  zoraCreatorRedeemMinterFactoryAddress,
3755
- zoraCreatorRedeemMinterFactoryConfig
4605
+ zoraCreatorRedeemMinterFactoryConfig,
4606
+ zoraMintsImplABI,
4607
+ zoraMintsImplAddress,
4608
+ zoraMintsImplConfig
3756
4609
  });
3757
4610
  //# sourceMappingURL=index.cjs.map