@zoralabs/protocol-deployments 0.1.5-DEV.1 → 0.1.5-DEV.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.
@@ -3769,3 +3769,1405 @@ export const zoraCreatorRedeemMinterFactoryConfig = {
3769
3769
  address: zoraCreatorRedeemMinterFactoryAddress,
3770
3770
  abi: zoraCreatorRedeemMinterFactoryABI,
3771
3771
  } as const
3772
+
3773
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
3774
+ // ZoraMints1155
3775
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
3776
+
3777
+ /**
3778
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777772b3123825eE55F3C45b6CbFd1631aBE1)
3779
+ */
3780
+ export const zoraMints1155ABI = [
3781
+ { stateMutability: 'nonpayable', type: 'constructor', inputs: [] },
3782
+ {
3783
+ stateMutability: 'view',
3784
+ type: 'function',
3785
+ inputs: [],
3786
+ name: 'ETH_ADDRESS',
3787
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
3788
+ },
3789
+ {
3790
+ stateMutability: 'view',
3791
+ type: 'function',
3792
+ inputs: [],
3793
+ name: 'MINIMUM_ERC20_PRICE',
3794
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
3795
+ },
3796
+ {
3797
+ stateMutability: 'view',
3798
+ type: 'function',
3799
+ inputs: [],
3800
+ name: 'MINIMUM_ETH_PRICE',
3801
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
3802
+ },
3803
+ {
3804
+ stateMutability: 'view',
3805
+ type: 'function',
3806
+ inputs: [],
3807
+ name: 'authority',
3808
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
3809
+ },
3810
+ {
3811
+ stateMutability: 'view',
3812
+ type: 'function',
3813
+ inputs: [
3814
+ { name: 'account', internalType: 'address', type: 'address' },
3815
+ { name: 'id', internalType: 'uint256', type: 'uint256' },
3816
+ ],
3817
+ name: 'balanceOf',
3818
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
3819
+ },
3820
+ {
3821
+ stateMutability: 'view',
3822
+ type: 'function',
3823
+ inputs: [{ name: 'account', internalType: 'address', type: 'address' }],
3824
+ name: 'balanceOfAccount',
3825
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
3826
+ },
3827
+ {
3828
+ stateMutability: 'view',
3829
+ type: 'function',
3830
+ inputs: [
3831
+ { name: 'accounts', internalType: 'address[]', type: 'address[]' },
3832
+ { name: 'ids', internalType: 'uint256[]', type: 'uint256[]' },
3833
+ ],
3834
+ name: 'balanceOfBatch',
3835
+ outputs: [{ name: '', internalType: 'uint256[]', type: 'uint256[]' }],
3836
+ },
3837
+ {
3838
+ stateMutability: 'view',
3839
+ type: 'function',
3840
+ inputs: [],
3841
+ name: 'contractURI',
3842
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
3843
+ },
3844
+ {
3845
+ stateMutability: 'pure',
3846
+ type: 'function',
3847
+ inputs: [],
3848
+ name: 'contractVersion',
3849
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
3850
+ },
3851
+ {
3852
+ stateMutability: 'nonpayable',
3853
+ type: 'function',
3854
+ inputs: [
3855
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
3856
+ {
3857
+ name: 'tokenConfig',
3858
+ internalType: 'struct TokenConfig',
3859
+ type: 'tuple',
3860
+ components: [
3861
+ { name: 'price', internalType: 'uint256', type: 'uint256' },
3862
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
3863
+ ],
3864
+ },
3865
+ ],
3866
+ name: 'createToken',
3867
+ outputs: [],
3868
+ },
3869
+ {
3870
+ stateMutability: 'view',
3871
+ type: 'function',
3872
+ inputs: [],
3873
+ name: 'getManager',
3874
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
3875
+ },
3876
+ {
3877
+ stateMutability: 'view',
3878
+ type: 'function',
3879
+ inputs: [],
3880
+ name: 'getMsgSender',
3881
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
3882
+ },
3883
+ {
3884
+ stateMutability: 'view',
3885
+ type: 'function',
3886
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
3887
+ name: 'getTokenConfig',
3888
+ outputs: [
3889
+ {
3890
+ name: '',
3891
+ internalType: 'struct TokenConfig',
3892
+ type: 'tuple',
3893
+ components: [
3894
+ { name: 'price', internalType: 'uint256', type: 'uint256' },
3895
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
3896
+ ],
3897
+ },
3898
+ ],
3899
+ },
3900
+ {
3901
+ stateMutability: 'view',
3902
+ type: 'function',
3903
+ inputs: [
3904
+ { name: 'account', internalType: 'address', type: 'address' },
3905
+ { name: 'operator', internalType: 'address', type: 'address' },
3906
+ ],
3907
+ name: 'isApprovedForAll',
3908
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
3909
+ },
3910
+ {
3911
+ stateMutability: 'view',
3912
+ type: 'function',
3913
+ inputs: [],
3914
+ name: 'isConsumingScheduledOp',
3915
+ outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
3916
+ },
3917
+ {
3918
+ stateMutability: 'nonpayable',
3919
+ type: 'function',
3920
+ inputs: [
3921
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
3922
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
3923
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
3924
+ { name: 'recipient', internalType: 'address', type: 'address' },
3925
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
3926
+ ],
3927
+ name: 'mintTokenWithERC20',
3928
+ outputs: [],
3929
+ },
3930
+ {
3931
+ stateMutability: 'payable',
3932
+ type: 'function',
3933
+ inputs: [
3934
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
3935
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
3936
+ { name: 'recipient', internalType: 'address', type: 'address' },
3937
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
3938
+ ],
3939
+ name: 'mintTokenWithEth',
3940
+ outputs: [],
3941
+ },
3942
+ {
3943
+ stateMutability: 'pure',
3944
+ type: 'function',
3945
+ inputs: [],
3946
+ name: 'name',
3947
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
3948
+ },
3949
+ {
3950
+ stateMutability: 'nonpayable',
3951
+ type: 'function',
3952
+ inputs: [
3953
+ { name: 'newContractURI', internalType: 'string', type: 'string' },
3954
+ { name: 'newBaseURI', internalType: 'string', type: 'string' },
3955
+ ],
3956
+ name: 'notifyURIsUpdated',
3957
+ outputs: [],
3958
+ },
3959
+ {
3960
+ stateMutability: 'nonpayable',
3961
+ type: 'function',
3962
+ inputs: [
3963
+ { name: 'newUri', internalType: 'string', type: 'string' },
3964
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
3965
+ ],
3966
+ name: 'notifyUpdatedTokenURI',
3967
+ outputs: [],
3968
+ },
3969
+ {
3970
+ stateMutability: 'nonpayable',
3971
+ type: 'function',
3972
+ inputs: [
3973
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
3974
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
3975
+ { name: 'recipient', internalType: 'address', type: 'address' },
3976
+ ],
3977
+ name: 'redeem',
3978
+ outputs: [
3979
+ {
3980
+ name: '',
3981
+ internalType: 'struct Redemption',
3982
+ type: 'tuple',
3983
+ components: [
3984
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
3985
+ { name: 'valueRedeemed', internalType: 'uint256', type: 'uint256' },
3986
+ ],
3987
+ },
3988
+ ],
3989
+ },
3990
+ {
3991
+ stateMutability: 'nonpayable',
3992
+ type: 'function',
3993
+ inputs: [
3994
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
3995
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
3996
+ { name: 'recipient', internalType: 'address', type: 'address' },
3997
+ ],
3998
+ name: 'redeemBatch',
3999
+ outputs: [
4000
+ {
4001
+ name: 'redemptions',
4002
+ internalType: 'struct Redemption[]',
4003
+ type: 'tuple[]',
4004
+ components: [
4005
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
4006
+ { name: 'valueRedeemed', internalType: 'uint256', type: 'uint256' },
4007
+ ],
4008
+ },
4009
+ ],
4010
+ },
4011
+ {
4012
+ stateMutability: 'nonpayable',
4013
+ type: 'function',
4014
+ inputs: [
4015
+ { name: 'from', internalType: 'address', type: 'address' },
4016
+ { name: 'to', internalType: 'address', type: 'address' },
4017
+ { name: 'ids', internalType: 'uint256[]', type: 'uint256[]' },
4018
+ { name: 'values', internalType: 'uint256[]', type: 'uint256[]' },
4019
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4020
+ ],
4021
+ name: 'safeBatchTransferFrom',
4022
+ outputs: [],
4023
+ },
4024
+ {
4025
+ stateMutability: 'nonpayable',
4026
+ type: 'function',
4027
+ inputs: [
4028
+ { name: 'from', internalType: 'address', type: 'address' },
4029
+ { name: 'to', internalType: 'address', type: 'address' },
4030
+ { name: 'id', internalType: 'uint256', type: 'uint256' },
4031
+ { name: 'value', internalType: 'uint256', type: 'uint256' },
4032
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4033
+ ],
4034
+ name: 'safeTransferFrom',
4035
+ outputs: [],
4036
+ },
4037
+ {
4038
+ stateMutability: 'nonpayable',
4039
+ type: 'function',
4040
+ inputs: [
4041
+ { name: 'operator', internalType: 'address', type: 'address' },
4042
+ { name: 'approved', internalType: 'bool', type: 'bool' },
4043
+ ],
4044
+ name: 'setApprovalForAll',
4045
+ outputs: [],
4046
+ },
4047
+ {
4048
+ stateMutability: 'nonpayable',
4049
+ type: 'function',
4050
+ inputs: [
4051
+ { name: 'newAuthority', internalType: 'address', type: 'address' },
4052
+ ],
4053
+ name: 'setAuthority',
4054
+ outputs: [],
4055
+ },
4056
+ {
4057
+ stateMutability: 'view',
4058
+ type: 'function',
4059
+ inputs: [{ name: 'interfaceId', internalType: 'bytes4', type: 'bytes4' }],
4060
+ name: 'supportsInterface',
4061
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
4062
+ },
4063
+ {
4064
+ stateMutability: 'pure',
4065
+ type: 'function',
4066
+ inputs: [],
4067
+ name: 'symbol',
4068
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4069
+ },
4070
+ {
4071
+ stateMutability: 'view',
4072
+ type: 'function',
4073
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
4074
+ name: 'tokenExists',
4075
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
4076
+ },
4077
+ {
4078
+ stateMutability: 'view',
4079
+ type: 'function',
4080
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
4081
+ name: 'tokenPrice',
4082
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
4083
+ },
4084
+ {
4085
+ stateMutability: 'payable',
4086
+ type: 'function',
4087
+ inputs: [
4088
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4089
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4090
+ { name: 'safeTransferData', internalType: 'bytes', type: 'bytes' },
4091
+ { name: 'call', internalType: 'bytes', type: 'bytes' },
4092
+ ],
4093
+ name: 'transferBatchToManagerAndCall',
4094
+ outputs: [{ name: 'callReturn', internalType: 'bytes', type: 'bytes' }],
4095
+ },
4096
+ {
4097
+ stateMutability: 'view',
4098
+ type: 'function',
4099
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
4100
+ name: 'uri',
4101
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4102
+ },
4103
+ {
4104
+ type: 'event',
4105
+ anonymous: false,
4106
+ inputs: [
4107
+ {
4108
+ name: 'account',
4109
+ internalType: 'address',
4110
+ type: 'address',
4111
+ indexed: true,
4112
+ },
4113
+ {
4114
+ name: 'operator',
4115
+ internalType: 'address',
4116
+ type: 'address',
4117
+ indexed: true,
4118
+ },
4119
+ { name: 'approved', internalType: 'bool', type: 'bool', indexed: false },
4120
+ ],
4121
+ name: 'ApprovalForAll',
4122
+ },
4123
+ {
4124
+ type: 'event',
4125
+ anonymous: false,
4126
+ inputs: [
4127
+ {
4128
+ name: 'authority',
4129
+ internalType: 'address',
4130
+ type: 'address',
4131
+ indexed: false,
4132
+ },
4133
+ ],
4134
+ name: 'AuthorityUpdated',
4135
+ },
4136
+ { type: 'event', anonymous: false, inputs: [], name: 'ContractURIUpdated' },
4137
+ {
4138
+ type: 'event',
4139
+ anonymous: false,
4140
+ inputs: [
4141
+ {
4142
+ name: 'tokenId',
4143
+ internalType: 'uint256',
4144
+ type: 'uint256',
4145
+ indexed: true,
4146
+ },
4147
+ ],
4148
+ name: 'EthMintableTokenSet',
4149
+ },
4150
+ {
4151
+ type: 'event',
4152
+ anonymous: false,
4153
+ inputs: [
4154
+ {
4155
+ name: 'tokenId',
4156
+ internalType: 'uint256',
4157
+ type: 'uint256',
4158
+ indexed: true,
4159
+ },
4160
+ {
4161
+ name: 'pricePerToken',
4162
+ internalType: 'uint256',
4163
+ type: 'uint256',
4164
+ indexed: true,
4165
+ },
4166
+ ],
4167
+ name: 'EthTokenCreated',
4168
+ },
4169
+ {
4170
+ type: 'event',
4171
+ anonymous: false,
4172
+ inputs: [
4173
+ {
4174
+ name: 'tokenIds',
4175
+ internalType: 'uint256[]',
4176
+ type: 'uint256[]',
4177
+ indexed: false,
4178
+ },
4179
+ {
4180
+ name: 'quantities',
4181
+ internalType: 'uint256[]',
4182
+ type: 'uint256[]',
4183
+ indexed: false,
4184
+ },
4185
+ {
4186
+ name: 'recipient',
4187
+ internalType: 'address',
4188
+ type: 'address',
4189
+ indexed: false,
4190
+ },
4191
+ ],
4192
+ name: 'RedeemedBatch',
4193
+ },
4194
+ {
4195
+ type: 'event',
4196
+ anonymous: false,
4197
+ inputs: [
4198
+ {
4199
+ name: 'tokenId',
4200
+ internalType: 'uint256',
4201
+ type: 'uint256',
4202
+ indexed: true,
4203
+ },
4204
+ {
4205
+ name: 'tokenConfig',
4206
+ internalType: 'struct TokenConfig',
4207
+ type: 'tuple',
4208
+ components: [
4209
+ { name: 'price', internalType: 'uint256', type: 'uint256' },
4210
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
4211
+ ],
4212
+ indexed: true,
4213
+ },
4214
+ ],
4215
+ name: 'TokenCreated',
4216
+ },
4217
+ {
4218
+ type: 'event',
4219
+ anonymous: false,
4220
+ inputs: [
4221
+ {
4222
+ name: 'operator',
4223
+ internalType: 'address',
4224
+ type: 'address',
4225
+ indexed: true,
4226
+ },
4227
+ { name: 'from', internalType: 'address', type: 'address', indexed: true },
4228
+ { name: 'to', internalType: 'address', type: 'address', indexed: true },
4229
+ {
4230
+ name: 'ids',
4231
+ internalType: 'uint256[]',
4232
+ type: 'uint256[]',
4233
+ indexed: false,
4234
+ },
4235
+ {
4236
+ name: 'values',
4237
+ internalType: 'uint256[]',
4238
+ type: 'uint256[]',
4239
+ indexed: false,
4240
+ },
4241
+ ],
4242
+ name: 'TransferBatch',
4243
+ },
4244
+ {
4245
+ type: 'event',
4246
+ anonymous: false,
4247
+ inputs: [
4248
+ {
4249
+ name: 'operator',
4250
+ internalType: 'address',
4251
+ type: 'address',
4252
+ indexed: true,
4253
+ },
4254
+ { name: 'from', internalType: 'address', type: 'address', indexed: true },
4255
+ { name: 'to', internalType: 'address', type: 'address', indexed: true },
4256
+ { name: 'id', internalType: 'uint256', type: 'uint256', indexed: false },
4257
+ {
4258
+ name: 'value',
4259
+ internalType: 'uint256',
4260
+ type: 'uint256',
4261
+ indexed: false,
4262
+ },
4263
+ ],
4264
+ name: 'TransferSingle',
4265
+ },
4266
+ {
4267
+ type: 'event',
4268
+ anonymous: false,
4269
+ inputs: [
4270
+ { name: 'value', internalType: 'string', type: 'string', indexed: false },
4271
+ { name: 'id', internalType: 'uint256', type: 'uint256', indexed: true },
4272
+ ],
4273
+ name: 'URI',
4274
+ },
4275
+ {
4276
+ type: 'event',
4277
+ anonymous: false,
4278
+ inputs: [
4279
+ {
4280
+ name: 'contractURI',
4281
+ internalType: 'string',
4282
+ type: 'string',
4283
+ indexed: false,
4284
+ },
4285
+ {
4286
+ name: 'baseURI',
4287
+ internalType: 'string',
4288
+ type: 'string',
4289
+ indexed: false,
4290
+ },
4291
+ ],
4292
+ name: 'URIsUpdated',
4293
+ },
4294
+ {
4295
+ type: 'error',
4296
+ inputs: [{ name: 'authority', internalType: 'address', type: 'address' }],
4297
+ name: 'AccessManagedInvalidAuthority',
4298
+ },
4299
+ {
4300
+ type: 'error',
4301
+ inputs: [
4302
+ { name: 'caller', internalType: 'address', type: 'address' },
4303
+ { name: 'delay', internalType: 'uint32', type: 'uint32' },
4304
+ ],
4305
+ name: 'AccessManagedRequiredDelay',
4306
+ },
4307
+ {
4308
+ type: 'error',
4309
+ inputs: [{ name: 'caller', internalType: 'address', type: 'address' }],
4310
+ name: 'AccessManagedUnauthorized',
4311
+ },
4312
+ {
4313
+ type: 'error',
4314
+ inputs: [
4315
+ { name: 'lengthA', internalType: 'uint256', type: 'uint256' },
4316
+ { name: 'lengthB', internalType: 'uint256', type: 'uint256' },
4317
+ ],
4318
+ name: 'ArrayLengthMismatch',
4319
+ },
4320
+ {
4321
+ type: 'error',
4322
+ inputs: [{ name: 'returnData', internalType: 'bytes', type: 'bytes' }],
4323
+ name: 'CallFailed',
4324
+ },
4325
+ {
4326
+ type: 'error',
4327
+ inputs: [
4328
+ { name: 'sender', internalType: 'address', type: 'address' },
4329
+ { name: 'balance', internalType: 'uint256', type: 'uint256' },
4330
+ { name: 'needed', internalType: 'uint256', type: 'uint256' },
4331
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4332
+ ],
4333
+ name: 'ERC1155InsufficientBalance',
4334
+ },
4335
+ {
4336
+ type: 'error',
4337
+ inputs: [{ name: 'approver', internalType: 'address', type: 'address' }],
4338
+ name: 'ERC1155InvalidApprover',
4339
+ },
4340
+ {
4341
+ type: 'error',
4342
+ inputs: [
4343
+ { name: 'idsLength', internalType: 'uint256', type: 'uint256' },
4344
+ { name: 'valuesLength', internalType: 'uint256', type: 'uint256' },
4345
+ ],
4346
+ name: 'ERC1155InvalidArrayLength',
4347
+ },
4348
+ {
4349
+ type: 'error',
4350
+ inputs: [{ name: 'operator', internalType: 'address', type: 'address' }],
4351
+ name: 'ERC1155InvalidOperator',
4352
+ },
4353
+ {
4354
+ type: 'error',
4355
+ inputs: [{ name: 'receiver', internalType: 'address', type: 'address' }],
4356
+ name: 'ERC1155InvalidReceiver',
4357
+ },
4358
+ {
4359
+ type: 'error',
4360
+ inputs: [{ name: 'sender', internalType: 'address', type: 'address' }],
4361
+ name: 'ERC1155InvalidSender',
4362
+ },
4363
+ {
4364
+ type: 'error',
4365
+ inputs: [
4366
+ { name: 'operator', internalType: 'address', type: 'address' },
4367
+ { name: 'owner', internalType: 'address', type: 'address' },
4368
+ ],
4369
+ name: 'ERC1155MissingApprovalForAll',
4370
+ },
4371
+ { type: 'error', inputs: [], name: 'ERC20TransferSlippage' },
4372
+ { type: 'error', inputs: [], name: 'ETHTransferFailed' },
4373
+ { type: 'error', inputs: [], name: 'IncorrectAmountSent' },
4374
+ { type: 'error', inputs: [], name: 'InvalidRecipient' },
4375
+ { type: 'error', inputs: [], name: 'InvalidTokenPrice' },
4376
+ { type: 'error', inputs: [], name: 'NoUriForNonexistentToken' },
4377
+ { type: 'error', inputs: [], name: 'TokenAlreadyCreated' },
4378
+ { type: 'error', inputs: [], name: 'TokenDoesNotExist' },
4379
+ {
4380
+ type: 'error',
4381
+ inputs: [
4382
+ { name: 'storedTokenAddress', internalType: 'address', type: 'address' },
4383
+ {
4384
+ name: 'expectedTokenAddress',
4385
+ internalType: 'address',
4386
+ type: 'address',
4387
+ },
4388
+ ],
4389
+ name: 'TokenMismatch',
4390
+ },
4391
+ { type: 'error', inputs: [], name: 'TokenNotMintable' },
4392
+ ] as const
4393
+
4394
+ /**
4395
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777772b3123825eE55F3C45b6CbFd1631aBE1)
4396
+ */
4397
+ export const zoraMints1155Address = {
4398
+ 999999999: '0x777777772b3123825eE55F3C45b6CbFd1631aBE1',
4399
+ } as const
4400
+
4401
+ /**
4402
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777772b3123825eE55F3C45b6CbFd1631aBE1)
4403
+ */
4404
+ export const zoraMints1155Config = {
4405
+ address: zoraMints1155Address,
4406
+ abi: zoraMints1155ABI,
4407
+ } as const
4408
+
4409
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4410
+ // ZoraMintsManagerImpl
4411
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4412
+
4413
+ /**
4414
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777579A2C6363387cC38C0A334624dDAbB90)
4415
+ */
4416
+ export const zoraMintsManagerImplABI = [
4417
+ {
4418
+ stateMutability: 'nonpayable',
4419
+ type: 'constructor',
4420
+ inputs: [
4421
+ {
4422
+ name: '_premintExecutor',
4423
+ internalType: 'contract IZoraCreator1155PremintExecutorV2',
4424
+ type: 'address',
4425
+ },
4426
+ ],
4427
+ },
4428
+ {
4429
+ stateMutability: 'view',
4430
+ type: 'function',
4431
+ inputs: [],
4432
+ name: 'UPGRADE_INTERFACE_VERSION',
4433
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4434
+ },
4435
+ {
4436
+ stateMutability: 'nonpayable',
4437
+ type: 'function',
4438
+ inputs: [],
4439
+ name: 'acceptOwnership',
4440
+ outputs: [],
4441
+ },
4442
+ {
4443
+ stateMutability: 'view',
4444
+ type: 'function',
4445
+ inputs: [
4446
+ { name: 'caller', internalType: 'address', type: 'address' },
4447
+ { name: '', internalType: 'address', type: 'address' },
4448
+ { name: '', internalType: 'bytes4', type: 'bytes4' },
4449
+ ],
4450
+ name: 'canCall',
4451
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
4452
+ },
4453
+ {
4454
+ stateMutability: 'payable',
4455
+ type: 'function',
4456
+ inputs: [
4457
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4458
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4459
+ {
4460
+ name: 'zoraCreator1155Contract',
4461
+ internalType: 'contract IMintWithMints',
4462
+ type: 'address',
4463
+ },
4464
+ { name: 'minter', internalType: 'contract IMinter1155', type: 'address' },
4465
+ {
4466
+ name: 'zoraCreator1155TokenId',
4467
+ internalType: 'uint256',
4468
+ type: 'uint256',
4469
+ },
4470
+ {
4471
+ name: 'mintArguments',
4472
+ internalType: 'struct MintArguments',
4473
+ type: 'tuple',
4474
+ components: [
4475
+ { name: 'mintRecipient', internalType: 'address', type: 'address' },
4476
+ { name: 'mintComment', internalType: 'string', type: 'string' },
4477
+ {
4478
+ name: 'mintRewardsRecipients',
4479
+ internalType: 'address[]',
4480
+ type: 'address[]',
4481
+ },
4482
+ ],
4483
+ },
4484
+ ],
4485
+ name: 'collect',
4486
+ outputs: [],
4487
+ },
4488
+ {
4489
+ stateMutability: 'payable',
4490
+ type: 'function',
4491
+ inputs: [
4492
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4493
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4494
+ {
4495
+ name: 'contractConfig',
4496
+ internalType: 'struct ContractCreationConfig',
4497
+ type: 'tuple',
4498
+ components: [
4499
+ { name: 'contractAdmin', internalType: 'address', type: 'address' },
4500
+ { name: 'contractURI', internalType: 'string', type: 'string' },
4501
+ { name: 'contractName', internalType: 'string', type: 'string' },
4502
+ ],
4503
+ },
4504
+ {
4505
+ name: 'premintConfig',
4506
+ internalType: 'struct PremintConfigV2',
4507
+ type: 'tuple',
4508
+ components: [
4509
+ {
4510
+ name: 'tokenConfig',
4511
+ internalType: 'struct TokenCreationConfigV2',
4512
+ type: 'tuple',
4513
+ components: [
4514
+ { name: 'tokenURI', internalType: 'string', type: 'string' },
4515
+ { name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
4516
+ {
4517
+ name: 'maxTokensPerAddress',
4518
+ internalType: 'uint64',
4519
+ type: 'uint64',
4520
+ },
4521
+ { name: 'pricePerToken', internalType: 'uint96', type: 'uint96' },
4522
+ { name: 'mintStart', internalType: 'uint64', type: 'uint64' },
4523
+ { name: 'mintDuration', internalType: 'uint64', type: 'uint64' },
4524
+ { name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
4525
+ {
4526
+ name: 'payoutRecipient',
4527
+ internalType: 'address',
4528
+ type: 'address',
4529
+ },
4530
+ {
4531
+ name: 'fixedPriceMinter',
4532
+ internalType: 'address',
4533
+ type: 'address',
4534
+ },
4535
+ {
4536
+ name: 'createReferral',
4537
+ internalType: 'address',
4538
+ type: 'address',
4539
+ },
4540
+ ],
4541
+ },
4542
+ { name: 'uid', internalType: 'uint32', type: 'uint32' },
4543
+ { name: 'version', internalType: 'uint32', type: 'uint32' },
4544
+ { name: 'deleted', internalType: 'bool', type: 'bool' },
4545
+ ],
4546
+ },
4547
+ { name: 'signature', internalType: 'bytes', type: 'bytes' },
4548
+ {
4549
+ name: 'mintArguments',
4550
+ internalType: 'struct MintArguments',
4551
+ type: 'tuple',
4552
+ components: [
4553
+ { name: 'mintRecipient', internalType: 'address', type: 'address' },
4554
+ { name: 'mintComment', internalType: 'string', type: 'string' },
4555
+ {
4556
+ name: 'mintRewardsRecipients',
4557
+ internalType: 'address[]',
4558
+ type: 'address[]',
4559
+ },
4560
+ ],
4561
+ },
4562
+ { name: 'signerContract', internalType: 'address', type: 'address' },
4563
+ ],
4564
+ name: 'collectPremintV2',
4565
+ outputs: [
4566
+ {
4567
+ name: 'result',
4568
+ internalType: 'struct PremintResult',
4569
+ type: 'tuple',
4570
+ components: [
4571
+ { name: 'contractAddress', internalType: 'address', type: 'address' },
4572
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4573
+ { name: 'createdNewContract', internalType: 'bool', type: 'bool' },
4574
+ ],
4575
+ },
4576
+ ],
4577
+ },
4578
+ {
4579
+ stateMutability: 'pure',
4580
+ type: 'function',
4581
+ inputs: [],
4582
+ name: 'contractName',
4583
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4584
+ },
4585
+ {
4586
+ stateMutability: 'view',
4587
+ type: 'function',
4588
+ inputs: [],
4589
+ name: 'contractURI',
4590
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4591
+ },
4592
+ {
4593
+ stateMutability: 'pure',
4594
+ type: 'function',
4595
+ inputs: [],
4596
+ name: 'contractVersion',
4597
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4598
+ },
4599
+ {
4600
+ stateMutability: 'nonpayable',
4601
+ type: 'function',
4602
+ inputs: [
4603
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4604
+ {
4605
+ name: 'tokenConfig',
4606
+ internalType: 'struct TokenConfig',
4607
+ type: 'tuple',
4608
+ components: [
4609
+ { name: 'price', internalType: 'uint256', type: 'uint256' },
4610
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
4611
+ ],
4612
+ },
4613
+ ],
4614
+ name: 'createToken',
4615
+ outputs: [],
4616
+ },
4617
+ {
4618
+ stateMutability: 'view',
4619
+ type: 'function',
4620
+ inputs: [],
4621
+ name: 'getEthPrice',
4622
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
4623
+ },
4624
+ {
4625
+ stateMutability: 'view',
4626
+ type: 'function',
4627
+ inputs: [],
4628
+ name: 'implementation',
4629
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
4630
+ },
4631
+ {
4632
+ stateMutability: 'nonpayable',
4633
+ type: 'function',
4634
+ inputs: [
4635
+ { name: 'defaultOwner', internalType: 'address', type: 'address' },
4636
+ { name: 'zoraMintsSalt', internalType: 'bytes32', type: 'bytes32' },
4637
+ { name: 'zoraMintsCreationCode', internalType: 'bytes', type: 'bytes' },
4638
+ { name: 'initialEthTokenId', internalType: 'uint256', type: 'uint256' },
4639
+ {
4640
+ name: 'initialEthTokenPrice',
4641
+ internalType: 'uint256',
4642
+ type: 'uint256',
4643
+ },
4644
+ { name: 'newBaseURI', internalType: 'string', type: 'string' },
4645
+ { name: 'newContractURI', internalType: 'string', type: 'string' },
4646
+ ],
4647
+ name: 'initialize',
4648
+ outputs: [
4649
+ {
4650
+ name: 'mints',
4651
+ internalType: 'contract IZoraMints1155',
4652
+ type: 'address',
4653
+ },
4654
+ ],
4655
+ },
4656
+ {
4657
+ stateMutability: 'nonpayable',
4658
+ type: 'function',
4659
+ inputs: [
4660
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
4661
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
4662
+ { name: 'recipient', internalType: 'address', type: 'address' },
4663
+ ],
4664
+ name: 'mintWithERC20',
4665
+ outputs: [
4666
+ { name: 'mintableTokenId', internalType: 'uint256', type: 'uint256' },
4667
+ ],
4668
+ },
4669
+ {
4670
+ stateMutability: 'payable',
4671
+ type: 'function',
4672
+ inputs: [
4673
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
4674
+ { name: 'recipient', internalType: 'address', type: 'address' },
4675
+ ],
4676
+ name: 'mintWithEth',
4677
+ outputs: [
4678
+ { name: 'mintableTokenId', internalType: 'uint256', type: 'uint256' },
4679
+ ],
4680
+ },
4681
+ {
4682
+ stateMutability: 'view',
4683
+ type: 'function',
4684
+ inputs: [],
4685
+ name: 'mintableEthToken',
4686
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
4687
+ },
4688
+ {
4689
+ stateMutability: 'pure',
4690
+ type: 'function',
4691
+ inputs: [
4692
+ { name: '', internalType: 'address', type: 'address' },
4693
+ { name: '', internalType: 'address', type: 'address' },
4694
+ { name: '', internalType: 'uint256[]', type: 'uint256[]' },
4695
+ { name: '', internalType: 'uint256[]', type: 'uint256[]' },
4696
+ { name: '', internalType: 'bytes', type: 'bytes' },
4697
+ ],
4698
+ name: 'onERC1155BatchReceived',
4699
+ outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
4700
+ },
4701
+ {
4702
+ stateMutability: 'pure',
4703
+ type: 'function',
4704
+ inputs: [
4705
+ { name: '', internalType: 'address', type: 'address' },
4706
+ { name: '', internalType: 'address', type: 'address' },
4707
+ { name: '', internalType: 'uint256', type: 'uint256' },
4708
+ { name: '', internalType: 'uint256', type: 'uint256' },
4709
+ { name: '', internalType: 'bytes', type: 'bytes' },
4710
+ ],
4711
+ name: 'onERC1155Received',
4712
+ outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
4713
+ },
4714
+ {
4715
+ stateMutability: 'view',
4716
+ type: 'function',
4717
+ inputs: [],
4718
+ name: 'owner',
4719
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
4720
+ },
4721
+ {
4722
+ stateMutability: 'view',
4723
+ type: 'function',
4724
+ inputs: [],
4725
+ name: 'pendingOwner',
4726
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
4727
+ },
4728
+ {
4729
+ stateMutability: 'view',
4730
+ type: 'function',
4731
+ inputs: [],
4732
+ name: 'proxiableUUID',
4733
+ outputs: [{ name: '', internalType: 'bytes32', type: 'bytes32' }],
4734
+ },
4735
+ {
4736
+ stateMutability: 'nonpayable',
4737
+ type: 'function',
4738
+ inputs: [],
4739
+ name: 'renounceOwnership',
4740
+ outputs: [],
4741
+ },
4742
+ {
4743
+ stateMutability: 'nonpayable',
4744
+ type: 'function',
4745
+ inputs: [
4746
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
4747
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4748
+ ],
4749
+ name: 'setDefaultMintable',
4750
+ outputs: [],
4751
+ },
4752
+ {
4753
+ stateMutability: 'nonpayable',
4754
+ type: 'function',
4755
+ inputs: [
4756
+ { name: 'newContractURI', internalType: 'string', type: 'string' },
4757
+ { name: 'newBaseURI', internalType: 'string', type: 'string' },
4758
+ ],
4759
+ name: 'setMetadataURIs',
4760
+ outputs: [],
4761
+ },
4762
+ {
4763
+ stateMutability: 'nonpayable',
4764
+ type: 'function',
4765
+ inputs: [{ name: 'newOwner', internalType: 'address', type: 'address' }],
4766
+ name: 'transferOwnership',
4767
+ outputs: [],
4768
+ },
4769
+ {
4770
+ stateMutability: 'payable',
4771
+ type: 'function',
4772
+ inputs: [
4773
+ { name: 'newImplementation', internalType: 'address', type: 'address' },
4774
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4775
+ ],
4776
+ name: 'upgradeToAndCall',
4777
+ outputs: [],
4778
+ },
4779
+ {
4780
+ stateMutability: 'view',
4781
+ type: 'function',
4782
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
4783
+ name: 'uri',
4784
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4785
+ },
4786
+ {
4787
+ stateMutability: 'view',
4788
+ type: 'function',
4789
+ inputs: [],
4790
+ name: 'zoraMints1155',
4791
+ outputs: [
4792
+ { name: '', internalType: 'contract IZoraMints1155', type: 'address' },
4793
+ ],
4794
+ },
4795
+ {
4796
+ type: 'event',
4797
+ anonymous: false,
4798
+ inputs: [
4799
+ {
4800
+ name: 'tokenIds',
4801
+ internalType: 'uint256[]',
4802
+ type: 'uint256[]',
4803
+ indexed: true,
4804
+ },
4805
+ {
4806
+ name: 'quantities',
4807
+ internalType: 'uint256[]',
4808
+ type: 'uint256[]',
4809
+ indexed: false,
4810
+ },
4811
+ {
4812
+ name: 'zoraCreator1155Contract',
4813
+ internalType: 'address',
4814
+ type: 'address',
4815
+ indexed: true,
4816
+ },
4817
+ {
4818
+ name: 'zoraCreator1155TokenId',
4819
+ internalType: 'uint256',
4820
+ type: 'uint256',
4821
+ indexed: true,
4822
+ },
4823
+ ],
4824
+ name: 'Collected',
4825
+ },
4826
+ {
4827
+ type: 'event',
4828
+ anonymous: false,
4829
+ inputs: [
4830
+ {
4831
+ name: 'version',
4832
+ internalType: 'uint64',
4833
+ type: 'uint64',
4834
+ indexed: false,
4835
+ },
4836
+ ],
4837
+ name: 'Initialized',
4838
+ },
4839
+ {
4840
+ type: 'event',
4841
+ anonymous: false,
4842
+ inputs: [
4843
+ {
4844
+ name: 'sender',
4845
+ internalType: 'address',
4846
+ type: 'address',
4847
+ indexed: true,
4848
+ },
4849
+ {
4850
+ name: 'tokenContract',
4851
+ internalType: 'address',
4852
+ type: 'address',
4853
+ indexed: true,
4854
+ },
4855
+ {
4856
+ name: 'tokenId',
4857
+ internalType: 'uint256',
4858
+ type: 'uint256',
4859
+ indexed: true,
4860
+ },
4861
+ {
4862
+ name: 'quantity',
4863
+ internalType: 'uint256',
4864
+ type: 'uint256',
4865
+ indexed: false,
4866
+ },
4867
+ {
4868
+ name: 'comment',
4869
+ internalType: 'string',
4870
+ type: 'string',
4871
+ indexed: false,
4872
+ },
4873
+ ],
4874
+ name: 'MintComment',
4875
+ },
4876
+ {
4877
+ type: 'event',
4878
+ anonymous: false,
4879
+ inputs: [
4880
+ {
4881
+ name: 'previousOwner',
4882
+ internalType: 'address',
4883
+ type: 'address',
4884
+ indexed: true,
4885
+ },
4886
+ {
4887
+ name: 'newOwner',
4888
+ internalType: 'address',
4889
+ type: 'address',
4890
+ indexed: true,
4891
+ },
4892
+ ],
4893
+ name: 'OwnershipTransferStarted',
4894
+ },
4895
+ {
4896
+ type: 'event',
4897
+ anonymous: false,
4898
+ inputs: [
4899
+ {
4900
+ name: 'previousOwner',
4901
+ internalType: 'address',
4902
+ type: 'address',
4903
+ indexed: true,
4904
+ },
4905
+ {
4906
+ name: 'newOwner',
4907
+ internalType: 'address',
4908
+ type: 'address',
4909
+ indexed: true,
4910
+ },
4911
+ ],
4912
+ name: 'OwnershipTransferred',
4913
+ },
4914
+ {
4915
+ type: 'event',
4916
+ anonymous: false,
4917
+ inputs: [
4918
+ {
4919
+ name: 'contractURI',
4920
+ internalType: 'string',
4921
+ type: 'string',
4922
+ indexed: false,
4923
+ },
4924
+ {
4925
+ name: 'baseURI',
4926
+ internalType: 'string',
4927
+ type: 'string',
4928
+ indexed: false,
4929
+ },
4930
+ ],
4931
+ name: 'URIsUpdated',
4932
+ },
4933
+ {
4934
+ type: 'event',
4935
+ anonymous: false,
4936
+ inputs: [
4937
+ {
4938
+ name: 'implementation',
4939
+ internalType: 'address',
4940
+ type: 'address',
4941
+ indexed: true,
4942
+ },
4943
+ ],
4944
+ name: 'Upgraded',
4945
+ },
4946
+ {
4947
+ type: 'error',
4948
+ inputs: [{ name: 'target', internalType: 'address', type: 'address' }],
4949
+ name: 'AddressEmptyCode',
4950
+ },
4951
+ {
4952
+ type: 'error',
4953
+ inputs: [
4954
+ { name: 'lengthA', internalType: 'uint256', type: 'uint256' },
4955
+ { name: 'lengthB', internalType: 'uint256', type: 'uint256' },
4956
+ ],
4957
+ name: 'ArrayLengthMismatch',
4958
+ },
4959
+ {
4960
+ type: 'error',
4961
+ inputs: [
4962
+ { name: 'operator', internalType: 'address', type: 'address' },
4963
+ { name: 'user', internalType: 'address', type: 'address' },
4964
+ ],
4965
+ name: 'Burn_NotOwnerOrApproved',
4966
+ },
4967
+ {
4968
+ type: 'error',
4969
+ inputs: [{ name: 'reason', internalType: 'bytes', type: 'bytes' }],
4970
+ name: 'CallFailed',
4971
+ },
4972
+ { type: 'error', inputs: [], name: 'Call_TokenIdMismatch' },
4973
+ { type: 'error', inputs: [], name: 'CallerNotZoraCreator1155' },
4974
+ {
4975
+ type: 'error',
4976
+ inputs: [
4977
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4978
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
4979
+ { name: 'totalMinted', internalType: 'uint256', type: 'uint256' },
4980
+ { name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
4981
+ ],
4982
+ name: 'CannotMintMoreTokens',
4983
+ },
4984
+ {
4985
+ type: 'error',
4986
+ inputs: [
4987
+ { name: 'proposedAddress', internalType: 'address', type: 'address' },
4988
+ ],
4989
+ name: 'Config_TransferHookNotSupported',
4990
+ },
4991
+ { type: 'error', inputs: [], name: 'Create2EmptyBytecode' },
4992
+ { type: 'error', inputs: [], name: 'Create2FailedDeployment' },
4993
+ {
4994
+ type: 'error',
4995
+ inputs: [
4996
+ { name: 'balance', internalType: 'uint256', type: 'uint256' },
4997
+ { name: 'needed', internalType: 'uint256', type: 'uint256' },
4998
+ ],
4999
+ name: 'Create2InsufficientBalance',
5000
+ },
5001
+ { type: 'error', inputs: [], name: 'ERC1155_MINT_TO_ZERO_ADDRESS' },
5002
+ {
5003
+ type: 'error',
5004
+ inputs: [
5005
+ { name: 'implementation', internalType: 'address', type: 'address' },
5006
+ ],
5007
+ name: 'ERC1967InvalidImplementation',
5008
+ },
5009
+ { type: 'error', inputs: [], name: 'ERC1967NonPayable' },
5010
+ { type: 'error', inputs: [], name: 'ERC20TransferSlippage' },
5011
+ { type: 'error', inputs: [], name: 'ETHTransferFailed' },
5012
+ {
5013
+ type: 'error',
5014
+ inputs: [
5015
+ { name: 'recipient', internalType: 'address', type: 'address' },
5016
+ { name: 'amount', internalType: 'uint256', type: 'uint256' },
5017
+ ],
5018
+ name: 'ETHWithdrawFailed',
5019
+ },
5020
+ { type: 'error', inputs: [], name: 'FailedInnerCall' },
5021
+ { type: 'error', inputs: [], name: 'FirstMinterAddressZero' },
5022
+ {
5023
+ type: 'error',
5024
+ inputs: [
5025
+ { name: 'amount', internalType: 'uint256', type: 'uint256' },
5026
+ { name: 'contractValue', internalType: 'uint256', type: 'uint256' },
5027
+ ],
5028
+ name: 'FundsWithdrawInsolvent',
5029
+ },
5030
+ { type: 'error', inputs: [], name: 'IncorrectAmountSent' },
5031
+ { type: 'error', inputs: [], name: 'InvalidAdminAction' },
5032
+ { type: 'error', inputs: [], name: 'InvalidInitialization' },
5033
+ {
5034
+ type: 'error',
5035
+ inputs: [
5036
+ { name: 'mintTo', internalType: 'address', type: 'address' },
5037
+ { name: 'merkleProof', internalType: 'bytes32[]', type: 'bytes32[]' },
5038
+ { name: 'merkleRoot', internalType: 'bytes32', type: 'bytes32' },
5039
+ ],
5040
+ name: 'InvalidMerkleProof',
5041
+ },
5042
+ { type: 'error', inputs: [], name: 'InvalidMintSchedule' },
5043
+ { type: 'error', inputs: [], name: 'InvalidPremintVersion' },
5044
+ { type: 'error', inputs: [], name: 'InvalidRecipient' },
5045
+ { type: 'error', inputs: [], name: 'InvalidSignature' },
5046
+ { type: 'error', inputs: [], name: 'InvalidSignatureVersion' },
5047
+ {
5048
+ type: 'error',
5049
+ inputs: [{ name: 'magicValue', internalType: 'bytes4', type: 'bytes4' }],
5050
+ name: 'InvalidSigner',
5051
+ },
5052
+ { type: 'error', inputs: [], name: 'InvalidTokenPrice' },
5053
+ { type: 'error', inputs: [], name: 'MintNotYetStarted' },
5054
+ { type: 'error', inputs: [], name: 'MintWithMintsNotSupportedOnContract' },
5055
+ { type: 'error', inputs: [], name: 'Mint_InsolventSaleTransfer' },
5056
+ { type: 'error', inputs: [], name: 'Mint_InvalidMintArrayLength' },
5057
+ { type: 'error', inputs: [], name: 'Mint_TokenIDMintNotAllowed' },
5058
+ { type: 'error', inputs: [], name: 'Mint_UnknownCommand' },
5059
+ { type: 'error', inputs: [], name: 'Mint_ValueTransferFail' },
5060
+ { type: 'error', inputs: [], name: 'MinterContractAlreadyExists' },
5061
+ { type: 'error', inputs: [], name: 'MinterContractDoesNotExist' },
5062
+ { type: 'error', inputs: [], name: 'NewOwnerNeedsToBeAdmin' },
5063
+ { type: 'error', inputs: [], name: 'NoUriForNonexistentToken' },
5064
+ { type: 'error', inputs: [], name: 'NonEthRedemption' },
5065
+ { type: 'error', inputs: [], name: 'NotInitializing' },
5066
+ {
5067
+ type: 'error',
5068
+ inputs: [{ name: 'owner', internalType: 'address', type: 'address' }],
5069
+ name: 'OwnableInvalidOwner',
5070
+ },
5071
+ {
5072
+ type: 'error',
5073
+ inputs: [{ name: 'account', internalType: 'address', type: 'address' }],
5074
+ name: 'OwnableUnauthorizedAccount',
5075
+ },
5076
+ { type: 'error', inputs: [], name: 'PremintDeleted' },
5077
+ {
5078
+ type: 'error',
5079
+ inputs: [
5080
+ { name: 'caller', internalType: 'address', type: 'address' },
5081
+ { name: 'recipient', internalType: 'address', type: 'address' },
5082
+ { name: 'amount', internalType: 'uint256', type: 'uint256' },
5083
+ ],
5084
+ name: 'ProtocolRewardsWithdrawFailed',
5085
+ },
5086
+ { type: 'error', inputs: [], name: 'Renderer_NotValidRendererContract' },
5087
+ { type: 'error', inputs: [], name: 'SaleEnded' },
5088
+ { type: 'error', inputs: [], name: 'SaleHasNotStarted' },
5089
+ {
5090
+ type: 'error',
5091
+ inputs: [
5092
+ { name: 'targetContract', internalType: 'address', type: 'address' },
5093
+ ],
5094
+ name: 'Sale_CannotCallNonSalesContract',
5095
+ },
5096
+ { type: 'error', inputs: [], name: 'TokenAlreadyCreated' },
5097
+ { type: 'error', inputs: [], name: 'TokenDoesNotExist' },
5098
+ {
5099
+ type: 'error',
5100
+ inputs: [
5101
+ { name: 'expected', internalType: 'uint256', type: 'uint256' },
5102
+ { name: 'actual', internalType: 'uint256', type: 'uint256' },
5103
+ ],
5104
+ name: 'TokenIdMismatch',
5105
+ },
5106
+ {
5107
+ type: 'error',
5108
+ inputs: [
5109
+ { name: 'storedTokenAddress', internalType: 'address', type: 'address' },
5110
+ {
5111
+ name: 'expectedTokenAddress',
5112
+ internalType: 'address',
5113
+ type: 'address',
5114
+ },
5115
+ ],
5116
+ name: 'TokenMismatch',
5117
+ },
5118
+ { type: 'error', inputs: [], name: 'TokenNotMintable' },
5119
+ { type: 'error', inputs: [], name: 'UUPSUnauthorizedCallContext' },
5120
+ {
5121
+ type: 'error',
5122
+ inputs: [{ name: 'slot', internalType: 'bytes32', type: 'bytes32' }],
5123
+ name: 'UUPSUnsupportedProxiableUUID',
5124
+ },
5125
+ {
5126
+ type: 'error',
5127
+ inputs: [
5128
+ { name: 'expected', internalType: 'string', type: 'string' },
5129
+ { name: 'actual', internalType: 'string', type: 'string' },
5130
+ ],
5131
+ name: 'UpgradeToMismatchedContractName',
5132
+ },
5133
+ {
5134
+ type: 'error',
5135
+ inputs: [
5136
+ { name: 'user', internalType: 'address', type: 'address' },
5137
+ { name: 'limit', internalType: 'uint256', type: 'uint256' },
5138
+ { name: 'requestedAmount', internalType: 'uint256', type: 'uint256' },
5139
+ ],
5140
+ name: 'UserExceedsMintLimit',
5141
+ },
5142
+ {
5143
+ type: 'error',
5144
+ inputs: [
5145
+ { name: 'user', internalType: 'address', type: 'address' },
5146
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
5147
+ { name: 'role', internalType: 'uint256', type: 'uint256' },
5148
+ ],
5149
+ name: 'UserMissingRoleForToken',
5150
+ },
5151
+ { type: 'error', inputs: [], name: 'WrongValueSent' },
5152
+ {
5153
+ type: 'error',
5154
+ inputs: [],
5155
+ name: 'premintSignerContractFailedToRecoverSigner',
5156
+ },
5157
+ { type: 'error', inputs: [], name: 'premintSignerContractNotAContract' },
5158
+ ] as const
5159
+
5160
+ /**
5161
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777579A2C6363387cC38C0A334624dDAbB90)
5162
+ */
5163
+ export const zoraMintsManagerImplAddress = {
5164
+ 999999999: '0x7777777579A2C6363387cC38C0A334624dDAbB90',
5165
+ } as const
5166
+
5167
+ /**
5168
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777579A2C6363387cC38C0A334624dDAbB90)
5169
+ */
5170
+ export const zoraMintsManagerImplConfig = {
5171
+ address: zoraMintsManagerImplAddress,
5172
+ abi: zoraMintsManagerImplABI,
5173
+ } as const