@zoralabs/protocol-deployments 0.1.5-DEV.1 → 0.1.5-DEV.10

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.
@@ -1,3 +1,98 @@
1
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2
+ // IUnwrapAndForwardAction
3
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4
+
5
+ export const iUnwrapAndForwardActionABI = [
6
+ {
7
+ stateMutability: 'payable',
8
+ type: 'function',
9
+ inputs: [
10
+ { name: 'receiverAddress', internalType: 'address', type: 'address' },
11
+ { name: 'call', internalType: 'bytes', type: 'bytes' },
12
+ { name: 'valueToSend', internalType: 'uint256', type: 'uint256' },
13
+ ],
14
+ name: 'callWithEth',
15
+ outputs: [],
16
+ },
17
+ ] as const
18
+
19
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
20
+ // MintsEthUnwrapperAndCaller
21
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
22
+
23
+ /**
24
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x98d1B7E6B9d11271124316593889BCF07038bE78)
25
+ */
26
+ export const mintsEthUnwrapperAndCallerABI = [
27
+ {
28
+ stateMutability: 'nonpayable',
29
+ type: 'constructor',
30
+ inputs: [
31
+ {
32
+ name: '_zoraMints1155',
33
+ internalType: 'contract IZoraMints1155',
34
+ type: 'address',
35
+ },
36
+ ],
37
+ },
38
+ { stateMutability: 'payable', type: 'receive' },
39
+ {
40
+ stateMutability: 'nonpayable',
41
+ type: 'function',
42
+ inputs: [
43
+ { name: '', internalType: 'address', type: 'address' },
44
+ { name: 'from', internalType: 'address', type: 'address' },
45
+ { name: 'ids', internalType: 'uint256[]', type: 'uint256[]' },
46
+ { name: 'values', internalType: 'uint256[]', type: 'uint256[]' },
47
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
48
+ ],
49
+ name: 'onERC1155BatchReceived',
50
+ outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
51
+ },
52
+ {
53
+ stateMutability: 'nonpayable',
54
+ type: 'function',
55
+ inputs: [
56
+ { name: '', internalType: 'address', type: 'address' },
57
+ { name: 'from', internalType: 'address', type: 'address' },
58
+ { name: 'id', internalType: 'uint256', type: 'uint256' },
59
+ { name: 'value', internalType: 'uint256', type: 'uint256' },
60
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
61
+ ],
62
+ name: 'onERC1155Received',
63
+ outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
64
+ },
65
+ {
66
+ type: 'error',
67
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
68
+ name: 'ERC20NotSupported',
69
+ },
70
+ { type: 'error', inputs: [], name: 'ETHTransferFailed' },
71
+ { type: 'error', inputs: [], name: 'NotExpectingReceive' },
72
+ { type: 'error', inputs: [], name: 'NotZoraMints1155' },
73
+ {
74
+ type: 'error',
75
+ inputs: [{ name: 'data', internalType: 'bytes', type: 'bytes' }],
76
+ name: 'TransferFailed',
77
+ },
78
+ { type: 'error', inputs: [], name: 'UnknownUserAction' },
79
+ ] as const
80
+
81
+ /**
82
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x98d1B7E6B9d11271124316593889BCF07038bE78)
83
+ */
84
+ export const mintsEthUnwrapperAndCallerAddress = {
85
+ 999999999: '0x98d1B7E6B9d11271124316593889BCF07038bE78',
86
+ } as const
87
+
88
+ /**
89
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x98d1B7E6B9d11271124316593889BCF07038bE78)
90
+ */
91
+ export const mintsEthUnwrapperAndCallerConfig = {
92
+ address: mintsEthUnwrapperAndCallerAddress,
93
+ abi: mintsEthUnwrapperAndCallerABI,
94
+ } as const
95
+
1
96
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2
97
  // ZoraCreator1155FactoryImpl
3
98
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -540,6 +635,7 @@ export const zoraCreator1155ImplABI = [
540
635
  { name: '_mintFeeRecipient', internalType: 'address', type: 'address' },
541
636
  { name: '_upgradeGate', internalType: 'address', type: 'address' },
542
637
  { name: '_protocolRewards', internalType: 'address', type: 'address' },
638
+ { name: '_mints', internalType: 'address', type: 'address' },
543
639
  ],
544
640
  },
545
641
  { stateMutability: 'payable', type: 'receive' },
@@ -608,18 +704,6 @@ export const zoraCreator1155ImplABI = [
608
704
  name: 'adminMint',
609
705
  outputs: [],
610
706
  },
