@zoralabs/protocol-deployments 0.1.5-DEV.6 → 0.1.5-DEV.8

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.6",
3
+ "version": "0.1.5-DEV.8",
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.6",
39
- "@zoralabs/mints-deployments": "0.0.1-DEV.5"
38
+ "@zoralabs/mints-contracts": "0.1.0-DEV.7",
39
+ "@zoralabs/mints-deployments": "0.0.1-DEV.6"
40
40
  }
41
41
  }
@@ -195,9 +195,9 @@ export const addresses = {
195
195
  timestamp: 1709234007,
196
196
  },
197
197
  999999999: {
198
- CONTRACT_1155_IMPL: "0x996937aEc720228a70736738c7e3Bc918998dE46",
198
+ CONTRACT_1155_IMPL: "0xea93DF17634cB8b2d929dC2cdb69B734ddAb732e",
199
199
  CONTRACT_1155_IMPL_VERSION: "2.9.0-DEV.0",
200
- FACTORY_IMPL: "0xd58319Ecb4436b769a810aF731488071b56A5e34",
200
+ FACTORY_IMPL: "0x3E3F38FA99394C0eD95B829778333F0D4a35fa5F",
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: 1712072944,
208
+ timestamp: 1712252361,
209
209
  },
210
210
  };
@@ -38,7 +38,9 @@ export const chainConfigs = {
38
38
  };
39
39
  export const addresses = {
40
40
  999999999: {
41
- MINTS_MANAGER_IMPL: "0x0f8A85C28cF3FBA765E9E1EcCEF440CA728267F3",
42
- MINTS_MANAGER_IMPL_VERSION: "0.1.0-DEV.6",
41
+ MINTS_ETH_UNWRAPPER_AND_CALLER:
42
+ "0x0cA1f6829fA3B42480Ae363Cca5E95d1Fa52688b",
43
+ MINTS_MANAGER_IMPL: "0xCD252603Aa72DD6c14802D7F82cCaDfcB3a643C0",
44
+ MINTS_MANAGER_IMPL_VERSION: "0.1.0-DEV.7",
43
45
  },
44
46
  };
@@ -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/0x0cA1f6829fA3B42480Ae363Cca5E95d1Fa52688b)
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/0x0cA1f6829fA3B42480Ae363Cca5E95d1Fa52688b)
83
+ */
84
+ export const mintsEthUnwrapperAndCallerAddress = {
85
+ 999999999: '0x0cA1f6829fA3B42480Ae363Cca5E95d1Fa52688b',
86
+ } as const
87
+
88
+ /**
89
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x0cA1f6829fA3B42480Ae363Cca5E95d1Fa52688b)
90
+ */
91
+ export const mintsEthUnwrapperAndCallerConfig = {
92
+ address: mintsEthUnwrapperAndCallerAddress,
93
+ abi: mintsEthUnwrapperAndCallerABI,
94
+ } as const
95
+
1
96
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2
97
  // ZoraCreator1155FactoryImpl
