@zoralabs/protocol-deployments 0.1.5-DEV.2 → 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zoralabs/protocol-deployments",
3
- "version": "0.1.5-DEV.2",
3
+ "version": "0.1.5-DEV.3",
4
4
  "repository": "https://github.com/ourzora/zora-protocol",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -35,7 +35,7 @@
35
35
  "@lavamoat/preinstall-always-fail": "2.0.0",
36
36
  "@zoralabs/1155-deployments": "*",
37
37
  "@zoralabs/zora-1155-contracts": "2.9.0-DEV.0",
38
- "@zoralabs/mints-contracts": "0.1.0-DEV.1",
39
- "@zoralabs/mints-deployments": "0.0.1-DEV.1"
38
+ "@zoralabs/mints-contracts": "0.1.0-DEV.2",
39
+ "@zoralabs/mints-deployments": "0.0.1-DEV.2"
40
40
  }
41
41
  }
@@ -195,9 +195,9 @@ export const addresses = {
195
195
  timestamp: 1709234007,
196
196
  },
197
197
  999999999: {
198
- CONTRACT_1155_IMPL: "0xCD7aA5CbF0187fd8F426F3322E48B02Fb6b973d8",
198
+ CONTRACT_1155_IMPL: "0xa2562fFeD81C699b08487244A822feE0D09Abe15",
199
199
  CONTRACT_1155_IMPL_VERSION: "2.9.0-DEV.0",
200
- FACTORY_IMPL: "0x9474664542fe17AC8f940aaC2160f1816607c9Cc",
200
+ FACTORY_IMPL: "0xe61c819753EDE74fB3F97D851f7DDFA3ec738856",
201
201
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
202
202
  FIXED_PRICE_SALE_STRATEGY: "0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A",
203
203
  MERKLE_MINT_SALE_STRATEGY: "0x5e5fD4b758076BAD940db0284b711A67E8a3B88c",
@@ -205,6 +205,6 @@ export const addresses = {
205
205
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
206
206
  REDEEM_MINTER_FACTORY: "0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6",
207
207
  UPGRADE_GATE: "0x0000000000000000000000000000000000000000",
208
- timestamp: 1711674862,
208
+ timestamp: 1712013215,
209
209
  },
210
210
  };
@@ -38,7 +38,7 @@ export const chainConfigs = {
38
38
  };
39
39
  export const addresses = {
40
40
  999999999: {
41
- MINTS_MANAGER_IMPL: "0x880AC09CBbc69b49B0FD7434bB7e4eE33D0b0Ae6",
42
- MINTS_MANAGER_IMPL_VERSION: "0.1.0-DEV.1",
41
+ MINTS_MANAGER_IMPL: "0xeC580aF42A2588f2a6d1753328107FD271a07b74",
42
+ MINTS_MANAGER_IMPL_VERSION: "0.1.0-DEV.2",
43
43
  },
44
44
  };
