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

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