611
- {
612
- stateMutability: 'nonpayable',
613
- type: 'function',
614
- inputs: [
615
- { name: 'recipient', internalType: 'address', type: 'address' },
616
- { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
617
- { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
618
- { name: 'data', internalType: 'bytes', type: 'bytes' },
619
- ],
620
- name: 'adminMintBatch',
621
- outputs: [],
622
- },
623
707
  {
624
708
  stateMutability: 'view',
625
709
  type: 'function',
@@ -688,71 +772,10 @@ export const zoraCreator1155ImplABI = [
688
772
  {
689
773
  stateMutability: 'pure',
690
774
  type: 'function',
691
- inputs: [{ name: 'numTokens', internalType: 'uint256', type: 'uint256' }],
692
- name: 'computeFreeMintRewards',
693
- outputs: [
694
- {
695
- name: '',
696
- internalType: 'struct RewardsSettings',
697
- type: 'tuple',
698
- components: [
699
- { name: 'creatorReward', internalType: 'uint256', type: 'uint256' },
700
- {
701
- name: 'createReferralReward',
702
- internalType: 'uint256',
703
- type: 'uint256',
704
- },
705
- {
706
- name: 'mintReferralReward',
707
- internalType: 'uint256',
708
- type: 'uint256',
709
- },
710
- {
711
- name: 'firstMinterReward',
712
- internalType: 'uint256',
713
- type: 'uint256',
714
- },
715
- { name: 'zoraReward', internalType: 'uint256', type: 'uint256' },
716
- ],
717
- },
718
- ],
719
- },
720
- {
721
- stateMutability: 'pure',
722
- type: 'function',
723
- inputs: [{ name: 'numTokens', internalType: 'uint256', type: 'uint256' }],
724
- name: 'computePaidMintRewards',
725
- outputs: [
726
- {
727
- name: '',
728
- internalType: 'struct RewardsSettings',
729
- type: 'tuple',
730
- components: [
731
- { name: 'creatorReward', internalType: 'uint256', type: 'uint256' },
732
- {
733
- name: 'createReferralReward',
734
- internalType: 'uint256',
735
- type: 'uint256',
736
- },
737
- {
738
- name: 'mintReferralReward',
739
- internalType: 'uint256',
740
- type: 'uint256',
741
- },
742
- {
743
- name: 'firstMinterReward',
744
- internalType: 'uint256',
745
- type: 'uint256',
746
- },
747
- { name: 'zoraReward', internalType: 'uint256', type: 'uint256' },
748
- ],
749
- },
775
+ inputs: [
776
+ { name: 'mintPrice', internalType: 'uint256', type: 'uint256' },
777
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
750
778
  ],
751
- },
752
- {
753
- stateMutability: 'pure',
754
- type: 'function',
755
- inputs: [{ name: 'numTokens', internalType: 'uint256', type: 'uint256' }],
756
779
  name: 'computeTotalReward',
757
780
  outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
758
781
  },
@@ -815,7 +838,7 @@ export const zoraCreator1155ImplABI = [
815
838
  { name: 'premintConfig', internalType: 'bytes', type: 'bytes' },
816
839
  { name: 'premintVersion', internalType: 'bytes32', type: 'bytes32' },
817
840
  { name: 'signature', internalType: 'bytes', type: 'bytes' },
818
- { name: 'sender', internalType: 'address', type: 'address' },
841
+ { name: 'firstMinter', internalType: 'address', type: 'address' },
819
842
  {
820
843
  name: 'premintSignerContract',
821
844
  internalType: 'address',
@@ -990,12 +1013,32 @@ export const zoraCreator1155ImplABI = [
990
1013
  outputs: [],
991
1014
  },
992
1015
  {
993
- stateMutability: 'pure',
1016
+ stateMutability: 'view',
994
1017
  type: 'function',
995
1018
  inputs: [],
996
1019
  name: 'mintFee',
997
1020
  outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
998
1021
  },
1022
+ {
1023
+ stateMutability: 'payable',
1024
+ type: 'function',
1025
+ inputs: [
1026
+ { name: 'mintTokenIds', internalType: 'uint256[]', type: 'uint256[]' },
1027
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
1028
+ { name: 'minter', internalType: 'contract IMinter1155', type: 'address' },
1029
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
1030
+ {
1031
+ name: 'rewardsRecipients',
1032
+ internalType: 'address[]',
1033
+ type: 'address[]',
1034
+ },
1035
+ { name: 'minterArguments', internalType: 'bytes', type: 'bytes' },
1036
+ ],
1037
+ name: 'mintWithMints',
1038
+ outputs: [
1039
+ { name: 'quantityMinted', internalType: 'uint256', type: 'uint256' },
1040
+ ],
1041
+ },
999
1042
  {
1000
1043
  stateMutability: 'payable',
1001
1044
  type: 'function',
@@ -1030,6 +1073,32 @@ export const zoraCreator1155ImplABI = [
1030
1073
  name: 'nextTokenId',
1031
1074
  outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
1032
1075
  },
1076
+ {
1077
+ stateMutability: 'pure',
1078
+ type: 'function',
1079
+ inputs: [
1080
+ { name: '', internalType: 'address', type: 'address' },
1081
+ { name: '', internalType: 'address', type: 'address' },
1082
+ { name: '', internalType: 'uint256[]', type: 'uint256[]' },
1083
+ { name: '', internalType: 'uint256[]', type: 'uint256[]' },
1084
+ { name: '', internalType: 'bytes', type: 'bytes' },
1085
+ ],
1086
+ name: 'onERC1155BatchReceived',
1087
+ outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
1088
+ },
1089
+ {
1090
+ stateMutability: 'pure',
1091
+ type: 'function',
1092
+ inputs: [
1093
+ { name: '', internalType: 'address', type: 'address' },
1094
+ { name: '', internalType: 'address', type: 'address' },
1095
+ { name: '', internalType: 'uint256', type: 'uint256' },
1096
+ { name: '', internalType: 'uint256', type: 'uint256' },
1097
+ { name: '', internalType: 'bytes', type: 'bytes' },
1098
+ ],
1099
+ name: 'onERC1155Received',
1100
+ outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
1101
+ },
1033
1102
  {
1034
1103
  stateMutability: 'view',
1035
1104
  type: 'function',
@@ -1878,6 +1947,7 @@ export const zoraCreator1155ImplABI = [
1878
1947
  inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
1879
1948
  name: 'NoRendererForToken',
1880
1949
  },
1950
+ { type: 'error', inputs: [], name: 'NonEthRedemption' },
1881
1951
  { type: 'error', inputs: [], name: 'ONLY_CREATE_REFERRAL' },
1882
1952
  { type: 'error', inputs: [], name: 'PremintDeleted' },
1883
1953
  {
@@ -2907,6 +2977,7 @@ export const zoraCreator1155PremintExecutorImplABI = [
2907
2977
  { type: 'error', inputs: [], name: 'MinterContractAlreadyExists' },
2908
2978
  { type: 'error', inputs: [], name: 'MinterContractDoesNotExist' },
2909
2979
  { type: 'error', inputs: [], name: 'NewOwnerNeedsToBeAdmin' },
2980
+ { type: 'error', inputs: [], name: 'NonEthRedemption' },
2910
2981
  { type: 'error', inputs: [], name: 'ONLY_CREATE_REFERRAL' },
2911
2982
  { type: 'error', inputs: [], name: 'ONLY_OWNER' },
2912
2983
  { type: 'error', inputs: [], name: 'ONLY_PENDING_OWNER' },
@@ -3769,3 +3840,1591 @@ export const zoraCreatorRedeemMinterFactoryConfig = {
3769
3840
  address: zoraCreatorRedeemMinterFactoryAddress,
3770
3841
  abi: zoraCreatorRedeemMinterFactoryABI,
3771
3842
  } as const
3843
+
3844
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
3845
+ // ZoraMints1155
3846
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
3847
+
3848
+ /**
3849
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777EBF55Ec642acCBCfe1342C2B7A384Afe4)
3850
+ */
3851
+ export const zoraMints1155ABI = [
3852
+ { stateMutability: 'nonpayable', type: 'constructor', inputs: [] },
3853
+ {
3854
+ stateMutability: 'view',
3855
+ type: 'function',
3856
+ inputs: [],
3857
+ name: 'ETH_ADDRESS',
3858
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
3859
+ },
3860
+ {
3861
+ stateMutability: 'view',
3862
+ type: 'function',
3863
+ inputs: [],
3864
+ name: 'MINIMUM_ERC20_PRICE',
3865
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
3866
+ },
3867
+ {
3868
+ stateMutability: 'view',
3869
+ type: 'function',
3870
+ inputs: [],
3871
+ name: 'MINIMUM_ETH_PRICE',
3872
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
3873
+ },
3874
+ {
3875
+ stateMutability: 'view',
3876
+ type: 'function',
3877
+ inputs: [],
3878
+ name: 'authority',
3879
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
3880
+ },
3881
+ {
3882
+ stateMutability: 'view',
3883
+ type: 'function',
3884
+ inputs: [
3885
+ { name: 'account', internalType: 'address', type: 'address' },
3886
+ { name: 'id', internalType: 'uint256', type: 'uint256' },
3887
+ ],
3888
+ name: 'balanceOf',
3889
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
3890
+ },
3891
+ {
3892
+ stateMutability: 'view',
3893
+ type: 'function',
3894
+ inputs: [{ name: 'account', internalType: 'address', type: 'address' }],
3895
+ name: 'balanceOfAccount',
3896
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
3897
+ },
3898
+ {
3899
+ stateMutability: 'view',
3900
+ type: 'function',
3901
+ inputs: [
3902
+ { name: 'accounts', internalType: 'address[]', type: 'address[]' },
3903
+ { name: 'ids', internalType: 'uint256[]', type: 'uint256[]' },
3904
+ ],
3905
+ name: 'balanceOfBatch',
3906
+ outputs: [{ name: '', internalType: 'uint256[]', type: 'uint256[]' }],
3907
+ },
3908
+ {
3909
+ stateMutability: 'view',
3910
+ type: 'function',
3911
+ inputs: [],
3912
+ name: 'contractURI',
3913
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
3914
+ },
3915
+ {
3916
+ stateMutability: 'pure',
3917
+ type: 'function',
3918
+ inputs: [],
3919
+ name: 'contractVersion',
3920
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
3921
+ },
3922
+ {
3923
+ stateMutability: 'nonpayable',
3924
+ type: 'function',
3925
+ inputs: [
3926
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
3927
+ {
3928
+ name: 'tokenConfig',
3929
+ internalType: 'struct TokenConfig',
3930
+ type: 'tuple',
3931
+ components: [
3932
+ { name: 'price', internalType: 'uint256', type: 'uint256' },
3933
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
3934
+ { name: 'redeemHandler', internalType: 'address', type: 'address' },
3935
+ ],
3936
+ },
3937
+ ],
3938
+ name: 'createToken',
3939
+ outputs: [],
3940
+ },
3941
+ {
3942
+ stateMutability: 'view',
3943
+ type: 'function',
3944
+ inputs: [],
3945
+ name: 'eip712Domain',
3946
+ outputs: [
3947
+ { name: 'fields', internalType: 'bytes1', type: 'bytes1' },
3948
+ { name: 'name', internalType: 'string', type: 'string' },
3949
+ { name: 'version', internalType: 'string', type: 'string' },
3950
+ { name: 'chainId', internalType: 'uint256', type: 'uint256' },
3951
+ { name: 'verifyingContract', internalType: 'address', type: 'address' },
3952
+ { name: 'salt', internalType: 'bytes32', type: 'bytes32' },
3953
+ { name: 'extensions', internalType: 'uint256[]', type: 'uint256[]' },
3954
+ ],
3955
+ },
3956
+ {
3957
+ stateMutability: 'view',
3958
+ type: 'function',
3959
+ inputs: [],
3960
+ name: 'getManager',
3961
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
3962
+ },
3963
+ {
3964
+ stateMutability: 'view',
3965
+ type: 'function',
3966
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
3967
+ name: 'getTokenConfig',
3968
+ outputs: [
3969
+ {
3970
+ name: '',
3971
+ internalType: 'struct TokenConfig',
3972
+ type: 'tuple',
3973
+ components: [
3974
+ { name: 'price', internalType: 'uint256', type: 'uint256' },
3975
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
3976
+ { name: 'redeemHandler', internalType: 'address', type: 'address' },
3977
+ ],
3978
+ },
3979
+ ],
3980
+ },
3981
+ {
3982
+ stateMutability: 'view',
3983
+ type: 'function',
3984
+ inputs: [
3985
+ {
3986
+ name: 'permit',
3987
+ internalType: 'struct IZoraMints1155Managed.PermitBatch',
3988
+ type: 'tuple',
3989
+ components: [
3990
+ { name: 'owner', internalType: 'address', type: 'address' },
3991
+ { name: 'to', internalType: 'address', type: 'address' },
3992
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
3993
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
3994
+ { name: 'safeTransferData', internalType: 'bytes', type: 'bytes' },
3995
+ { name: 'deadline', internalType: 'uint256', type: 'uint256' },
3996
+ { name: 'nonce', internalType: 'uint256', type: 'uint256' },
3997
+ ],
3998
+ },
3999
+ ],
4000
+ name: 'hashPermitBatch',
4001
+ outputs: [{ name: '', internalType: 'bytes32', type: 'bytes32' }],
4002
+ },
4003
+ {
4004
+ stateMutability: 'view',
4005
+ type: 'function',
4006
+ inputs: [
4007
+ {
4008
+ name: 'permit',
4009
+ internalType: 'struct IZoraMints1155Managed.PermitSingle',
4010
+ type: 'tuple',
4011
+ components: [
4012
+ { name: 'owner', internalType: 'address', type: 'address' },
4013
+ { name: 'to', internalType: 'address', type: 'address' },
4014
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4015
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
4016
+ { name: 'safeTransferData', internalType: 'bytes', type: 'bytes' },
4017
+ { name: 'deadline', internalType: 'uint256', type: 'uint256' },
4018
+ { name: 'nonce', internalType: 'uint256', type: 'uint256' },
4019
+ ],
4020
+ },
4021
+ ],
4022
+ name: 'hashPermitSingle',
4023
+ outputs: [{ name: '', internalType: 'bytes32', type: 'bytes32' }],
4024
+ },
4025
+ {
4026
+ stateMutability: 'view',
4027
+ type: 'function',
4028
+ inputs: [
4029
+ { name: 'account', internalType: 'address', type: 'address' },
4030
+ { name: 'operator', internalType: 'address', type: 'address' },
4031
+ ],
4032
+ name: 'isApprovedForAll',
4033
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
4034
+ },
4035
+ {
4036
+ stateMutability: 'view',
4037
+ type: 'function',
4038
+ inputs: [],
4039
+ name: 'isConsumingScheduledOp',
4040
+ outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
4041
+ },
4042
+ {
4043
+ stateMutability: 'view',
4044
+ type: 'function',
4045
+ inputs: [
4046
+ {
4047
+ name: 'permit',
4048
+ internalType: 'struct IZoraMints1155Managed.PermitBatch',
4049
+ type: 'tuple',
4050
+ components: [
4051
+ { name: 'owner', internalType: 'address', type: 'address' },
4052
+ { name: 'to', internalType: 'address', type: 'address' },
4053
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4054
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4055
+ { name: 'safeTransferData', internalType: 'bytes', type: 'bytes' },
4056
+ { name: 'deadline', internalType: 'uint256', type: 'uint256' },
4057
+ { name: 'nonce', internalType: 'uint256', type: 'uint256' },
4058
+ ],
4059
+ },
4060
+ { name: 'signature', internalType: 'bytes', type: 'bytes' },
4061
+ ],
4062
+ name: 'isValidSignatureTransferBatch',
4063
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
4064
+ },
4065
+ {
4066
+ stateMutability: 'view',
4067
+ type: 'function',
4068
+ inputs: [
4069
+ {
4070
+ name: 'permit',
4071
+ internalType: 'struct IZoraMints1155Managed.PermitSingle',
4072
+ type: 'tuple',
4073
+ components: [
4074
+ { name: 'owner', internalType: 'address', type: 'address' },
4075
+ { name: 'to', internalType: 'address', type: 'address' },
4076
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4077
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
4078
+ { name: 'safeTransferData', internalType: 'bytes', type: 'bytes' },
4079
+ { name: 'deadline', internalType: 'uint256', type: 'uint256' },
4080
+ { name: 'nonce', internalType: 'uint256', type: 'uint256' },
4081
+ ],
4082
+ },
4083
+ { name: 'signature', internalType: 'bytes', type: 'bytes' },
4084
+ ],
4085
+ name: 'isValidSignatureTransferSingle',
4086
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
4087
+ },
4088
+ {
4089
+ stateMutability: 'nonpayable',
4090
+ type: 'function',
4091
+ inputs: [
4092
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4093
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
4094
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
4095
+ { name: 'recipient', internalType: 'address', type: 'address' },
4096
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4097
+ ],
4098
+ name: 'mintTokenWithERC20',
4099
+ outputs: [],
4100
+ },
4101
+ {
4102
+ stateMutability: 'payable',
4103
+ type: 'function',
4104
+ inputs: [
4105
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4106
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
4107
+ { name: 'recipient', internalType: 'address', type: 'address' },
4108
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4109
+ ],
4110
+ name: 'mintTokenWithEth',
4111
+ outputs: [],
4112
+ },
4113
+ {
4114
+ stateMutability: 'pure',
4115
+ type: 'function',
4116
+ inputs: [],
4117
+ name: 'name',
4118
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4119
+ },
4120
+ {
4121
+ stateMutability: 'view',
4122
+ type: 'function',
4123
+ inputs: [
4124
+ { name: 'owner', internalType: 'address', type: 'address' },
4125
+ { name: 'nonce', internalType: 'uint256', type: 'uint256' },
4126
+ ],
4127
+ name: 'nonceUsed',
4128
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
4129
+ },
4130
+ {
4131
+ stateMutability: 'nonpayable',
4132
+ type: 'function',
4133
+ inputs: [
4134
+ { name: 'newContractURI', internalType: 'string', type: 'string' },
4135
+ { name: 'newBaseURI', internalType: 'string', type: 'string' },
4136
+ ],
4137
+ name: 'notifyURIsUpdated',
4138
+ outputs: [],
4139
+ },
4140
+ {
4141
+ stateMutability: 'nonpayable',
4142
+ type: 'function',
4143
+ inputs: [
4144
+ { name: 'newUri', internalType: 'string', type: 'string' },
4145
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4146
+ ],
4147
+ name: 'notifyUpdatedTokenURI',
4148
+ outputs: [],
4149
+ },
4150
+ {
4151
+ stateMutability: 'nonpayable',
4152
+ type: 'function',
4153
+ inputs: [
4154
+ {
4155
+ name: 'permit',
4156
+ internalType: 'struct IZoraMints1155Managed.PermitSingle',
4157
+ type: 'tuple',
4158
+ components: [
4159
+ { name: 'owner', internalType: 'address', type: 'address' },
4160
+ { name: 'to', internalType: 'address', type: 'address' },
4161
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4162
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
4163
+ { name: 'safeTransferData', internalType: 'bytes', type: 'bytes' },
4164
+ { name: 'deadline', internalType: 'uint256', type: 'uint256' },
4165
+ { name: 'nonce', internalType: 'uint256', type: 'uint256' },
4166
+ ],
4167
+ },
4168
+ { name: 'signature', internalType: 'bytes', type: 'bytes' },
4169
+ ],
4170
+ name: 'permitSafeTransfer',
4171
+ outputs: [],
4172
+ },
4173
+ {
4174
+ stateMutability: 'nonpayable',
4175
+ type: 'function',
4176
+ inputs: [
4177
+ {
4178
+ name: 'permit',
4179
+ internalType: 'struct IZoraMints1155Managed.PermitBatch',
4180
+ type: 'tuple',
4181
+ components: [
4182
+ { name: 'owner', internalType: 'address', type: 'address' },
4183
+ { name: 'to', internalType: 'address', type: 'address' },
4184
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4185
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4186
+ { name: 'safeTransferData', internalType: 'bytes', type: 'bytes' },
4187
+ { name: 'deadline', internalType: 'uint256', type: 'uint256' },
4188
+ { name: 'nonce', internalType: 'uint256', type: 'uint256' },
4189
+ ],
4190
+ },
4191
+ { name: 'signature', internalType: 'bytes', type: 'bytes' },
4192
+ ],
4193
+ name: 'permitSafeTransferBatch',
4194
+ outputs: [],
4195
+ },
4196
+ {
4197
+ stateMutability: 'nonpayable',
4198
+ type: 'function',
4199
+ inputs: [
4200
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4201
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
4202
+ { name: 'recipient', internalType: 'address', type: 'address' },
4203
+ ],
4204
+ name: 'redeem',
4205
+ outputs: [
4206
+ {
4207
+ name: '',
4208
+ internalType: 'struct Redemption',
4209
+ type: 'tuple',
4210
+ components: [
4211
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
4212
+ { name: 'valueRedeemed', internalType: 'uint256', type: 'uint256' },
4213
+ ],
4214
+ },
4215
+ ],
4216
+ },
4217
+ {
4218
+ stateMutability: 'nonpayable',
4219
+ type: 'function',
4220
+ inputs: [
4221
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4222
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4223
+ { name: 'recipient', internalType: 'address', type: 'address' },
4224
+ ],
4225
+ name: 'redeemBatch',
4226
+ outputs: [
4227
+ {
4228
+ name: 'redemptions',
4229
+ internalType: 'struct Redemption[]',
4230
+ type: 'tuple[]',
4231
+ components: [
4232
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
4233
+ { name: 'valueRedeemed', internalType: 'uint256', type: 'uint256' },
4234
+ ],
4235
+ },
4236
+ ],
4237
+ },
4238
+ {
4239
+ stateMutability: 'nonpayable',
4240
+ type: 'function',
4241
+ inputs: [
4242
+ { name: 'from', internalType: 'address', type: 'address' },
4243
+ { name: 'to', internalType: 'address', type: 'address' },
4244
+ { name: 'ids', internalType: 'uint256[]', type: 'uint256[]' },
4245
+ { name: 'values', internalType: 'uint256[]', type: 'uint256[]' },
4246
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4247
+ ],
4248
+ name: 'safeBatchTransferFrom',
4249
+ outputs: [],
4250
+ },
4251
+ {
4252
+ stateMutability: 'nonpayable',
4253
+ type: 'function',
4254
+ inputs: [
4255
+ { name: 'from', internalType: 'address', type: 'address' },
4256
+ { name: 'to', internalType: 'address', type: 'address' },
4257
+ { name: 'id', internalType: 'uint256', type: 'uint256' },
4258
+ { name: 'value', internalType: 'uint256', type: 'uint256' },
4259
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4260
+ ],
4261
+ name: 'safeTransferFrom',
4262
+ outputs: [],
4263
+ },
4264
+ {
4265
+ stateMutability: 'nonpayable',
4266
+ type: 'function',
4267
+ inputs: [
4268
+ { name: 'operator', internalType: 'address', type: 'address' },
4269
+ { name: 'approved', internalType: 'bool', type: 'bool' },
4270
+ ],
4271
+ name: 'setApprovalForAll',
4272
+ outputs: [],
4273
+ },
4274
+ {
4275
+ stateMutability: 'nonpayable',
4276
+ type: 'function',
4277
+ inputs: [
4278
+ { name: 'newAuthority', internalType: 'address', type: 'address' },
4279
+ ],
4280
+ name: 'setAuthority',
4281
+ outputs: [],
4282
+ },
4283
+ {
4284
+ stateMutability: 'view',
4285
+ type: 'function',
4286
+ inputs: [{ name: 'interfaceId', internalType: 'bytes4', type: 'bytes4' }],
4287
+ name: 'supportsInterface',
4288
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
4289
+ },
4290
+ {
4291
+ stateMutability: 'pure',
4292
+ type: 'function',
4293
+ inputs: [],
4294
+ name: 'symbol',
4295
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4296
+ },
4297
+ {
4298
+ stateMutability: 'view',
4299
+ type: 'function',
4300
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
4301
+ name: 'tokenExists',
4302
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
4303
+ },
4304
+ {
4305
+ stateMutability: 'view',
4306
+ type: 'function',
4307
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
4308
+ name: 'tokenPrice',
4309
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
4310
+ },
4311
+ {
4312
+ stateMutability: 'payable',
4313
+ type: 'function',
4314
+ inputs: [
4315
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4316
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4317
+ { name: 'call', internalType: 'bytes', type: 'bytes' },
4318
+ ],
4319
+ name: 'transferBatchToManagerAndCall',
4320
+ outputs: [{ name: 'callReturn', internalType: 'bytes', type: 'bytes' }],
4321
+ },
4322
+ {
4323
+ stateMutability: 'view',
4324
+ type: 'function',
4325
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
4326
+ name: 'uri',
4327
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4328
+ },
4329
+ {
4330
+ type: 'event',
4331
+ anonymous: false,
4332
+ inputs: [
4333
+ {
4334
+ name: 'account',
4335
+ internalType: 'address',
4336
+ type: 'address',
4337
+ indexed: true,
4338
+ },
4339
+ {
4340
+ name: 'operator',
4341
+ internalType: 'address',
4342
+ type: 'address',
4343
+ indexed: true,
4344
+ },
4345
+ { name: 'approved', internalType: 'bool', type: 'bool', indexed: false },
4346
+ ],
4347
+ name: 'ApprovalForAll',
4348
+ },
4349
+ {
4350
+ type: 'event',
4351
+ anonymous: false,
4352
+ inputs: [
4353
+ {
4354
+ name: 'authority',
4355
+ internalType: 'address',
4356
+ type: 'address',
4357
+ indexed: false,
4358
+ },
4359
+ ],
4360
+ name: 'AuthorityUpdated',
4361
+ },
4362
+ { type: 'event', anonymous: false, inputs: [], name: 'ContractURIUpdated' },
4363
+ { type: 'event', anonymous: false, inputs: [], name: 'EIP712DomainChanged' },
4364
+ {
4365
+ type: 'event',
4366
+ anonymous: false,
4367
+ inputs: [
4368
+ {
4369
+ name: 'tokenId',
4370
+ internalType: 'uint256',
4371
+ type: 'uint256',
4372
+ indexed: true,
4373
+ },
4374
+ {
4375
+ name: 'price',
4376
+ internalType: 'uint256',
4377
+ type: 'uint256',
4378
+ indexed: true,
4379
+ },
4380
+ {
4381
+ name: 'tokenAddress',
4382
+ internalType: 'address',
4383
+ type: 'address',
4384
+ indexed: true,
4385
+ },
4386
+ ],
4387
+ name: 'TokenCreated',
4388
+ },
4389
+ {
4390
+ type: 'event',
4391
+ anonymous: false,
4392
+ inputs: [
4393
+ {
4394
+ name: 'operator',
4395
+ internalType: 'address',
4396
+ type: 'address',
4397
+ indexed: true,
4398
+ },
4399
+ { name: 'from', internalType: 'address', type: 'address', indexed: true },
4400
+ { name: 'to', internalType: 'address', type: 'address', indexed: true },
4401
+ {
4402
+ name: 'ids',
4403
+ internalType: 'uint256[]',
4404
+ type: 'uint256[]',
4405
+ indexed: false,
4406
+ },
4407
+ {
4408
+ name: 'values',
4409
+ internalType: 'uint256[]',
4410
+ type: 'uint256[]',
4411
+ indexed: false,
4412
+ },
4413
+ ],
4414
+ name: 'TransferBatch',
4415
+ },
4416
+ {
4417
+ type: 'event',
4418
+ anonymous: false,
4419
+ inputs: [
4420
+ {
4421
+ name: 'operator',
4422
+ internalType: 'address',
4423
+ type: 'address',
4424
+ indexed: true,
4425
+ },
4426
+ { name: 'from', internalType: 'address', type: 'address', indexed: true },
4427
+ { name: 'to', internalType: 'address', type: 'address', indexed: true },
4428
+ { name: 'id', internalType: 'uint256', type: 'uint256', indexed: false },
4429
+ {
4430
+ name: 'value',
4431
+ internalType: 'uint256',
4432
+ type: 'uint256',
4433
+ indexed: false,
4434
+ },
4435
+ ],
4436
+ name: 'TransferSingle',
4437
+ },
4438
+ {
4439
+ type: 'event',
4440
+ anonymous: false,
4441
+ inputs: [
4442
+ { name: 'value', internalType: 'string', type: 'string', indexed: false },
4443
+ { name: 'id', internalType: 'uint256', type: 'uint256', indexed: true },
4444
+ ],
4445
+ name: 'URI',
4446
+ },
4447
+ {
4448
+ type: 'event',
4449
+ anonymous: false,
4450
+ inputs: [
4451
+ {
4452
+ name: 'contractURI',
4453
+ internalType: 'string',
4454
+ type: 'string',
4455
+ indexed: false,
4456
+ },
4457
+ {
4458
+ name: 'baseURI',
4459
+ internalType: 'string',
4460
+ type: 'string',
4461
+ indexed: false,
4462
+ },
4463
+ ],
4464
+ name: 'URIsUpdated',
4465
+ },
4466
+ {
4467
+ type: 'error',
4468
+ inputs: [{ name: 'authority', internalType: 'address', type: 'address' }],
4469
+ name: 'AccessManagedInvalidAuthority',
4470
+ },
4471
+ {
4472
+ type: 'error',
4473
+ inputs: [
4474
+ { name: 'caller', internalType: 'address', type: 'address' },
4475
+ { name: 'delay', internalType: 'uint32', type: 'uint32' },
4476
+ ],
4477
+ name: 'AccessManagedRequiredDelay',
4478
+ },
4479
+ {
4480
+ type: 'error',
4481
+ inputs: [{ name: 'caller', internalType: 'address', type: 'address' }],
4482
+ name: 'AccessManagedUnauthorized',
4483
+ },
4484
+ {
4485
+ type: 'error',
4486
+ inputs: [
4487
+ { name: 'lengthA', internalType: 'uint256', type: 'uint256' },
4488
+ { name: 'lengthB', internalType: 'uint256', type: 'uint256' },
4489
+ ],
4490
+ name: 'ArrayLengthMismatch',
4491
+ },
4492
+ {
4493
+ type: 'error',
4494
+ inputs: [{ name: 'returnData', internalType: 'bytes', type: 'bytes' }],
4495
+ name: 'CallFailed',
4496
+ },
4497
+ {
4498
+ type: 'error',
4499
+ inputs: [
4500
+ { name: 'sender', internalType: 'address', type: 'address' },
4501
+ { name: 'balance', internalType: 'uint256', type: 'uint256' },
4502
+ { name: 'needed', internalType: 'uint256', type: 'uint256' },
4503
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4504
+ ],
4505
+ name: 'ERC1155InsufficientBalance',
4506
+ },
4507
+ {
4508
+ type: 'error',
4509
+ inputs: [{ name: 'approver', internalType: 'address', type: 'address' }],
4510
+ name: 'ERC1155InvalidApprover',
4511
+ },
4512
+ {
4513
+ type: 'error',
4514
+ inputs: [
4515
+ { name: 'idsLength', internalType: 'uint256', type: 'uint256' },
4516
+ { name: 'valuesLength', internalType: 'uint256', type: 'uint256' },
4517
+ ],
4518
+ name: 'ERC1155InvalidArrayLength',
4519
+ },
4520
+ {
4521
+ type: 'error',
4522
+ inputs: [{ name: 'operator', internalType: 'address', type: 'address' }],
4523
+ name: 'ERC1155InvalidOperator',
4524
+ },
4525
+ {
4526
+ type: 'error',
4527
+ inputs: [{ name: 'receiver', internalType: 'address', type: 'address' }],
4528
+ name: 'ERC1155InvalidReceiver',
4529
+ },
4530
+ {
4531
+ type: 'error',
4532
+ inputs: [{ name: 'sender', internalType: 'address', type: 'address' }],
4533
+ name: 'ERC1155InvalidSender',
4534
+ },
4535
+ {
4536
+ type: 'error',
4537
+ inputs: [
4538
+ { name: 'operator', internalType: 'address', type: 'address' },
4539
+ { name: 'owner', internalType: 'address', type: 'address' },
4540
+ ],
4541
+ name: 'ERC1155MissingApprovalForAll',
4542
+ },
4543
+ { type: 'error', inputs: [], name: 'ERC20TransferSlippage' },
4544
+ {
4545
+ type: 'error',
4546
+ inputs: [{ name: 'deadline', internalType: 'uint256', type: 'uint256' }],
4547
+ name: 'ERC2612ExpiredSignature',
4548
+ },
4549
+ { type: 'error', inputs: [], name: 'ETHTransferFailed' },
4550
+ { type: 'error', inputs: [], name: 'IncorrectAmountSent' },
4551
+ {
4552
+ type: 'error',
4553
+ inputs: [
4554
+ { name: 'account', internalType: 'address', type: 'address' },
4555
+ { name: 'currentNonce', internalType: 'uint256', type: 'uint256' },
4556
+ ],
4557
+ name: 'InvalidAccountNonce',
4558
+ },
4559
+ { type: 'error', inputs: [], name: 'InvalidRecipient' },
4560
+ { type: 'error', inputs: [], name: 'InvalidShortString' },
4561
+ { type: 'error', inputs: [], name: 'InvalidSignature' },
4562
+ { type: 'error', inputs: [], name: 'InvalidTokenPrice' },
4563
+ { type: 'error', inputs: [], name: 'NoUriForNonexistentToken' },
4564
+ {
4565
+ type: 'error',
4566
+ inputs: [{ name: 'handler', internalType: 'address', type: 'address' }],
4567
+ name: 'NotARedeemHandler',
4568
+ },
4569
+ {
4570
+ type: 'error',
4571
+ inputs: [{ name: 'str', internalType: 'string', type: 'string' }],
4572
+ name: 'StringTooLong',
4573
+ },
4574
+ { type: 'error', inputs: [], name: 'TokenAlreadyCreated' },
4575
+ { type: 'error', inputs: [], name: 'TokenDoesNotExist' },
4576
+ {
4577
+ type: 'error',
4578
+ inputs: [
4579
+ { name: 'storedTokenAddress', internalType: 'address', type: 'address' },
4580
+ {
4581
+ name: 'expectedTokenAddress',
4582
+ internalType: 'address',
4583
+ type: 'address',
4584
+ },
4585
+ ],
4586
+ name: 'TokenMismatch',
4587
+ },
4588
+ { type: 'error', inputs: [], name: 'TokenNotMintable' },
4589
+ ] as const
4590
+
4591
+ /**
4592
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777EBF55Ec642acCBCfe1342C2B7A384Afe4)
4593
+ */
4594
+ export const zoraMints1155Address = {
4595
+ 999999999: '0x7777777EBF55Ec642acCBCfe1342C2B7A384Afe4',
4596
+ } as const
4597
+
4598
+ /**
4599
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777EBF55Ec642acCBCfe1342C2B7A384Afe4)
4600
+ */
4601
+ export const zoraMints1155Config = {
4602
+ address: zoraMints1155Address,
4603
+ abi: zoraMints1155ABI,
4604
+ } as const
4605
+
4606
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4607
+ // ZoraMintsManagerImpl
4608
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4609
+
4610
+ /**
4611
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777dB66f897FDC5e6f01dB79C4e56dC817D7)
4612
+ */
4613
+ export const zoraMintsManagerImplABI = [
4614
+ {
4615
+ stateMutability: 'nonpayable',
4616
+ type: 'constructor',
4617
+ inputs: [
4618
+ {
4619
+ name: '_premintExecutor',
4620
+ internalType: 'contract IZoraCreator1155PremintExecutorV2',
4621
+ type: 'address',
4622
+ },
4623
+ ],
4624
+ },
4625
+ {
4626
+ stateMutability: 'view',
4627
+ type: 'function',
4628
+ inputs: [],
4629
+ name: 'UPGRADE_INTERFACE_VERSION',
4630
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4631
+ },
4632
+ {
4633
+ stateMutability: 'nonpayable',
4634
+ type: 'function',
4635
+ inputs: [],
4636
+ name: 'acceptOwnership',
4637
+ outputs: [],
4638
+ },
4639
+ {
4640
+ stateMutability: 'payable',
4641
+ type: 'function',
4642
+ inputs: [
4643
+ { name: 'callFrom', internalType: 'address', type: 'address' },
4644
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4645
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4646
+ { name: 'call', internalType: 'bytes', type: 'bytes' },
4647
+ ],
4648
+ name: 'callWithTransferTokens',
4649
+ outputs: [
4650
+ { name: 'success', internalType: 'bool', type: 'bool' },
4651
+ { name: 'result', internalType: 'bytes', type: 'bytes' },
4652
+ ],
4653
+ },
4654
+ {
4655
+ stateMutability: 'view',
4656
+ type: 'function',
4657
+ inputs: [
4658
+ { name: 'caller', internalType: 'address', type: 'address' },
4659
+ { name: '', internalType: 'address', type: 'address' },
4660
+ { name: '', internalType: 'bytes4', type: 'bytes4' },
4661
+ ],
4662
+ name: 'canCall',
4663
+ outputs: [{ name: '', internalType: 'bool', type: 'bool' }],
4664
+ },
4665
+ {
4666
+ stateMutability: 'payable',
4667
+ type: 'function',
4668
+ inputs: [
4669
+ {
4670
+ name: 'zoraCreator1155Contract',
4671
+ internalType: 'contract IMintWithMints',
4672
+ type: 'address',
4673
+ },
4674
+ { name: 'minter', internalType: 'contract IMinter1155', type: 'address' },
4675
+ {
4676
+ name: 'zoraCreator1155TokenId',
4677
+ internalType: 'uint256',
4678
+ type: 'uint256',
4679
+ },
4680
+ {
4681
+ name: 'collectMintArguments',
4682
+ internalType: 'struct ICollectWithZoraMints.CollectMintArguments',
4683
+ type: 'tuple',
4684
+ components: [
4685
+ {
4686
+ name: 'mintRewardsRecipients',
4687
+ internalType: 'address[]',
4688
+ type: 'address[]',
4689
+ },
4690
+ { name: 'minterArguments', internalType: 'bytes', type: 'bytes' },
4691
+ { name: 'mintComment', internalType: 'string', type: 'string' },
4692
+ ],
4693
+ },
4694
+ ],
4695
+ name: 'collect',
4696
+ outputs: [],
4697
+ },
4698
+ {
4699
+ stateMutability: 'payable',
4700
+ type: 'function',
4701
+ inputs: [
4702
+ {
4703
+ name: 'contractConfig',
4704
+ internalType: 'struct ContractCreationConfig',
4705
+ type: 'tuple',
4706
+ components: [
4707
+ { name: 'contractAdmin', internalType: 'address', type: 'address' },
4708
+ { name: 'contractURI', internalType: 'string', type: 'string' },
4709
+ { name: 'contractName', internalType: 'string', type: 'string' },
4710
+ ],
4711
+ },
4712
+ {
4713
+ name: 'premintConfig',
4714
+ internalType: 'struct PremintConfigV2',
4715
+ type: 'tuple',
4716
+ components: [
4717
+ {
4718
+ name: 'tokenConfig',
4719
+ internalType: 'struct TokenCreationConfigV2',
4720
+ type: 'tuple',
4721
+ components: [
4722
+ { name: 'tokenURI', internalType: 'string', type: 'string' },
4723
+ { name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
4724
+ {
4725
+ name: 'maxTokensPerAddress',
4726
+ internalType: 'uint64',
4727
+ type: 'uint64',
4728
+ },
4729
+ { name: 'pricePerToken', internalType: 'uint96', type: 'uint96' },
4730
+ { name: 'mintStart', internalType: 'uint64', type: 'uint64' },
4731
+ { name: 'mintDuration', internalType: 'uint64', type: 'uint64' },
4732
+ { name: 'royaltyBPS', internalType: 'uint32', type: 'uint32' },
4733
+ {
4734
+ name: 'payoutRecipient',
4735
+ internalType: 'address',
4736
+ type: 'address',
4737
+ },
4738
+ {
4739
+ name: 'fixedPriceMinter',
4740
+ internalType: 'address',
4741
+ type: 'address',
4742
+ },
4743
+ {
4744
+ name: 'createReferral',
4745
+ internalType: 'address',
4746
+ type: 'address',
4747
+ },
4748
+ ],
4749
+ },
4750
+ { name: 'uid', internalType: 'uint32', type: 'uint32' },
4751
+ { name: 'version', internalType: 'uint32', type: 'uint32' },
4752
+ { name: 'deleted', internalType: 'bool', type: 'bool' },
4753
+ ],
4754
+ },
4755
+ { name: 'signature', internalType: 'bytes', type: 'bytes' },
4756
+ {
4757
+ name: 'mintArguments',
4758
+ internalType: 'struct MintArguments',
4759
+ type: 'tuple',
4760
+ components: [
4761
+ { name: 'mintRecipient', internalType: 'address', type: 'address' },
4762
+ { name: 'mintComment', internalType: 'string', type: 'string' },
4763
+ {
4764
+ name: 'mintRewardsRecipients',
4765
+ internalType: 'address[]',
4766
+ type: 'address[]',
4767
+ },
4768
+ ],
4769
+ },
4770
+ { name: 'signerContract', internalType: 'address', type: 'address' },
4771
+ ],
4772
+ name: 'collectPremintV2',
4773
+ outputs: [
4774
+ {
4775
+ name: 'result',
4776
+ internalType: 'struct PremintResult',
4777
+ type: 'tuple',
4778
+ components: [
4779
+ { name: 'contractAddress', internalType: 'address', type: 'address' },
4780
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4781
+ { name: 'createdNewContract', internalType: 'bool', type: 'bool' },
4782
+ ],
4783
+ },
4784
+ ],
4785
+ },
4786
+ {
4787
+ stateMutability: 'pure',
4788
+ type: 'function',
4789
+ inputs: [],
4790
+ name: 'contractName',
4791
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4792
+ },
4793
+ {
4794
+ stateMutability: 'view',
4795
+ type: 'function',
4796
+ inputs: [],
4797
+ name: 'contractURI',
4798
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4799
+ },
4800
+ {
4801
+ stateMutability: 'pure',
4802
+ type: 'function',
4803
+ inputs: [],
4804
+ name: 'contractVersion',
4805
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
4806
+ },
4807
+ {
4808
+ stateMutability: 'nonpayable',
4809
+ type: 'function',
4810
+ inputs: [
4811
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4812
+ {
4813
+ name: 'tokenConfig',
4814
+ internalType: 'struct TokenConfig',
4815
+ type: 'tuple',
4816
+ components: [
4817
+ { name: 'price', internalType: 'uint256', type: 'uint256' },
4818
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
4819
+ { name: 'redeemHandler', internalType: 'address', type: 'address' },
4820
+ ],
4821
+ },
4822
+ { name: 'defaultMintable', internalType: 'bool', type: 'bool' },
4823
+ ],
4824
+ name: 'createToken',
4825
+ outputs: [],
4826
+ },
4827
+ {
4828
+ stateMutability: 'pure',
4829
+ type: 'function',
4830
+ inputs: [{ name: 'minterArguments', internalType: 'bytes', type: 'bytes' }],
4831
+ name: 'decodeMintRecipientAndComment',
4832
+ outputs: [
4833
+ { name: 'mintTo', internalType: 'address', type: 'address' },
4834
+ { name: 'mintComment', internalType: 'string', type: 'string' },
4835
+ ],
4836
+ },
4837
+ {
4838
+ stateMutability: 'view',
4839
+ type: 'function',
4840
+ inputs: [],
4841
+ name: 'getEthPrice',
4842
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
4843
+ },
4844
+ {
4845
+ stateMutability: 'view',
4846
+ type: 'function',
4847
+ inputs: [],
4848
+ name: 'implementation',
4849
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
4850
+ },
4851
+ {
4852
+ stateMutability: 'nonpayable',
4853
+ type: 'function',
4854
+ inputs: [
4855
+ { name: 'defaultOwner', internalType: 'address', type: 'address' },
4856
+ { name: 'zoraMintsSalt', internalType: 'bytes32', type: 'bytes32' },
4857
+ { name: 'zoraMintsCreationCode', internalType: 'bytes', type: 'bytes' },
4858
+ { name: 'initialEthTokenId', internalType: 'uint256', type: 'uint256' },
4859
+ {
4860
+ name: 'initialEthTokenPrice',
4861
+ internalType: 'uint256',
4862
+ type: 'uint256',
4863
+ },
4864
+ { name: 'newBaseURI', internalType: 'string', type: 'string' },
4865
+ { name: 'newContractURI', internalType: 'string', type: 'string' },
4866
+ ],
4867
+ name: 'initialize',
4868
+ outputs: [
4869
+ {
4870
+ name: 'mints',
4871
+ internalType: 'contract IZoraMints1155',
4872
+ type: 'address',
4873
+ },
4874
+ ],
4875
+ },
4876
+ {
4877
+ stateMutability: 'nonpayable',
4878
+ type: 'function',
4879
+ inputs: [
4880
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
4881
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
4882
+ { name: 'recipient', internalType: 'address', type: 'address' },
4883
+ ],
4884
+ name: 'mintWithERC20',
4885
+ outputs: [
4886
+ { name: 'mintableTokenId', internalType: 'uint256', type: 'uint256' },
4887
+ ],
4888
+ },
4889
+ {
4890
+ stateMutability: 'payable',
4891
+ type: 'function',
4892
+ inputs: [
4893
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
4894
+ { name: 'recipient', internalType: 'address', type: 'address' },
4895
+ ],
4896
+ name: 'mintWithEth',
4897
+ outputs: [
4898
+ { name: 'mintableTokenId', internalType: 'uint256', type: 'uint256' },
4899
+ ],
4900
+ },
4901
+ {
4902
+ stateMutability: 'view',
4903
+ type: 'function',
4904
+ inputs: [],
4905
+ name: 'mintableEthToken',
4906
+ outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
4907
+ },
4908
+ {
4909
+ stateMutability: 'nonpayable',
4910
+ type: 'function',
4911
+ inputs: [
4912
+ { name: '', internalType: 'address', type: 'address' },
4913
+ { name: 'from', internalType: 'address', type: 'address' },
4914
+ { name: 'ids', internalType: 'uint256[]', type: 'uint256[]' },
4915
+ { name: 'values', internalType: 'uint256[]', type: 'uint256[]' },
4916
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4917
+ ],
4918
+ name: 'onERC1155BatchReceived',
4919
+ outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
4920
+ },
4921
+ {
4922
+ stateMutability: 'nonpayable',
4923
+ type: 'function',
4924
+ inputs: [
4925
+ { name: '', internalType: 'address', type: 'address' },
4926
+ { name: 'from', internalType: 'address', type: 'address' },
4927
+ { name: 'id', internalType: 'uint256', type: 'uint256' },
4928
+ { name: 'value', internalType: 'uint256', type: 'uint256' },
4929
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4930
+ ],
4931
+ name: 'onERC1155Received',
4932
+ outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
4933
+ },
4934
+ {
4935
+ stateMutability: 'view',
4936
+ type: 'function',
4937
+ inputs: [],
4938
+ name: 'owner',
4939
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
4940
+ },
4941
+ {
4942
+ stateMutability: 'view',
4943
+ type: 'function',
4944
+ inputs: [],
4945
+ name: 'pendingOwner',
4946
+ outputs: [{ name: '', internalType: 'address', type: 'address' }],
4947
+ },
4948
+ {
4949
+ stateMutability: 'view',
4950
+ type: 'function',
4951
+ inputs: [],
4952
+ name: 'proxiableUUID',
4953
+ outputs: [{ name: '', internalType: 'bytes32', type: 'bytes32' }],
4954
+ },
4955
+ {
4956
+ stateMutability: 'nonpayable',
4957
+ type: 'function',
4958
+ inputs: [],
4959
+ name: 'renounceOwnership',
4960
+ outputs: [],
4961
+ },
4962
+ {
4963
+ stateMutability: 'nonpayable',
4964
+ type: 'function',
4965
+ inputs: [
4966
+ { name: 'tokenAddress', internalType: 'address', type: 'address' },
4967
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
4968
+ ],
4969
+ name: 'setDefaultMintable',
4970
+ outputs: [],
4971
+ },
4972
+ {
4973
+ stateMutability: 'nonpayable',
4974
+ type: 'function',
4975
+ inputs: [
4976
+ { name: 'newContractURI', internalType: 'string', type: 'string' },
4977
+ { name: 'newBaseURI', internalType: 'string', type: 'string' },
4978
+ ],
4979
+ name: 'setMetadataURIs',
4980
+ outputs: [],
4981
+ },
4982
+ {
4983
+ stateMutability: 'nonpayable',
4984
+ type: 'function',
4985
+ inputs: [{ name: 'newOwner', internalType: 'address', type: 'address' }],
4986
+ name: 'transferOwnership',
4987
+ outputs: [],
4988
+ },
4989
+ {
4990
+ stateMutability: 'payable',
4991
+ type: 'function',
4992
+ inputs: [
4993
+ { name: 'newImplementation', internalType: 'address', type: 'address' },
4994
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4995
+ ],
4996
+ name: 'upgradeToAndCall',
4997
+ outputs: [],
4998
+ },
4999
+ {
5000
+ stateMutability: 'view',
5001
+ type: 'function',
5002
+ inputs: [{ name: 'tokenId', internalType: 'uint256', type: 'uint256' }],
5003
+ name: 'uri',
5004
+ outputs: [{ name: '', internalType: 'string', type: 'string' }],
5005
+ },
5006
+ {
5007
+ stateMutability: 'view',
5008
+ type: 'function',
5009
+ inputs: [],
5010
+ name: 'zoraMints1155',
5011
+ outputs: [
5012
+ { name: '', internalType: 'contract IZoraMints1155', type: 'address' },
5013
+ ],
5014
+ },
5015
+ {
5016
+ type: 'event',
5017
+ anonymous: false,
5018
+ inputs: [
5019
+ {
5020
+ name: 'tokenIds',
5021
+ internalType: 'uint256[]',
5022
+ type: 'uint256[]',
5023
+ indexed: true,
5024
+ },
5025
+ {
5026
+ name: 'quantities',
5027
+ internalType: 'uint256[]',
5028
+ type: 'uint256[]',
5029
+ indexed: false,
5030
+ },
5031
+ {
5032
+ name: 'zoraCreator1155Contract',
5033
+ internalType: 'address',
5034
+ type: 'address',
5035
+ indexed: true,
5036
+ },
5037
+ {
5038
+ name: 'zoraCreator1155TokenId',
5039
+ internalType: 'uint256',
5040
+ type: 'uint256',
5041
+ indexed: true,
5042
+ },
5043
+ ],
5044
+ name: 'Collected',
5045
+ },
5046
+ {
5047
+ type: 'event',
5048
+ anonymous: false,
5049
+ inputs: [
5050
+ {
5051
+ name: 'tokenAddress',
5052
+ internalType: 'address',
5053
+ type: 'address',
5054
+ indexed: false,
5055
+ },
5056
+ {
5057
+ name: 'tokenId',
5058
+ internalType: 'uint256',
5059
+ type: 'uint256',
5060
+ indexed: false,
5061
+ },
5062
+ ],
5063
+ name: 'DefaultMintableTokenSet',
5064
+ },
5065
+ {
5066
+ type: 'event',
5067
+ anonymous: false,
5068
+ inputs: [
5069
+ {
5070
+ name: 'version',
5071
+ internalType: 'uint64',
5072
+ type: 'uint64',
5073
+ indexed: false,
5074
+ },
5075
+ ],
5076
+ name: 'Initialized',
5077
+ },
5078
+ {
5079
+ type: 'event',
5080
+ anonymous: false,
5081
+ inputs: [
5082
+ {
5083
+ name: 'sender',
5084
+ internalType: 'address',
5085
+ type: 'address',
5086
+ indexed: true,
5087
+ },
5088
+ {
5089
+ name: 'tokenContract',
5090
+ internalType: 'address',
5091
+ type: 'address',
5092
+ indexed: true,
5093
+ },
5094
+ {
5095
+ name: 'tokenId',
5096
+ internalType: 'uint256',
5097
+ type: 'uint256',
5098
+ indexed: true,
5099
+ },
5100
+ {
5101
+ name: 'quantity',
5102
+ internalType: 'uint256',
5103
+ type: 'uint256',
5104
+ indexed: false,
5105
+ },
5106
+ {
5107
+ name: 'comment',
5108
+ internalType: 'string',
5109
+ type: 'string',
5110
+ indexed: false,
5111
+ },
5112
+ ],
5113
+ name: 'MintComment',
5114
+ },
5115
+ {
5116
+ type: 'event',
5117
+ anonymous: false,
5118
+ inputs: [
5119
+ {
5120
+ name: 'previousOwner',
5121
+ internalType: 'address',
5122
+ type: 'address',
5123
+ indexed: true,
5124
+ },
5125
+ {
5126
+ name: 'newOwner',
5127
+ internalType: 'address',
5128
+ type: 'address',
5129
+ indexed: true,
5130
+ },
5131
+ ],
5132
+ name: 'OwnershipTransferStarted',
5133
+ },
5134
+ {
5135
+ type: 'event',
5136
+ anonymous: false,
5137
+ inputs: [
5138
+ {
5139
+ name: 'previousOwner',
5140
+ internalType: 'address',
5141
+ type: 'address',
5142
+ indexed: true,
5143
+ },
5144
+ {
5145
+ name: 'newOwner',
5146
+ internalType: 'address',
5147
+ type: 'address',
5148
+ indexed: true,
5149
+ },
5150
+ ],
5151
+ name: 'OwnershipTransferred',
5152
+ },
5153
+ {
5154
+ type: 'event',
5155
+ anonymous: false,
5156
+ inputs: [
5157
+ {
5158
+ name: 'contractURI',
5159
+ internalType: 'string',
5160
+ type: 'string',
5161
+ indexed: false,
5162
+ },
5163
+ {
5164
+ name: 'baseURI',
5165
+ internalType: 'string',
5166
+ type: 'string',
5167
+ indexed: false,
5168
+ },
5169
+ ],
5170
+ name: 'URIsUpdated',
5171
+ },
5172
+ {
5173
+ type: 'event',
5174
+ anonymous: false,
5175
+ inputs: [
5176
+ {
5177
+ name: 'implementation',
5178
+ internalType: 'address',
5179
+ type: 'address',
5180
+ indexed: true,
5181
+ },
5182
+ ],
5183
+ name: 'Upgraded',
5184
+ },
5185
+ {
5186
+ type: 'error',
5187
+ inputs: [{ name: 'target', internalType: 'address', type: 'address' }],
5188
+ name: 'AddressEmptyCode',
5189
+ },
5190
+ {
5191
+ type: 'error',
5192
+ inputs: [
5193
+ { name: 'lengthA', internalType: 'uint256', type: 'uint256' },
5194
+ { name: 'lengthB', internalType: 'uint256', type: 'uint256' },
5195
+ ],
5196
+ name: 'ArrayLengthMismatch',
5197
+ },
5198
+ {
5199
+ type: 'error',
5200
+ inputs: [
5201
+ { name: 'operator', internalType: 'address', type: 'address' },
5202
+ { name: 'user', internalType: 'address', type: 'address' },
5203
+ ],
5204
+ name: 'Burn_NotOwnerOrApproved',
5205
+ },
5206
+ {
5207
+ type: 'error',
5208
+ inputs: [{ name: 'reason', internalType: 'bytes', type: 'bytes' }],
5209
+ name: 'CallFailed',
5210
+ },
5211
+ { type: 'error', inputs: [], name: 'Call_TokenIdMismatch' },
5212
+ { type: 'error', inputs: [], name: 'CallerNotZoraCreator1155' },
5213
+ {
5214
+ type: 'error',
5215
+ inputs: [
5216
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
5217
+ { name: 'quantity', internalType: 'uint256', type: 'uint256' },
5218
+ { name: 'totalMinted', internalType: 'uint256', type: 'uint256' },
5219
+ { name: 'maxSupply', internalType: 'uint256', type: 'uint256' },
5220
+ ],
5221
+ name: 'CannotMintMoreTokens',
5222
+ },
5223
+ {
5224
+ type: 'error',
5225
+ inputs: [
5226
+ { name: 'proposedAddress', internalType: 'address', type: 'address' },
5227
+ ],
5228
+ name: 'Config_TransferHookNotSupported',
5229
+ },
5230
+ { type: 'error', inputs: [], name: 'Create2EmptyBytecode' },
5231
+ { type: 'error', inputs: [], name: 'Create2FailedDeployment' },
5232
+ {
5233
+ type: 'error',
5234
+ inputs: [
5235
+ { name: 'balance', internalType: 'uint256', type: 'uint256' },
5236
+ { name: 'needed', internalType: 'uint256', type: 'uint256' },
5237
+ ],
5238
+ name: 'Create2InsufficientBalance',
5239
+ },
5240
+ { type: 'error', inputs: [], name: 'DefaultOwnerCannotBeZero' },
5241
+ { type: 'error', inputs: [], name: 'ERC1155BatchReceivedCallFailed' },
5242
+ { type: 'error', inputs: [], name: 'ERC1155_MINT_TO_ZERO_ADDRESS' },
5243
+ {
5244
+ type: 'error',
5245
+ inputs: [
5246
+ { name: 'implementation', internalType: 'address', type: 'address' },
5247
+ ],
5248
+ name: 'ERC1967InvalidImplementation',
5249
+ },
5250
+ { type: 'error', inputs: [], name: 'ERC1967NonPayable' },
5251
+ { type: 'error', inputs: [], name: 'ERC20TransferSlippage' },
5252
+ { type: 'error', inputs: [], name: 'ETHTransferFailed' },
5253
+ {
5254
+ type: 'error',
5255
+ inputs: [
5256
+ { name: 'recipient', internalType: 'address', type: 'address' },
5257
+ { name: 'amount', internalType: 'uint256', type: 'uint256' },
5258
+ ],
5259
+ name: 'ETHWithdrawFailed',
5260
+ },
5261
+ { type: 'error', inputs: [], name: 'FailedInnerCall' },
5262
+ { type: 'error', inputs: [], name: 'FirstMinterAddressZero' },
5263
+ {
5264
+ type: 'error',
5265
+ inputs: [
5266
+ { name: 'amount', internalType: 'uint256', type: 'uint256' },
5267
+ { name: 'contractValue', internalType: 'uint256', type: 'uint256' },
5268
+ ],
5269
+ name: 'FundsWithdrawInsolvent',
5270
+ },
5271
+ { type: 'error', inputs: [], name: 'IncorrectAmountSent' },
5272
+ { type: 'error', inputs: [], name: 'InvalidAdminAction' },
5273
+ { type: 'error', inputs: [], name: 'InvalidInitialization' },
5274
+ {
5275
+ type: 'error',
5276
+ inputs: [
5277
+ { name: 'mintTo', internalType: 'address', type: 'address' },
5278
+ { name: 'merkleProof', internalType: 'bytes32[]', type: 'bytes32[]' },
5279
+ { name: 'merkleRoot', internalType: 'bytes32', type: 'bytes32' },
5280
+ ],
5281
+ name: 'InvalidMerkleProof',
5282
+ },
5283
+ { type: 'error', inputs: [], name: 'InvalidMintSchedule' },
5284
+ { type: 'error', inputs: [], name: 'InvalidOwnerForAssociatedZoraMints' },
5285
+ { type: 'error', inputs: [], name: 'InvalidPremintVersion' },
5286
+ { type: 'error', inputs: [], name: 'InvalidRecipient' },
5287
+ { type: 'error', inputs: [], name: 'InvalidSignature' },
5288
+ { type: 'error', inputs: [], name: 'InvalidSignatureVersion' },
5289
+ {
5290
+ type: 'error',
5291
+ inputs: [{ name: 'magicValue', internalType: 'bytes4', type: 'bytes4' }],
5292
+ name: 'InvalidSigner',
5293
+ },
5294
+ { type: 'error', inputs: [], name: 'InvalidTokenPrice' },
5295
+ { type: 'error', inputs: [], name: 'MintNotYetStarted' },
5296
+ { type: 'error', inputs: [], name: 'MintWithMintsNotSupportedOnContract' },
5297
+ { type: 'error', inputs: [], name: 'Mint_InsolventSaleTransfer' },
5298
+ { type: 'error', inputs: [], name: 'Mint_InvalidMintArrayLength' },
5299
+ { type: 'error', inputs: [], name: 'Mint_TokenIDMintNotAllowed' },
5300
+ { type: 'error', inputs: [], name: 'Mint_UnknownCommand' },
5301
+ { type: 'error', inputs: [], name: 'Mint_ValueTransferFail' },
5302
+ { type: 'error', inputs: [], name: 'MinterContractAlreadyExists' },
5303
+ { type: 'error', inputs: [], name: 'MinterContractDoesNotExist' },
5304
+ { type: 'error', inputs: [], name: 'NewOwnerNeedsToBeAdmin' },
5305
+ { type: 'error', inputs: [], name: 'NoTokensTransferred' },
5306
+ { type: 'error', inputs: [], name: 'NoUriForNonexistentToken' },
5307
+ { type: 'error', inputs: [], name: 'NonEthRedemption' },
5308
+ {
5309
+ type: 'error',
5310
+ inputs: [{ name: 'handler', internalType: 'address', type: 'address' }],
5311
+ name: 'NotARedeemHandler',
5312
+ },
5313
+ { type: 'error', inputs: [], name: 'NotInitializing' },
5314
+ { type: 'error', inputs: [], name: 'NotSelfCall' },
5315
+ { type: 'error', inputs: [], name: 'NotZoraMints1155' },
5316
+ {
5317
+ type: 'error',
5318
+ inputs: [{ name: 'owner', internalType: 'address', type: 'address' }],
5319
+ name: 'OwnableInvalidOwner',
5320
+ },
5321
+ {
5322
+ type: 'error',
5323
+ inputs: [{ name: 'account', internalType: 'address', type: 'address' }],
5324
+ name: 'OwnableUnauthorizedAccount',
5325
+ },
5326
+ { type: 'error', inputs: [], name: 'PremintDeleted' },
5327
+ { type: 'error', inputs: [], name: 'PremintExecutorCannotBeZero' },
5328
+ {
5329
+ type: 'error',
5330
+ inputs: [
5331
+ { name: 'caller', internalType: 'address', type: 'address' },
5332
+ { name: 'recipient', internalType: 'address', type: 'address' },
5333
+ { name: 'amount', internalType: 'uint256', type: 'uint256' },
5334
+ ],
5335
+ name: 'ProtocolRewardsWithdrawFailed',
5336
+ },
5337
+ { type: 'error', inputs: [], name: 'ReentrancyGuardReentrantCall' },
5338
+ { type: 'error', inputs: [], name: 'Renderer_NotValidRendererContract' },
5339
+ { type: 'error', inputs: [], name: 'SaleEnded' },
5340
+ { type: 'error', inputs: [], name: 'SaleHasNotStarted' },
5341
+ {
5342
+ type: 'error',
5343
+ inputs: [
5344
+ { name: 'targetContract', internalType: 'address', type: 'address' },
5345
+ ],
5346
+ name: 'Sale_CannotCallNonSalesContract',
5347
+ },
5348
+ { type: 'error', inputs: [], name: 'TokenAlreadyCreated' },
5349
+ { type: 'error', inputs: [], name: 'TokenDoesNotExist' },
5350
+ {
5351
+ type: 'error',
5352
+ inputs: [
5353
+ { name: 'expected', internalType: 'uint256', type: 'uint256' },
5354
+ { name: 'actual', internalType: 'uint256', type: 'uint256' },
5355
+ ],
5356
+ name: 'TokenIdMismatch',
5357
+ },
5358
+ {
5359
+ type: 'error',
5360
+ inputs: [
5361
+ { name: 'storedTokenAddress', internalType: 'address', type: 'address' },
5362
+ {
5363
+ name: 'expectedTokenAddress',
5364
+ internalType: 'address',
5365
+ type: 'address',
5366
+ },
5367
+ ],
5368
+ name: 'TokenMismatch',
5369
+ },
5370
+ { type: 'error', inputs: [], name: 'TokenNotMintable' },
5371
+ { type: 'error', inputs: [], name: 'UUPSUnauthorizedCallContext' },
5372
+ {
5373
+ type: 'error',
5374
+ inputs: [{ name: 'slot', internalType: 'bytes32', type: 'bytes32' }],
5375
+ name: 'UUPSUnsupportedProxiableUUID',
5376
+ },
5377
+ {
5378
+ type: 'error',
5379
+ inputs: [{ name: 'selector', internalType: 'bytes4', type: 'bytes4' }],
5380
+ name: 'UnknownUserAction',
5381
+ },
5382
+ {
5383
+ type: 'error',
5384
+ inputs: [
5385
+ { name: 'expected', internalType: 'string', type: 'string' },
5386
+ { name: 'actual', internalType: 'string', type: 'string' },
5387
+ ],
5388
+ name: 'UpgradeToMismatchedContractName',
5389
+ },
5390
+ {
5391
+ type: 'error',
5392
+ inputs: [
5393
+ { name: 'user', internalType: 'address', type: 'address' },
5394
+ { name: 'limit', internalType: 'uint256', type: 'uint256' },
5395
+ { name: 'requestedAmount', internalType: 'uint256', type: 'uint256' },
5396
+ ],
5397
+ name: 'UserExceedsMintLimit',
5398
+ },
5399
+ {
5400
+ type: 'error',
5401
+ inputs: [
5402
+ { name: 'user', internalType: 'address', type: 'address' },
5403
+ { name: 'tokenId', internalType: 'uint256', type: 'uint256' },
5404
+ { name: 'role', internalType: 'uint256', type: 'uint256' },
5405
+ ],
5406
+ name: 'UserMissingRoleForToken',
5407
+ },
5408
+ { type: 'error', inputs: [], name: 'WrongValueSent' },
5409
+ {
5410
+ type: 'error',
5411
+ inputs: [],
5412
+ name: 'premintSignerContractFailedToRecoverSigner',
5413
+ },
5414
+ { type: 'error', inputs: [], name: 'premintSignerContractNotAContract' },
5415
+ ] as const
5416
+
5417
+ /**
5418
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777dB66f897FDC5e6f01dB79C4e56dC817D7)
5419
+ */
5420
+ export const zoraMintsManagerImplAddress = {
5421
+ 999999999: '0x7777777dB66f897FDC5e6f01dB79C4e56dC817D7',
5422
+ } as const
5423
+
5424
+ /**
5425
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777dB66f897FDC5e6f01dB79C4e56dC817D7)
5426
+ */
5427
+ export const zoraMintsManagerImplConfig = {
5428
+ address: zoraMintsManagerImplAddress,
5429
+ abi: zoraMintsManagerImplABI,
5430
+ } as const