@@ -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' },
@@ -3775,7 +3751,7 @@ export const zoraCreatorRedeemMinterFactoryConfig = {
3775
3751
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
3776
3752
 
3777
3753
  /**
3778
- * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777772b3123825eE55F3C45b6CbFd1631aBE1)
3754
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777287d4c25c0AD1E532FBd82C4d7Cf79E0F)
3779
3755
  */
3780
3756
  export const zoraMints1155ABI = [
3781
3757
  { stateMutability: 'nonpayable', type: 'constructor', inputs: [] },
@@ -3866,6 +3842,21 @@ export const zoraMints1155ABI = [
3866
3842
  name: 'createToken',
3867
3843
  outputs: [],
3868
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
+ },
3869
3860
  {
3870
3861
  stateMutability: 'view',
3871
3862
  type: 'function',
@@ -3897,6 +3888,28 @@ export const zoraMints1155ABI = [
3897
3888
  },
3898
3889
  ],
3899
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
+ },
3900
3913
  {
3901
3914
  stateMutability: 'view',
3902
3915
  type: 'function',
@@ -3914,6 +3927,28 @@ export const zoraMints1155ABI = [
3914
3927
  name: 'isConsumingScheduledOp',
3915
3928
  outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
3916
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
+ },
3917
3952
  {
3918
3953
  stateMutability: 'nonpayable',
3919
3954
  type: 'function',
@@ -3946,6 +3981,13 @@ export const zoraMints1155ABI = [
3946
3981
  name: 'name',
3947
3982
  outputs: [{ name: '', internalType: 'string', type: 'string' }],
3948
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
+ },
3949
3991
  {
3950
3992
  stateMutability: 'nonpayable',
3951
3993
  type: 'function',
@@ -3966,6 +4008,28 @@ export const zoraMints1155ABI = [
3966
4008
  name: 'notifyUpdatedTokenURI',
3967
4009
  outputs: [],
3968
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
+ },
3969
4033
  {
3970
4034
  stateMutability: 'nonpayable',
3971
4035
  type: 'function',
@@ -4134,6 +4198,7 @@ export const zoraMints1155ABI = [
4134
4198
  name: 'AuthorityUpdated',
4135
4199
  },
4136
4200
  { type: 'event', anonymous: false, inputs: [], name: 'ContractURIUpdated' },
4201
+ { type: 'event', anonymous: false, inputs: [], name: 'EIP712DomainChanged' },
4137
4202
  {
4138
4203
  type: 'event',
4139
4204
  anonymous: false,
@@ -4369,11 +4434,31 @@ export const zoraMints1155ABI = [
4369
4434
  name: 'ERC1155MissingApprovalForAll',
4370
4435
  },
4371
4436
  { type: 'error', inputs: [], name: 'ERC20TransferSlippage' },
4437
+ {
4438
+ type: 'error',
4439
+ inputs: [{ name: 'deadline', internalType: 'uint256', type: 'uint256' }],
4440
+ name: 'ERC2612ExpiredSignature',
4441
+ },
4372
4442
  { type: 'error', inputs: [], name: 'ETHTransferFailed' },
4373
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
+ },
4374
4452
  { type: 'error', inputs: [], name: 'InvalidRecipient' },
4453
+ { type: 'error', inputs: [], name: 'InvalidShortString' },
4454
+ { type: 'error', inputs: [], name: 'InvalidSignature' },
4375
4455
  { type: 'error', inputs: [], name: 'InvalidTokenPrice' },
4376
4456
  { type: 'error', inputs: [], name: 'NoUriForNonexistentToken' },
4457
+ {
4458
+ type: 'error',
4459
+ inputs: [{ name: 'str', internalType: 'string', type: 'string' }],
4460
+ name: 'StringTooLong',
4461
+ },
4377
4462
  { type: 'error', inputs: [], name: 'TokenAlreadyCreated' },
4378
4463
  { type: 'error', inputs: [], name: 'TokenDoesNotExist' },
4379
4464
  {
@@ -4392,14 +4477,14 @@ export const zoraMints1155ABI = [
4392
4477
  ] as const
4393
4478
 
4394
4479
  /**
4395
- * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777772b3123825eE55F3C45b6CbFd1631aBE1)
4480
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777287d4c25c0AD1E532FBd82C4d7Cf79E0F)
4396
4481
  */
4397
4482
  export const zoraMints1155Address = {
4398
- 999999999: '0x777777772b3123825eE55F3C45b6CbFd1631aBE1',
4483
+ 999999999: '0x7777777287d4c25c0AD1E532FBd82C4d7Cf79E0F',
4399
4484
  } as const
4400
4485
 
4401
4486
  /**
4402
- * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777772b3123825eE55F3C45b6CbFd1631aBE1)
4487
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777287d4c25c0AD1E532FBd82C4d7Cf79E0F)
4403
4488
  */
4404
4489
  export const zoraMints1155Config = {
4405
4490
  address: zoraMints1155Address,
@@ -4411,7 +4496,7 @@ export const zoraMints1155Config = {
4411
4496
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4412
4497
 
4413
4498
  /**
4414
- * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777579A2C6363387cC38C0A334624dDAbB90)
4499
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d61b747bB131cEA42Fb849e5F0d8C0483)
4415
4500
  */
4416
4501
  export const zoraMintsManagerImplABI = [
4417
4502
  {
@@ -4610,6 +4695,7 @@ export const zoraMintsManagerImplABI = [
4610
4695
  { name: 'tokenAddress', internalType: 'address', type: 'address' },
4611
4696
  ],
4612
4697
  },
4698
+ { name: 'defaultMintable', internalType: 'bool', type: 'bool' },
4613
4699
  ],
4614
4700
  name: 'createToken',
4615
4701
  outputs: [],
@@ -4823,6 +4909,25 @@ export const zoraMintsManagerImplABI = [
4823
4909
  ],
4824
4910
  name: 'Collected',
4825
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
+ },
4826
4931
  {
4827
4932
  type: 'event',
4828
4933
  anonymous: false,
@@ -5158,14 +5263,14 @@ export const zoraMintsManagerImplABI = [
5158
5263
  ] as const
5159
5264
 
5160
5265
  /**
5161
- * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777579A2C6363387cC38C0A334624dDAbB90)
5266
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d61b747bB131cEA42Fb849e5F0d8C0483)
5162
5267
  */
5163
5268
  export const zoraMintsManagerImplAddress = {
5164
- 999999999: '0x7777777579A2C6363387cC38C0A334624dDAbB90',
5269
+ 999999999: '0x7777777d61b747bB131cEA42Fb849e5F0d8C0483',
5165
5270
  } as const
5166
5271
 
5167
5272
  /**
5168
- * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777579A2C6363387cC38C0A334624dDAbB90)
5273
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777d61b747bB131cEA42Fb849e5F0d8C0483)
5169
5274
  */
5170
5275
  export const zoraMintsManagerImplConfig = {
5171
5276
  address: zoraMintsManagerImplAddress,