@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.
@@ -3688,3 +3688,813 @@ export const zoraCreatorRedeemMinterFactoryConfig = {
3688
3688
  address: zoraCreatorRedeemMinterFactoryAddress,
3689
3689
  abi: zoraCreatorRedeemMinterFactoryABI,
3690
3690
  } as const
3691
+
3692
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
3693
+ // ZoraMintsImpl
3694
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
3695
+
3696
+ /**
3697
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777773dE7607C8d2eF571ba03ab22a7df64CEA)
3698
+ */
3699
+ export const zoraMintsImplABI = [
3700
+ {
3701
+ stateMutability: 'nonpayable',
3702
+ type: 'constructor',
3703
+ inputs: [
3704
+ {
3705
+ name: '_premintExecutor',
3706
+ internalType: 'contract IPremintWithMints',
3707
+ type: 'address',
3708
+ },
3709
+ ],
3710
+ },
3711
+ {
3712
+ stateMutability: 'nonpayable',
3713
+ type: 'function',
3714
+ inputs: [],
3715
+ name: 'acceptOwnership',
3716
+ outputs: [],
3717
+ },
3718
+ {
3719
+ stateMutability: 'view',
3720
+ type: 'function',
3721
+ inputs: [
3722
+ { name: 'account', internalType: 'address', type: 'address' },
3723
+ { name: 'id', internalType: 'uint256', type: 'uint256' },
3724
+ ],
3725
+ name: 'balanceOf',
3726
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
3727
+ },
3728
+ {
3729
+ stateMutability: 'view',
3730
+ type: 'function',
3731
+ inputs: [
3732
+ { name: 'accounts', internalType: 'address[]', type: 'address[]' },
3733
+ { name: 'ids', internalType: 'uint256[]', type: 'uint256[]' },
3734
+ ],
3735
+ name: 'balanceOfBatch',
3736
+ outputs: [{ name: '', internalType: 'uint256[]', type: 'uint256[]' }],
3737
+ },
3738
+ {
3739
+ stateMutability: 'payable',
3740
+ type: 'function',
3741
+ inputs: [
3742
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
3743
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
3744
+ {
3745
+ name: 'zoraCreator1155Contract',
3746
+ internalType: 'contract IMintWithMints',
3747
+ type: 'address',
3748
+ },
3749
+ { name: 'minter', internalType: 'contract IMinter1155', type: 'address' },
3750
+ {
3751
+ name: 'zoraCreator1155TokenId',
3752
+ internalType: 'uint256',
3753
+ type: 'uint256',
3754
+ },
3755
+ {
3756
+ name: 'rewardsRecipients',
3757
+ internalType: 'address[]',
3758
+ type: 'address[]',
3759
+ },
3760
+ { name: 'minterArguments', internalType: 'bytes', type: 'bytes' },
3761
+ ],
3762
+ name: 'collect',
3763
+ outputs: [],
3764
+ },
3765
+ {
3766
+ stateMutability: 'payable',
3767
+ type: 'function',
3768
+ inputs: [
3769
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
3770
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
3771
+ {
3772
+ name: 'contractConfig',
3773
+ internalType: 'struct ContractCreationConfig',
3774
+ type: 'tuple',
3775
+ components: [
3776
+ { name: 'contractAdmin', internalType: 'address', type: 'address' },
3777
+ { name: 'contractURI', internalType: 'string', type: 'string' },
3778
+ { name: 'contractName', internalType: 'string', type: 'string' },
3779
+ ],
3780
+ },
3781
+ {
3782
+ name: 'premintConfig',
3783
+ internalType: 'struct PremintConfigV2',
3784
+ type: 'tuple',
3785
+ components: [
3786
+ {
3787
+ name: 'tokenConfig',
3788
+ internalType: 'struct TokenCreationConfigV2',
3789
+ type: 'tuple',
3790
+ components: [
3791
+ { name: 'tokenURI', internalType: 'string', type: 'string' },
3792
+ { name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
3793
+ {
3794
+ name: 'maxTokensPerAddress',
3795
+ internalType: 'uint64',
3796
+ type: 'uint64',
3797
+ },
3798
+ { name: 'pricePerToken', internalType: 'uint96', type: 'uint96' },
3799
+ { name: 'mintStart', internalType: 'uint64', type: 'uint64' },
3800
+ { name: 'mintDuration', internalType: 'uint64', type: 'uint64' },
3801
+ { name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
3802
+ {
3803
+ name: 'payoutRecipient',
3804
+ internalType: 'address',
3805
+ type: 'address',
3806
+ },
3807
+ {
3808
+ name: 'fixedPriceMinter',
3809
+ internalType: 'address',
3810
+ type: 'address',
3811
+ },
3812
+ {
3813
+ name: 'createReferral',
3814
+ internalType: 'address',
3815
+ type: 'address',
3816
+ },
3817
+ ],
3818
+ },
3819
+ { name: 'uid', internalType: 'uint32', type: 'uint32' },
3820
+ { name: 'version', internalType: 'uint32', type: 'uint32' },
3821
+ { name: 'deleted', internalType: 'bool', type: 'bool' },
3822
+ ],
3823
+ },
3824
+ { name: 'signature', internalType: 'bytes', type: 'bytes' },
3825
+ {
3826
+ name: 'mintArguments',
3827
+ internalType: 'struct MintArguments',
3828
+ type: 'tuple',
3829
+ components: [
3830
+ { name: 'mintRecipient', internalType: 'address', type: 'address' },
3831
+ { name: 'mintComment', internalType: 'string', type: 'string' },
3832
+ {
3833
+ name: 'mintRewardsRecipients',
3834
+ internalType: 'address[]',
3835
+ type: 'address[]',
3836
+ },
3837
+ ],
3838
+ },
3839
+ { name: 'signerContract', internalType: 'address', type: 'address' },
3840
+ ],
3841
+ name: 'collectPremintV2',
3842
+ outputs: [
3843
+ {
3844
+ name: 'result',
3845
+ internalType: 'struct PremintResult',
3846
+ type: 'tuple',
3847
+ components: [
3848
+ { name: 'contractAddress', internalType: 'address', type: 'address' },
3849
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
3850
+ { name: 'createdNewContract', internalType: 'bool', type: 'bool' },
3851
+ ],
3852
+ },
3853
+ ],
3854
+ },
3855
+ {
3856
+ stateMutability: 'pure',
3857
+ type: 'function',
3858
+ inputs: [],
3859
+ name: 'contractVersion',
3860
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
3861
+ },
3862
+ {
3863
+ stateMutability: 'nonpayable',
3864
+ type: 'function',
3865
+ inputs: [
3866
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
3867
+ { name: 'pricePerToken', internalType: 'uint256', type: 'uint256' },
3868
+ { name: 'defaultMintable', internalType: 'bool', type: 'bool' },
3869
+ ],
3870
+ name: 'createEthToken',
3871
+ outputs: [],
3872
+ },
3873
+ {
3874
+ stateMutability: 'view',
3875
+ type: 'function',
3876
+ inputs: [],
3877
+ name: 'getEthPrice',
3878
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
3879
+ },
3880
+ {
3881
+ stateMutability: 'view',
3882
+ type: 'function',
3883
+ inputs: [],
3884
+ name: 'implementation',
3885
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
3886
+ },
3887
+ {
3888
+ stateMutability: 'nonpayable',
3889
+ type: 'function',
3890
+ inputs: [
3891
+ { name: 'initialOwner', internalType: 'address', type: 'address' },
3892
+ { name: 'initialEthTokenId', internalType: 'uint256', type: 'uint256' },
3893
+ {
3894
+ name: 'initialEthTokenPrice',
3895
+ internalType: 'uint256',
3896
+ type: 'uint256',
3897
+ },
3898
+ ],
3899
+ name: 'initialize',
3900
+ outputs: [],
3901
+ },
3902
+ {
3903
+ stateMutability: 'view',
3904
+ type: 'function',
3905
+ inputs: [
3906
+ { name: 'account', internalType: 'address', type: 'address' },
3907
+ { name: 'operator', internalType: 'address', type: 'address' },
3908
+ ],
3909
+ name: 'isApprovedForAll',
3910
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
3911
+ },
3912
+ {
3913
+ stateMutability: 'payable',
3914
+ type: 'function',
3915
+ inputs: [
3916
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
3917
+ { name: 'recipient', internalType: 'address', type: 'address' },
3918
+ ],
3919
+ name: 'mintWithEth',
3920
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
3921
+ },
3922
+ {
3923
+ stateMutability: 'view',
3924
+ type: 'function',
3925
+ inputs: [],
3926
+ name: 'mintableEthToken',
3927
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
3928
+ },
3929
+ {
3930
+ stateMutability: 'pure',
3931
+ type: 'function',
3932
+ inputs: [],
3933
+ name: 'name',
3934
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
3935
+ },
3936
+ {
3937
+ stateMutability: 'view',
3938
+ type: 'function',
3939
+ inputs: [],
3940
+ name: 'owner',
3941
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
3942
+ },
3943
+ {
3944
+ stateMutability: 'view',
3945
+ type: 'function',
3946
+ inputs: [],
3947
+ name: 'pendingOwner',
3948
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
3949
+ },
3950
+ {
3951
+ stateMutability: 'view',
3952
+ type: 'function',
3953
+ inputs: [],
3954
+ name: 'premintExecutor',
3955
+ outputs: [
3956
+ { name: '', internalType: 'contract IPremintWithMints', type: 'address' },
3957
+ ],
3958
+ },
3959
+ {
3960
+ stateMutability: 'nonpayable',
3961
+ type: 'function',
3962
+ inputs: [
3963
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
3964
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
3965
+ { name: 'recipient', internalType: 'address', type: 'address' },
3966
+ ],
3967
+ name: 'redeem',
3968
+ outputs: [
3969
+ { name: 'valueRedeemed', internalType: 'uint256', type: 'uint256' },
3970
+ ],
3971
+ },
3972
+ {
3973
+ stateMutability: 'nonpayable',
3974
+ type: 'function',
3975
+ inputs: [
3976
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
3977
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
3978
+ { name: 'recipient', internalType: 'address', type: 'address' },
3979
+ ],
3980
+ name: 'redeemBatch',
3981
+ outputs: [
3982
+ { name: 'valueRedeemed', internalType: 'uint256', type: 'uint256' },
3983
+ ],
3984
+ },
3985
+ {
3986
+ stateMutability: 'nonpayable',
3987
+ type: 'function',
3988
+ inputs: [],
3989
+ name: 'renounceOwnership',
3990
+ outputs: [],
3991
+ },
3992
+ {
3993
+ stateMutability: 'nonpayable',
3994
+ type: 'function',
3995
+ inputs: [
3996
+ { name: 'from', internalType: 'address', type: 'address' },
3997
+ { name: 'to', internalType: 'address', type: 'address' },
3998
+ { name: 'ids', internalType: 'uint256[]', type: 'uint256[]' },
3999
+ { name: 'values', internalType: 'uint256[]', type: 'uint256[]' },
4000
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4001
+ ],
4002
+ name: 'safeBatchTransferFrom',
4003
+ outputs: [],
4004
+ },
4005
+ {
4006
+ stateMutability: 'nonpayable',
4007
+ type: 'function',
4008
+ inputs: [
4009
+ { name: 'from', internalType: 'address', type: 'address' },
4010
+ { name: 'to', internalType: 'address', type: 'address' },
4011
+ { name: 'id', internalType: 'uint256', type: 'uint256' },
4012
+ { name: 'value', internalType: 'uint256', type: 'uint256' },
4013
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4014
+ ],
4015
+ name: 'safeTransferFrom',
4016
+ outputs: [],
4017
+ },
4018
+ {
4019
+ stateMutability: 'nonpayable',
4020
+ type: 'function',
4021
+ inputs: [
4022
+ { name: 'operator', internalType: 'address', type: 'address' },
4023
+ { name: 'approved', internalType: 'bool', type: 'bool' },
4024
+ ],
4025
+ name: 'setApprovalForAll',
4026
+ outputs: [],
4027
+ },
4028
+ {
4029
+ stateMutability: 'nonpayable',
4030
+ type: 'function',
4031
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
4032
+ name: 'setMintableEthToken',
4033
+ outputs: [],
4034
+ },
4035
+ {
4036
+ stateMutability: 'view',
4037
+ type: 'function',
4038
+ inputs: [{ name: 'interfaceId', internalType: 'bytes4', type: 'bytes4' }],
4039
+ name: 'supportsInterface',
4040
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
4041
+ },
4042
+ {
4043
+ stateMutability: 'pure',
4044
+ type: 'function',
4045
+ inputs: [],
4046
+ name: 'symbol',
4047
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4048
+ },
4049
+ {
4050
+ stateMutability: 'view',
4051
+ type: 'function',
4052
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
4053
+ name: 'tokenCreated',
4054
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
4055
+ },
4056
+ {
4057
+ stateMutability: 'view',
4058
+ type: 'function',
4059
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
4060
+ name: 'tokenPrice',
4061
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
4062
+ },
4063
+ {
4064
+ stateMutability: 'nonpayable',
4065
+ type: 'function',
4066
+ inputs: [{ name: 'newOwner', internalType: 'address', type: 'address' }],
4067
+ name: 'transferOwnership',
4068
+ outputs: [],
4069
+ },
4070
+ {
4071
+ stateMutability: 'view',
4072
+ type: 'function',
4073
+ inputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
4074
+ name: 'uri',
4075
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4076
+ },
4077
+ {
4078
+ type: 'event',
4079
+ anonymous: false,
4080
+ inputs: [
4081
+ {
4082
+ name: 'account',
4083
+ internalType: 'address',
4084
+ type: 'address',
4085
+ indexed: true,
4086
+ },
4087
+ {
4088
+ name: 'operator',
4089
+ internalType: 'address',
4090
+ type: 'address',
4091
+ indexed: true,
4092
+ },
4093
+ { name: 'approved', internalType: 'bool', type: 'bool', indexed: false },
4094
+ ],
4095
+ name: 'ApprovalForAll',
4096
+ },
4097
+ {
4098
+ type: 'event',
4099
+ anonymous: false,
4100
+ inputs: [
4101
+ {
4102
+ name: 'tokenIds',
4103
+ internalType: 'uint256[]',
4104
+ type: 'uint256[]',
4105
+ indexed: true,
4106
+ },
4107
+ {
4108
+ name: 'quantities',
4109
+ internalType: 'uint256[]',
4110
+ type: 'uint256[]',
4111
+ indexed: false,
4112
+ },
4113
+ {
4114
+ name: 'zoraCreator1155Contract',
4115
+ internalType: 'address',
4116
+ type: 'address',
4117
+ indexed: true,
4118
+ },
4119
+ {
4120
+ name: 'zoraCreator1155TokenId',
4121
+ internalType: 'uint256',
4122
+ type: 'uint256',
4123
+ indexed: true,
4124
+ },
4125
+ ],
4126
+ name: 'Collected',
4127
+ },
4128
+ {
4129
+ type: 'event',
4130
+ anonymous: false,
4131
+ inputs: [
4132
+ {
4133
+ name: 'tokenId',
4134
+ internalType: 'uint256',
4135
+ type: 'uint256',
4136
+ indexed: true,
4137
+ },
4138
+ ],
4139
+ name: 'EthMintableTokenSet',
4140
+ },
4141
+ {
4142
+ type: 'event',
4143
+ anonymous: false,
4144
+ inputs: [
4145
+ {
4146
+ name: 'tokenId',
4147
+ internalType: 'uint256',
4148
+ type: 'uint256',
4149
+ indexed: true,
4150
+ },
4151
+ {
4152
+ name: 'pricePerToken',
4153
+ internalType: 'uint256',
4154
+ type: 'uint256',
4155
+ indexed: true,
4156
+ },
4157
+ ],
4158
+ name: 'EthTokenCreated',
4159
+ },
4160
+ {
4161
+ type: 'event',
4162
+ anonymous: false,
4163
+ inputs: [
4164
+ {
4165
+ name: 'version',
4166
+ internalType: 'uint64',
4167
+ type: 'uint64',
4168
+ indexed: false,
4169
+ },
4170
+ ],
4171
+ name: 'Initialized',
4172
+ },
4173
+ {
4174
+ type: 'event',
4175
+ anonymous: false,
4176
+ inputs: [
4177
+ {
4178
+ name: 'previousOwner',
4179
+ internalType: 'address',
4180
+ type: 'address',
4181
+ indexed: true,
4182
+ },
4183
+ {
4184
+ name: 'newOwner',
4185
+ internalType: 'address',
4186
+ type: 'address',
4187
+ indexed: true,
4188
+ },
4189
+ ],
4190
+ name: 'OwnershipTransferStarted',
4191
+ },
4192
+ {
4193
+ type: 'event',
4194
+ anonymous: false,
4195
+ inputs: [
4196
+ {
4197
+ name: 'previousOwner',
4198
+ internalType: 'address',
4199
+ type: 'address',
4200
+ indexed: true,
4201
+ },
4202
+ {
4203
+ name: 'newOwner',
4204
+ internalType: 'address',
4205
+ type: 'address',
4206
+ indexed: true,
4207
+ },
4208
+ ],
4209
+ name: 'OwnershipTransferred',
4210
+ },
4211
+ {
4212
+ type: 'event',
4213
+ anonymous: false,
4214
+ inputs: [
4215
+ {
4216
+ name: 'tokenIds',
4217
+ internalType: 'uint256[]',
4218
+ type: 'uint256[]',
4219
+ indexed: false,
4220
+ },
4221
+ {
4222
+ name: 'quantities',
4223
+ internalType: 'uint256[]',
4224
+ type: 'uint256[]',
4225
+ indexed: false,
4226
+ },
4227
+ {
4228
+ name: 'recipient',
4229
+ internalType: 'address',
4230
+ type: 'address',
4231
+ indexed: false,
4232
+ },
4233
+ ],
4234
+ name: 'RedeemedBatch',
4235
+ },
4236
+ {
4237
+ type: 'event',
4238
+ anonymous: false,
4239
+ inputs: [
4240
+ {
4241
+ name: 'operator',
4242
+ internalType: 'address',
4243
+ type: 'address',
4244
+ indexed: true,
4245
+ },
4246
+ { name: 'from', internalType: 'address', type: 'address', indexed: true },
4247
+ { name: 'to', internalType: 'address', type: 'address', indexed: true },
4248
+ {
4249
+ name: 'ids',
4250
+ internalType: 'uint256[]',
4251
+ type: 'uint256[]',
4252
+ indexed: false,
4253
+ },
4254
+ {
4255
+ name: 'values',
4256
+ internalType: 'uint256[]',
4257
+ type: 'uint256[]',
4258
+ indexed: false,
4259
+ },
4260
+ ],
4261
+ name: 'TransferBatch',
4262
+ },
4263
+ {
4264
+ type: 'event',
4265
+ anonymous: false,
4266
+ inputs: [
4267
+ {
4268
+ name: 'operator',
4269
+ internalType: 'address',
4270
+ type: 'address',
4271
+ indexed: true,
4272
+ },
4273
+ { name: 'from', internalType: 'address', type: 'address', indexed: true },
4274
+ { name: 'to', internalType: 'address', type: 'address', indexed: true },
4275
+ { name: 'id', internalType: 'uint256', type: 'uint256', indexed: false },
4276
+ {
4277
+ name: 'value',
4278
+ internalType: 'uint256',
4279
+ type: 'uint256',
4280
+ indexed: false,
4281
+ },
4282
+ ],
4283
+ name: 'TransferSingle',
4284
+ },
4285
+ {
4286
+ type: 'event',
4287
+ anonymous: false,
4288
+ inputs: [
4289
+ { name: 'value', internalType: 'string', type: 'string', indexed: false },
4290
+ { name: 'id', internalType: 'uint256', type: 'uint256', indexed: true },
4291
+ ],
4292
+ name: 'URI',
4293
+ },
4294
+ {
4295
+ type: 'error',
4296
+ inputs: [
4297
+ { name: 'operator', internalType: 'address', type: 'address' },
4298
+ { name: 'user', internalType: 'address', type: 'address' },
4299
+ ],
4300
+ name: 'Burn_NotOwnerOrApproved',
4301
+ },
4302
+ {
4303
+ type: 'error',
4304
+ inputs: [{ name: 'reason', internalType: 'bytes', type: 'bytes' }],
4305
+ name: 'CallFailed',
4306
+ },
4307
+ { type: 'error', inputs: [], name: 'Call_TokenIdMismatch' },
4308
+ { type: 'error', inputs: [], name: 'CallerNotZoraCreator1155' },
4309
+ {
4310
+ type: 'error',
4311
+ inputs: [
4312
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4313
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
4314
+ { name: 'totalMinted', internalType: 'uint256', type: 'uint256' },
4315
+ { name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
4316
+ ],
4317
+ name: 'CannotMintMoreTokens',
4318
+ },
4319
+ {
4320
+ type: 'error',
4321
+ inputs: [
4322
+ { name: 'proposedAddress', internalType: 'address', type: 'address' },
4323
+ ],
4324
+ name: 'Config_TransferHookNotSupported',
4325
+ },
4326
+ {
4327
+ type: 'error',
4328
+ inputs: [
4329
+ { name: 'sender', internalType: 'address', type: 'address' },
4330
+ { name: 'balance', internalType: 'uint256', type: 'uint256' },
4331
+ { name: 'needed', internalType: 'uint256', type: 'uint256' },
4332
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4333
+ ],
4334
+ name: 'ERC1155InsufficientBalance',
4335
+ },
4336
+ {
4337
+ type: 'error',
4338
+ inputs: [{ name: 'approver', internalType: 'address', type: 'address' }],
4339
+ name: 'ERC1155InvalidApprover',
4340
+ },
4341
+ {
4342
+ type: 'error',
4343
+ inputs: [
4344
+ { name: 'idsLength', internalType: 'uint256', type: 'uint256' },
4345
+ { name: 'valuesLength', internalType: 'uint256', type: 'uint256' },
4346
+ ],
4347
+ name: 'ERC1155InvalidArrayLength',
4348
+ },
4349
+ {
4350
+ type: 'error',
4351
+ inputs: [{ name: 'operator', internalType: 'address', type: 'address' }],
4352
+ name: 'ERC1155InvalidOperator',
4353
+ },
4354
+ {
4355
+ type: 'error',
4356
+ inputs: [{ name: 'receiver', internalType: 'address', type: 'address' }],
4357
+ name: 'ERC1155InvalidReceiver',
4358
+ },
4359
+ {
4360
+ type: 'error',
4361
+ inputs: [{ name: 'sender', internalType: 'address', type: 'address' }],
4362
+ name: 'ERC1155InvalidSender',
4363
+ },
4364
+ {
4365
+ type: 'error',
4366
+ inputs: [
4367
+ { name: 'operator', internalType: 'address', type: 'address' },
4368
+ { name: 'owner', internalType: 'address', type: 'address' },
4369
+ ],
4370
+ name: 'ERC1155MissingApprovalForAll',
4371
+ },
4372
+ { type: 'error', inputs: [], name: 'ERC1155_MINT_TO_ZERO_ADDRESS' },
4373
+ {
4374
+ type: 'error',
4375
+ inputs: [
4376
+ { name: 'recipient', internalType: 'address', type: 'address' },
4377
+ { name: 'amount', internalType: 'uint256', type: 'uint256' },
4378
+ ],
4379
+ name: 'ETHWithdrawFailed',
4380
+ },
4381
+ {
4382
+ type: 'error',
4383
+ inputs: [
4384
+ { name: 'amount', internalType: 'uint256', type: 'uint256' },
4385
+ { name: 'contractValue', internalType: 'uint256', type: 'uint256' },
4386
+ ],
4387
+ name: 'FundsWithdrawInsolvent',
4388
+ },
4389
+ { type: 'error', inputs: [], name: 'IncorrectAmountSent' },
4390
+ { type: 'error', inputs: [], name: 'InvalidInitialization' },
4391
+ {
4392
+ type: 'error',
4393
+ inputs: [
4394
+ { name: 'mintTo', internalType: 'address', type: 'address' },
4395
+ { name: 'merkleProof', internalType: 'bytes32[]', type: 'bytes32[]' },
4396
+ { name: 'merkleRoot', internalType: 'bytes32', type: 'bytes32' },
4397
+ ],
4398
+ name: 'InvalidMerkleProof',
4399
+ },
4400
+ { type: 'error', inputs: [], name: 'InvalidMintSchedule' },
4401
+ { type: 'error', inputs: [], name: 'InvalidSignature' },
4402
+ { type: 'error', inputs: [], name: 'InvalidSignatureVersion' },
4403
+ {
4404
+ type: 'error',
4405
+ inputs: [{ name: 'magicValue', internalType: 'bytes4', type: 'bytes4' }],
4406
+ name: 'InvalidSigner',
4407
+ },
4408
+ { type: 'error', inputs: [], name: 'InvalidTokenPrice' },
4409
+ { type: 'error', inputs: [], name: 'MintNotYetStarted' },
4410
+ { type: 'error', inputs: [], name: 'Mint_InsolventSaleTransfer' },
4411
+ { type: 'error', inputs: [], name: 'Mint_InvalidMintArrayLength' },
4412
+ { type: 'error', inputs: [], name: 'Mint_TokenIDMintNotAllowed' },
4413
+ { type: 'error', inputs: [], name: 'Mint_UnknownCommand' },
4414
+ { type: 'error', inputs: [], name: 'Mint_ValueTransferFail' },
4415
+ { type: 'error', inputs: [], name: 'MinterContractAlreadyExists' },
4416
+ { type: 'error', inputs: [], name: 'MinterContractDoesNotExist' },
4417
+ { type: 'error', inputs: [], name: 'NewOwnerNeedsToBeAdmin' },
4418
+ { type: 'error', inputs: [], name: 'NotInitializing' },
4419
+ {
4420
+ type: 'error',
4421
+ inputs: [{ name: 'owner', internalType: 'address', type: 'address' }],
4422
+ name: 'OwnableInvalidOwner',
4423
+ },
4424
+ {
4425
+ type: 'error',
4426
+ inputs: [{ name: 'account', internalType: 'address', type: 'address' }],
4427
+ name: 'OwnableUnauthorizedAccount',
4428
+ },
4429
+ { type: 'error', inputs: [], name: 'PremintDeleted' },
4430
+ {
4431
+ type: 'error',
4432
+ inputs: [
4433
+ { name: 'caller', internalType: 'address', type: 'address' },
4434
+ { name: 'recipient', internalType: 'address', type: 'address' },
4435
+ { name: 'amount', internalType: 'uint256', type: 'uint256' },
4436
+ ],
4437
+ name: 'ProtocolRewardsWithdrawFailed',
4438
+ },
4439
+ { type: 'error', inputs: [], name: 'Renderer_NotValidRendererContract' },
4440
+ { type: 'error', inputs: [], name: 'SaleEnded' },
4441
+ { type: 'error', inputs: [], name: 'SaleHasNotStarted' },
4442
+ {
4443
+ type: 'error',
4444
+ inputs: [
4445
+ { name: 'targetContract', internalType: 'address', type: 'address' },
4446
+ ],
4447
+ name: 'Sale_CannotCallNonSalesContract',
4448
+ },
4449
+ { type: 'error', inputs: [], name: 'TokenAlreadyCreated' },
4450
+ { type: 'error', inputs: [], name: 'TokenDoesNotExist' },
4451
+ {
4452
+ type: 'error',
4453
+ inputs: [
4454
+ { name: 'expected', internalType: 'uint256', type: 'uint256' },
4455
+ { name: 'actual', internalType: 'uint256', type: 'uint256' },
4456
+ ],
4457
+ name: 'TokenIdMismatch',
4458
+ },
4459
+ { type: 'error', inputs: [], name: 'TransferFailed' },
4460
+ {
4461
+ type: 'error',
4462
+ inputs: [
4463
+ { name: 'user', internalType: 'address', type: 'address' },
4464
+ { name: 'limit', internalType: 'uint256', type: 'uint256' },
4465
+ { name: 'requestedAmount', internalType: 'uint256', type: 'uint256' },
4466
+ ],
4467
+ name: 'UserExceedsMintLimit',
4468
+ },
4469
+ {
4470
+ type: 'error',
4471
+ inputs: [
4472
+ { name: 'user', internalType: 'address', type: 'address' },
4473
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4474
+ { name: 'role', internalType: 'uint256', type: 'uint256' },
4475
+ ],
4476
+ name: 'UserMissingRoleForToken',
4477
+ },
4478
+ { type: 'error', inputs: [], name: 'WrongValueSent' },
4479
+ {
4480
+ type: 'error',
4481
+ inputs: [],
4482
+ name: 'premintSignerContractFailedToRecoverSigner',
4483
+ },
4484
+ { type: 'error', inputs: [], name: 'premintSignerContractNotAContract' },
4485
+ ] as const
4486
+
4487
+ /**
4488
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777773dE7607C8d2eF571ba03ab22a7df64CEA)
4489
+ */
4490
+ export const zoraMintsImplAddress = {
4491
+ 999999999: '0x77777773dE7607C8d2eF571ba03ab22a7df64CEA',
4492
+ } as const
4493
+
4494
+ /**
4495
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777773dE7607C8d2eF571ba03ab22a7df64CEA)
4496
+ */
4497
+ export const zoraMintsImplConfig = {
4498
+ address: zoraMintsImplAddress,
4499
+ abi: zoraMintsImplABI,
4500
+ } as const