3
98
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -3751,7 +3846,7 @@ export const zoraCreatorRedeemMinterFactoryConfig = {
3751
3846
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
3752
3847
 
3753
3848
  /**
3754
- * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777b3Ba1Ca5C68E197DD17546c2d08Ce0131)
3849
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777773DC1B9dc55935bf363728bb137C40c662)
3755
3850
  */
3756
3851
  export const zoraMints1155ABI = [
3757
3852
  { stateMutability: 'nonpayable', type: 'constructor', inputs: [] },
@@ -3836,6 +3931,7 @@ export const zoraMints1155ABI = [
3836
3931
  components: [
3837
3932
  { name: 'price', internalType: 'uint256', type: 'uint256' },
3838
3933
  { name: 'tokenAddress', internalType: 'address', type: 'address' },
3934
+ { name: 'redeemHandler', internalType: 'address', type: 'address' },
3839
3935
  ],
3840
3936
  },
3841
3937
  ],
@@ -3864,13 +3960,6 @@ export const zoraMints1155ABI = [
3864
3960
  name: 'getManager',
3865
3961
  outputs: [{ name: '', internalType: 'address', type: 'address' }],
3866
3962
  },
3867
- {
3868
- stateMutability: 'view',
3869
- type: 'function',
3870
- inputs: [],
3871
- name: 'getMsgSender',
3872
- outputs: [{ name: '', internalType: 'address', type: 'address' }],
3873
- },
3874
3963
  {
3875
3964
  stateMutability: 'view',
3876
3965
  type: 'function',
@@ -3884,6 +3973,7 @@ export const zoraMints1155ABI = [
3884
3973
  components: [
3885
3974
  { name: 'price', internalType: 'uint256', type: 'uint256' },
3886
3975
  { name: 'tokenAddress', internalType: 'address', type: 'address' },
3976
+ { name: 'redeemHandler', internalType: 'address', type: 'address' },
3887
3977
  ],
3888
3978
  },
3889
3979
  ],
@@ -3898,10 +3988,10 @@ export const zoraMints1155ABI = [
3898
3988
  type: 'tuple',
3899
3989
  components: [
3900
3990
  { name: 'owner', internalType: 'address', type: 'address' },
3991
+ { name: 'to', internalType: 'address', type: 'address' },
3901
3992
  { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
3902
3993
  { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
3903
3994
  { name: 'safeTransferData', internalType: 'bytes', type: 'bytes' },
3904
- { name: 'call', internalType: 'bytes', type: 'bytes' },
3905
3995
  { name: 'deadline', internalType: 'uint256', type: 'uint256' },
3906
3996
  ],
3907
3997
  },
@@ -3937,10 +4027,10 @@ export const zoraMints1155ABI = [
3937
4027
  type: 'tuple',
3938
4028
  components: [
3939
4029
  { name: 'owner', internalType: 'address', type: 'address' },
4030
+ { name: 'to', internalType: 'address', type: 'address' },
3940
4031
  { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
3941
4032
  { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
3942
4033
  { name: 'safeTransferData', internalType: 'bytes', type: 'bytes' },
3943
- { name: 'call', internalType: 'bytes', type: 'bytes' },
3944
4034
  { name: 'deadline', internalType: 'uint256', type: 'uint256' },
3945
4035
  ],
3946
4036
  },
@@ -4018,17 +4108,17 @@ export const zoraMints1155ABI = [
4018
4108
  type: 'tuple',
4019
4109
  components: [
4020
4110
  { name: 'owner', internalType: 'address', type: 'address' },
4111
+ { name: 'to', internalType: 'address', type: 'address' },
4021
4112
  { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4022
4113
  { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4023
4114
  { name: 'safeTransferData', internalType: 'bytes', type: 'bytes' },
4024
- { name: 'call', internalType: 'bytes', type: 'bytes' },
4025
4115
  { name: 'deadline', internalType: 'uint256', type: 'uint256' },
4026
4116
  ],
4027
4117
  },
4028
4118
  { name: 'signature', internalType: 'bytes', type: 'bytes' },
4029
4119
  ],
4030
- name: 'permitTransferBatchToManagerAndCall',
4031
- outputs: [{ name: 'callReturn', internalType: 'bytes', type: 'bytes' }],
4120
+ name: 'permitSafeTransferBatch',
4121
+ outputs: [],
4032
4122
  },
4033
4123
  {
4034
4124
  stateMutability: 'nonpayable',
@@ -4151,7 +4241,6 @@ export const zoraMints1155ABI = [
4151
4241
  inputs: [
4152
4242
  { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4153
4243
  { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4154
- { name: 'safeTransferData', internalType: 'bytes', type: 'bytes' },
4155
4244
  { name: 'call', internalType: 'bytes', type: 'bytes' },
4156
4245
  ],
4157
4246
  name: 'transferBatchToManagerAndCall',
@@ -4399,6 +4488,11 @@ export const zoraMints1155ABI = [
4399
4488
  { type: 'error', inputs: [], name: 'InvalidSignature' },
4400
4489
  { type: 'error', inputs: [], name: 'InvalidTokenPrice' },
4401
4490
  { type: 'error', inputs: [], name: 'NoUriForNonexistentToken' },
4491
+ {
4492
+ type: 'error',
4493
+ inputs: [{ name: 'handler', internalType: 'address', type: 'address' }],
4494
+ name: 'NotARedeemHandler',
4495
+ },
4402
4496
  {
4403
4497
  type: 'error',
4404
4498
  inputs: [{ name: 'str', internalType: 'string', type: 'string' }],
@@ -4422,14 +4516,14 @@ export const zoraMints1155ABI = [
4422
4516
  ] as const
4423
4517
 
4424
4518
  /**
4425
- * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777b3Ba1Ca5C68E197DD17546c2d08Ce0131)
4519
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777773DC1B9dc55935bf363728bb137C40c662)
4426
4520
  */
4427
4521
  export const zoraMints1155Address = {
4428
- 999999999: '0x7777777b3Ba1Ca5C68E197DD17546c2d08Ce0131',
4522
+ 999999999: '0x77777773DC1B9dc55935bf363728bb137C40c662',
4429
4523
  } as const
4430
4524
 
4431
4525
  /**
4432
- * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777b3Ba1Ca5C68E197DD17546c2d08Ce0131)
4526
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x77777773DC1B9dc55935bf363728bb137C40c662)
4433
4527
  */
4434
4528
  export const zoraMints1155Config = {
4435
4529
  address: zoraMints1155Address,
@@ -4441,7 +4535,7 @@ export const zoraMints1155Config = {
4441
4535
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4442
4536
 
4443
4537
  /**
4444
- * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777B4115B4030d41E6D2A13d7b37188b3117)
4538
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777742EF2C190dFbF98c18F492caE62Dc4d5F)
4445
4539
  */
4446
4540
  export const zoraMintsManagerImplABI = [
4447
4541
  {
@@ -4469,6 +4563,21 @@ export const zoraMintsManagerImplABI = [
4469
4563
  name: 'acceptOwnership',
4470
4564
  outputs: [],
4471
4565
  },
4566
+ {
4567
+ stateMutability: 'payable',
4568
+ type: 'function',
4569
+ inputs: [
4570
+ { name: 'callFrom', internalType: 'address', type: 'address' },
4571
+ { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4572
+ { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4573
+ { name: 'call', internalType: 'bytes', type: 'bytes' },
4574
+ ],
4575
+ name: 'callWithTransferTokens',
4576
+ outputs: [
4577
+ { name: 'success', internalType: 'bool', type: 'bool' },
4578
+ { name: 'result', internalType: 'bytes', type: 'bytes' },
4579
+ ],
4580
+ },
4472
4581
  {
4473
4582
  stateMutability: 'view',
4474
4583
  type: 'function',
@@ -4484,8 +4593,6 @@ export const zoraMintsManagerImplABI = [
4484
4593
  stateMutability: 'payable',
4485
4594
  type: 'function',
4486
4595
  inputs: [
4487
- { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4488
- { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4489
4596
  {
4490
4597
  name: 'zoraCreator1155Contract',
4491
4598
  internalType: 'contract IMintWithMints',
@@ -4519,8 +4626,6 @@ export const zoraMintsManagerImplABI = [
4519
4626
  stateMutability: 'payable',
4520
4627
  type: 'function',
4521
4628
  inputs: [
4522
- { name: 'tokenIds', internalType: 'uint256[]', type: 'uint256[]' },
4523
- { name: 'quantities', internalType: 'uint256[]', type: 'uint256[]' },
4524
4629
  {
4525
4630
  name: 'contractConfig',
4526
4631
  internalType: 'struct ContractCreationConfig',
@@ -4638,6 +4743,7 @@ export const zoraMintsManagerImplABI = [
4638
4743
  components: [
4639
4744
  { name: 'price', internalType: 'uint256', type: 'uint256' },
4640
4745
  { name: 'tokenAddress', internalType: 'address', type: 'address' },
4746
+ { name: 'redeemHandler', internalType: 'address', type: 'address' },
4641
4747
  ],
4642
4748
  },
4643
4749
  { name: 'defaultMintable', internalType: 'bool', type: 'bool' },
@@ -4727,27 +4833,27 @@ export const zoraMintsManagerImplABI = [
4727
4833
  outputs: [{ name: '', internalType: 'uint256', type: 'uint256' }],
4728
4834
  },
4729
4835
  {
4730
- stateMutability: 'pure',
4836
+ stateMutability: 'nonpayable',
4731
4837
  type: 'function',
4732
4838
  inputs: [
4733
4839
  { name: '', internalType: 'address', type: 'address' },
4734
- { name: '', internalType: 'address', type: 'address' },
4735
- { name: '', internalType: 'uint256[]', type: 'uint256[]' },
4736
- { name: '', internalType: 'uint256[]', type: 'uint256[]' },
4737
- { name: '', internalType: 'bytes', type: 'bytes' },
4840
+ { name: 'from', internalType: 'address', type: 'address' },
4841
+ { name: 'ids', internalType: 'uint256[]', type: 'uint256[]' },
4842
+ { name: 'values', internalType: 'uint256[]', type: 'uint256[]' },
4843
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4738
4844
  ],
4739
4845
  name: 'onERC1155BatchReceived',
4740
4846
  outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
4741
4847
  },
4742
4848
  {
4743
- stateMutability: 'pure',
4849
+ stateMutability: 'nonpayable',
4744
4850
  type: 'function',
4745
4851
  inputs: [
4746
4852
  { name: '', internalType: 'address', type: 'address' },
4747
- { name: '', internalType: 'address', type: 'address' },
4748
- { name: '', internalType: 'uint256', type: 'uint256' },
4749
- { name: '', internalType: 'uint256', type: 'uint256' },
4750
- { name: '', internalType: 'bytes', type: 'bytes' },
4853
+ { name: 'from', internalType: 'address', type: 'address' },
4854
+ { name: 'id', internalType: 'uint256', type: 'uint256' },
4855
+ { name: 'value', internalType: 'uint256', type: 'uint256' },
4856
+ { name: 'data', internalType: 'bytes', type: 'bytes' },
4751
4857
  ],
4752
4858
  name: 'onERC1155Received',
4753
4859
  outputs: [{ name: '', internalType: 'bytes4', type: 'bytes4' }],
@@ -5058,6 +5164,7 @@ export const zoraMintsManagerImplABI = [
5058
5164
  ],
5059
5165
  name: 'Create2InsufficientBalance',
5060
5166
  },
5167
+ { type: 'error', inputs: [], name: 'ERC1155BatchReceivedCallFailed' },
5061
5168
  { type: 'error', inputs: [], name: 'ERC1155_MINT_TO_ZERO_ADDRESS' },
5062
5169
  {
5063
5170
  type: 'error',
@@ -5120,9 +5227,17 @@ export const zoraMintsManagerImplABI = [
5120
5227
  { type: 'error', inputs: [], name: 'MinterContractAlreadyExists' },
5121
5228
  { type: 'error', inputs: [], name: 'MinterContractDoesNotExist' },
5122
5229
  { type: 'error', inputs: [], name: 'NewOwnerNeedsToBeAdmin' },
5230
+ { type: 'error', inputs: [], name: 'NoTokensTransferred' },
5123
5231
  { type: 'error', inputs: [], name: 'NoUriForNonexistentToken' },
5124
5232
  { type: 'error', inputs: [], name: 'NonEthRedemption' },
5233
+ {
5234
+ type: 'error',
5235
+ inputs: [{ name: 'handler', internalType: 'address', type: 'address' }],
5236
+ name: 'NotARedeemHandler',
5237
+ },
5125
5238
  { type: 'error', inputs: [], name: 'NotInitializing' },
5239
+ { type: 'error', inputs: [], name: 'NotSelfCall' },
5240
+ { type: 'error', inputs: [], name: 'NotZoraMints1155' },
5126
5241
  {
5127
5242
  type: 'error',
5128
5243
  inputs: [{ name: 'owner', internalType: 'address', type: 'address' }],
@@ -5143,6 +5258,7 @@ export const zoraMintsManagerImplABI = [
5143
5258
  ],
5144
5259
  name: 'ProtocolRewardsWithdrawFailed',
5145
5260
  },
5261
+ { type: 'error', inputs: [], name: 'ReentrancyGuardReentrantCall' },
5146
5262
  { type: 'error', inputs: [], name: 'Renderer_NotValidRendererContract' },
5147
5263
  { type: 'error', inputs: [], name: 'SaleEnded' },
5148
5264
  { type: 'error', inputs: [], name: 'SaleHasNotStarted' },
@@ -5182,6 +5298,11 @@ export const zoraMintsManagerImplABI = [
5182
5298
  inputs: [{ name: 'slot', internalType: 'bytes32', type: 'bytes32' }],
5183
5299
  name: 'UUPSUnsupportedProxiableUUID',
5184
5300
  },
5301
+ {
5302
+ type: 'error',
5303
+ inputs: [{ name: 'selector', internalType: 'bytes4', type: 'bytes4' }],
5304
+ name: 'UnknownUserAction',
5305
+ },
5185
5306
  {
5186
5307
  type: 'error',
5187
5308
  inputs: [
@@ -5218,14 +5339,14 @@ export const zoraMintsManagerImplABI = [
5218
5339
  ] as const
5219
5340
 
5220
5341
  /**
5221
- * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777B4115B4030d41E6D2A13d7b37188b3117)
5342
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777742EF2C190dFbF98c18F492caE62Dc4d5F)
5222
5343
  */
5223
5344
  export const zoraMintsManagerImplAddress = {
5224
- 999999999: '0x7777777B4115B4030d41E6D2A13d7b37188b3117',
5345
+ 999999999: '0x777777742EF2C190dFbF98c18F492caE62Dc4d5F',
5225
5346
  } as const
5226
5347
 
5227
5348
  /**
5228
- * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x7777777B4115B4030d41E6D2A13d7b37188b3117)
5349
+ * [__View Contract on Zora Sepolia Zora Sepolia Explorer__](https://sepolia.explorer.zora.energy//address/0x777777742EF2C190dFbF98c18F492caE62Dc4d5F)
5229
5350
  */
5230
5351
  export const zoraMintsManagerImplConfig = {
5231
5352
  address: zoraMintsManagerImplAddress,