@zoralabs/protocol-deployments 0.3.0-PRE.0 → 0.3.1-PRE.0

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/dist/index.cjs CHANGED
@@ -1636,6 +1636,9 @@ __export(src_exports, {
1636
1636
  protocolRewardsABI: () => protocolRewardsABI,
1637
1637
  protocolRewardsAddress: () => protocolRewardsAddress,
1638
1638
  protocolRewardsConfig: () => protocolRewardsConfig,
1639
+ secondarySwapABI: () => secondarySwapABI,
1640
+ secondarySwapAddress: () => secondarySwapAddress,
1641
+ secondarySwapConfig: () => secondarySwapConfig,
1639
1642
  sparks: () => sparks_exports,
1640
1643
  sponsoredSparksBatchTransferTypedDataType: () => sponsoredSparksBatchTransferTypedDataType,
1641
1644
  sponsoredSparksBatchTypedDataDefinition: () => sponsoredSparksBatchTypedDataDefinition,
@@ -3208,9 +3211,15 @@ var erc20ZRoyaltiesABI = [
3208
3211
  }
3209
3212
  ];
3210
3213
  var erc20ZRoyaltiesAddress = {
3211
- 7777777: "0x777777722D078c97c6ad07d9f36801e653E356Ae",
3212
- 11155111: "0x777777722D078c97c6ad07d9f36801e653E356Ae",
3213
- 999999999: "0x777777722D078c97c6ad07d9f36801e653E356Ae"
3214
+ 1: "0x77777771DF91C56c5468746E80DFA8b880f9719F",
3215
+ 10: "0x77777771DF91C56c5468746E80DFA8b880f9719F",
3216
+ 8453: "0x77777771DF91C56c5468746E80DFA8b880f9719F",
3217
+ 42161: "0x77777771DF91C56c5468746E80DFA8b880f9719F",
3218
+ 81457: "0x77777771DF91C56c5468746E80DFA8b880f9719F",
3219
+ 84532: "0x77777771DF91C56c5468746E80DFA8b880f9719F",
3220
+ 7777777: "0x77777771DF91C56c5468746E80DFA8b880f9719F",
3221
+ 11155111: "0x53a85FbD2955EF713AA489Ae0C48523E727a0c07",
3222
+ 999999999: "0x77777771DF91C56c5468746E80DFA8b880f9719F"
3214
3223
  };
3215
3224
  var erc20ZRoyaltiesConfig = {
3216
3225
  address: erc20ZRoyaltiesAddress,
@@ -3727,6 +3736,232 @@ var protocolRewardsConfig = {
3727
3736
  address: protocolRewardsAddress,
3728
3737
  abi: protocolRewardsABI
3729
3738
  };
3739
+ var secondarySwapABI = [
3740
+ { stateMutability: "payable", type: "receive" },
3741
+ {
3742
+ stateMutability: "view",
3743
+ type: "function",
3744
+ inputs: [],
3745
+ name: "WETH",
3746
+ outputs: [{ name: "", internalType: "contract IWETH", type: "address" }]
3747
+ },
3748
+ {
3749
+ stateMutability: "payable",
3750
+ type: "function",
3751
+ inputs: [
3752
+ { name: "erc20zAddress", internalType: "address", type: "address" },
3753
+ { name: "num1155ToBuy", internalType: "uint256", type: "uint256" },
3754
+ { name: "recipient", internalType: "address payable", type: "address" },
3755
+ {
3756
+ name: "excessRefundRecipient",
3757
+ internalType: "address payable",
3758
+ type: "address"
3759
+ },
3760
+ { name: "maxEthToSpend", internalType: "uint256", type: "uint256" },
3761
+ { name: "sqrtPriceLimitX96", internalType: "uint160", type: "uint160" }
3762
+ ],
3763
+ name: "buy1155",
3764
+ outputs: []
3765
+ },
3766
+ {
3767
+ stateMutability: "nonpayable",
3768
+ type: "function",
3769
+ inputs: [
3770
+ { name: "weth_", internalType: "contract IWETH", type: "address" },
3771
+ {
3772
+ name: "swapRouter_",
3773
+ internalType: "contract ISwapRouter",
3774
+ type: "address"
3775
+ },
3776
+ { name: "uniswapFee_", internalType: "uint24", type: "uint24" },
3777
+ {
3778
+ name: "zoraTimedSaleStrategy_",
3779
+ internalType: "contract IZoraTimedSaleStrategy",
3780
+ type: "address"
3781
+ }
3782
+ ],
3783
+ name: "initialize",
3784
+ outputs: []
3785
+ },
3786
+ {
3787
+ stateMutability: "pure",
3788
+ type: "function",
3789
+ inputs: [
3790
+ { name: "", internalType: "address", type: "address" },
3791
+ { name: "", internalType: "address", type: "address" },
3792
+ { name: "", internalType: "uint256[]", type: "uint256[]" },
3793
+ { name: "", internalType: "uint256[]", type: "uint256[]" },
3794
+ { name: "", internalType: "bytes", type: "bytes" }
3795
+ ],
3796
+ name: "onERC1155BatchReceived",
3797
+ outputs: [{ name: "", internalType: "bytes4", type: "bytes4" }]
3798
+ },
3799
+ {
3800
+ stateMutability: "nonpayable",
3801
+ type: "function",
3802
+ inputs: [
3803
+ { name: "", internalType: "address", type: "address" },
3804
+ { name: "", internalType: "address", type: "address" },
3805
+ { name: "id", internalType: "uint256", type: "uint256" },
3806
+ { name: "value", internalType: "uint256", type: "uint256" },
3807
+ { name: "data", internalType: "bytes", type: "bytes" }
3808
+ ],
3809
+ name: "onERC1155Received",
3810
+ outputs: [{ name: "", internalType: "bytes4", type: "bytes4" }]
3811
+ },
3812
+ {
3813
+ stateMutability: "nonpayable",
3814
+ type: "function",
3815
+ inputs: [
3816
+ { name: "erc20zAddress", internalType: "address", type: "address" },
3817
+ { name: "num1155ToSell", internalType: "uint256", type: "uint256" },
3818
+ { name: "recipient", internalType: "address payable", type: "address" },
3819
+ { name: "minEthToAcquire", internalType: "uint256", type: "uint256" },
3820
+ { name: "sqrtPriceLimitX96", internalType: "uint160", type: "uint160" }
3821
+ ],
3822
+ name: "sell1155",
3823
+ outputs: []
3824
+ },
3825
+ {
3826
+ stateMutability: "view",
3827
+ type: "function",
3828
+ inputs: [{ name: "interfaceId", internalType: "bytes4", type: "bytes4" }],
3829
+ name: "supportsInterface",
3830
+ outputs: [{ name: "", internalType: "bool", type: "bool" }]
3831
+ },
3832
+ {
3833
+ stateMutability: "view",
3834
+ type: "function",
3835
+ inputs: [],
3836
+ name: "swapRouter",
3837
+ outputs: [
3838
+ { name: "", internalType: "contract ISwapRouter", type: "address" }
3839
+ ]
3840
+ },
3841
+ {
3842
+ stateMutability: "view",
3843
+ type: "function",
3844
+ inputs: [],
3845
+ name: "uniswapFee",
3846
+ outputs: [{ name: "", internalType: "uint24", type: "uint24" }]
3847
+ },
3848
+ {
3849
+ stateMutability: "view",
3850
+ type: "function",
3851
+ inputs: [],
3852
+ name: "zoraTimedSaleStrategy",
3853
+ outputs: [
3854
+ {
3855
+ name: "",
3856
+ internalType: "contract IZoraTimedSaleStrategy",
3857
+ type: "address"
3858
+ }
3859
+ ]
3860
+ },
3861
+ {
3862
+ type: "event",
3863
+ anonymous: false,
3864
+ inputs: [
3865
+ {
3866
+ name: "msgSender",
3867
+ internalType: "address",
3868
+ type: "address",
3869
+ indexed: true
3870
+ },
3871
+ {
3872
+ name: "recipient",
3873
+ internalType: "address",
3874
+ type: "address",
3875
+ indexed: true
3876
+ },
3877
+ {
3878
+ name: "erc20zAddress",
3879
+ internalType: "address",
3880
+ type: "address",
3881
+ indexed: true
3882
+ },
3883
+ {
3884
+ name: "amountEthSold",
3885
+ internalType: "uint256",
3886
+ type: "uint256",
3887
+ indexed: false
3888
+ },
3889
+ {
3890
+ name: "num1155Purchased",
3891
+ internalType: "uint256",
3892
+ type: "uint256",
3893
+ indexed: false
3894
+ }
3895
+ ],
3896
+ name: "SecondaryBuy"
3897
+ },
3898
+ {
3899
+ type: "event",
3900
+ anonymous: false,
3901
+ inputs: [
3902
+ {
3903
+ name: "msgSender",
3904
+ internalType: "address",
3905
+ type: "address",
3906
+ indexed: true
3907
+ },
3908
+ {
3909
+ name: "recipient",
3910
+ internalType: "address",
3911
+ type: "address",
3912
+ indexed: true
3913
+ },
3914
+ {
3915
+ name: "erc20zAddress",
3916
+ internalType: "address",
3917
+ type: "address",
3918
+ indexed: true
3919
+ },
3920
+ {
3921
+ name: "amountEthPurchased",
3922
+ internalType: "uint256",
3923
+ type: "uint256",
3924
+ indexed: false
3925
+ },
3926
+ {
3927
+ name: "num1155Sold",
3928
+ internalType: "uint256",
3929
+ type: "uint256",
3930
+ indexed: false
3931
+ }
3932
+ ],
3933
+ name: "SecondarySell"
3934
+ },
3935
+ {
3936
+ type: "error",
3937
+ inputs: [{ name: "account", internalType: "address", type: "address" }],
3938
+ name: "AddressInsufficientBalance"
3939
+ },
3940
+ { type: "error", inputs: [], name: "ERC20ZEquivalentAmountNotConverted" },
3941
+ { type: "error", inputs: [], name: "ERC20ZMinimumAmountNotReceived" },
3942
+ { type: "error", inputs: [], name: "FailedInnerCall" },
3943
+ { type: "error", inputs: [], name: "InvalidRecipient" },
3944
+ { type: "error", inputs: [], name: "NoETHSent" },
3945
+ { type: "error", inputs: [], name: "NotSupported" },
3946
+ { type: "error", inputs: [], name: "OnlyWETH" },
3947
+ { type: "error", inputs: [], name: "ReentrancyGuardReentrantCall" },
3948
+ { type: "error", inputs: [], name: "SaleNotSet" }
3949
+ ];
3950
+ var secondarySwapAddress = {
3951
+ 1: "0xd6992aA2Aaa87802d0104e8c4b4DFaBE6F434fF7",
3952
+ 10: "0x695C9A141748D308d26Bd4f8E9F9A5df5F0623f8",
3953
+ 8453: "0x370B0B539DEe6d910b93F980AE3c47AC8460d522",
3954
+ 42161: "0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2",
3955
+ 81457: "0xE919b1F317C5298c1eA424B07a21635A08E1cC6C",
3956
+ 84532: "0xC04050e04708b33302E30E5A0fB1e8c38F4EBbB0",
3957
+ 7777777: "0x777777794a6e310F2A55da6f157b16ED28Fa5D91",
3958
+ 11155111: "0xb30e0a41A3EC4b6Eb5415c70E32dc234432E48C2",
3959
+ 999999999: "0x777777794a6e310F2A55da6f157b16ED28Fa5D91"
3960
+ };
3961
+ var secondarySwapConfig = {
3962
+ address: secondarySwapAddress,
3963
+ abi: secondarySwapABI
3964
+ };
3730
3965
  var sponsoredSparksSpenderABI = [
3731
3966
  {
3732
3967
  stateMutability: "nonpayable",
@@ -4850,27 +5085,152 @@ var zoraCreator1155FactoryImplABI = [
4850
5085
  ],
4851
5086
  name: "Upgraded"
4852
5087
  },
4853
- { type: "error", inputs: [], name: "ADDRESS_DELEGATECALL_TO_NON_CONTRACT" },
4854
- { type: "error", inputs: [], name: "ADDRESS_LOW_LEVEL_CALL_FAILED" },
4855
- { type: "error", inputs: [], name: "Constructor_ImplCannotBeZero" },
5088
+ { type: "error", inputs: [], name: "ADDRESS_DELEGATECALL_TO_NON_CONTRACT" },
5089
+ { type: "error", inputs: [], name: "ADDRESS_LOW_LEVEL_CALL_FAILED" },
5090
+ { type: "error", inputs: [], name: "Constructor_ImplCannotBeZero" },
5091
+ { type: "error", inputs: [], name: "ERC1967_NEW_IMPL_NOT_CONTRACT" },
5092
+ { type: "error", inputs: [], name: "ERC1967_NEW_IMPL_NOT_UUPS" },
5093
+ { type: "error", inputs: [], name: "ERC1967_UNSUPPORTED_PROXIABLEUUID" },
5094
+ {
5095
+ type: "error",
5096
+ inputs: [
5097
+ {
5098
+ name: "expectedContractAddress",
5099
+ internalType: "address",
5100
+ type: "address"
5101
+ },
5102
+ {
5103
+ name: "calculcatedContractAddress",
5104
+ internalType: "address",
5105
+ type: "address"
5106
+ }
5107
+ ],
5108
+ name: "ExpectedContractAddressDoesNotMatchCalculatedContractAddress"
5109
+ },
5110
+ {
5111
+ type: "error",
5112
+ inputs: [],
5113
+ name: "FUNCTION_MUST_BE_CALLED_THROUGH_ACTIVE_PROXY"
5114
+ },
5115
+ {
5116
+ type: "error",
5117
+ inputs: [],
5118
+ name: "FUNCTION_MUST_BE_CALLED_THROUGH_DELEGATECALL"
5119
+ },
5120
+ {
5121
+ type: "error",
5122
+ inputs: [],
5123
+ name: "INITIALIZABLE_CONTRACT_ALREADY_INITIALIZED"
5124
+ },
5125
+ {
5126
+ type: "error",
5127
+ inputs: [],
5128
+ name: "INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING"
5129
+ },
5130
+ { type: "error", inputs: [], name: "ONLY_OWNER" },
5131
+ { type: "error", inputs: [], name: "ONLY_PENDING_OWNER" },
5132
+ { type: "error", inputs: [], name: "OWNER_CANNOT_BE_ZERO_ADDRESS" },
5133
+ {
5134
+ type: "error",
5135
+ inputs: [],
5136
+ name: "UUPS_UPGRADEABLE_MUST_NOT_BE_CALLED_THROUGH_DELEGATECALL"
5137
+ },
5138
+ {
5139
+ type: "error",
5140
+ inputs: [
5141
+ { name: "expected", internalType: "string", type: "string" },
5142
+ { name: "actual", internalType: "string", type: "string" }
5143
+ ],
5144
+ name: "UpgradeToMismatchedContractName"
5145
+ },
5146
+ { type: "error", inputs: [], name: "ADDRESS_DELEGATECALL_TO_NON_CONTRACT" },
5147
+ { type: "error", inputs: [], name: "ADDRESS_LOW_LEVEL_CALL_FAILED" },
5148
+ {
5149
+ type: "error",
5150
+ inputs: [
5151
+ { name: "operator", internalType: "address", type: "address" },
5152
+ { name: "user", internalType: "address", type: "address" }
5153
+ ],
5154
+ name: "Burn_NotOwnerOrApproved"
5155
+ },
5156
+ { type: "error", inputs: [], name: "CREATOR_FUNDS_RECIPIENT_NOT_SET" },
5157
+ {
5158
+ type: "error",
5159
+ inputs: [{ name: "reason", internalType: "bytes", type: "bytes" }],
5160
+ name: "CallFailed"
5161
+ },
5162
+ { type: "error", inputs: [], name: "Call_TokenIdMismatch" },
5163
+ { type: "error", inputs: [], name: "CallerNotZoraCreator1155" },
5164
+ { type: "error", inputs: [], name: "CanOnlyReduceMaxSupply" },
5165
+ {
5166
+ type: "error",
5167
+ inputs: [
5168
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
5169
+ { name: "quantity", internalType: "uint256", type: "uint256" },
5170
+ { name: "totalMinted", internalType: "uint256", type: "uint256" },
5171
+ { name: "maxSupply", internalType: "uint256", type: "uint256" }
5172
+ ],
5173
+ name: "CannotMintMoreTokens"
5174
+ },
5175
+ { type: "error", inputs: [], name: "CannotReduceMaxSupplyBelowMinted" },
5176
+ {
5177
+ type: "error",
5178
+ inputs: [
5179
+ { name: "proposedAddress", internalType: "address", type: "address" }
5180
+ ],
5181
+ name: "Config_TransferHookNotSupported"
5182
+ },
5183
+ {
5184
+ type: "error",
5185
+ inputs: [],
5186
+ name: "ERC1155_ACCOUNTS_AND_IDS_LENGTH_MISMATCH"
5187
+ },
5188
+ {
5189
+ type: "error",
5190
+ inputs: [],
5191
+ name: "ERC1155_ADDRESS_ZERO_IS_NOT_A_VALID_OWNER"
5192
+ },
5193
+ { type: "error", inputs: [], name: "ERC1155_BURN_AMOUNT_EXCEEDS_BALANCE" },
5194
+ { type: "error", inputs: [], name: "ERC1155_BURN_FROM_ZERO_ADDRESS" },
5195
+ {
5196
+ type: "error",
5197
+ inputs: [],
5198
+ name: "ERC1155_CALLER_IS_NOT_TOKEN_OWNER_OR_APPROVED"
5199
+ },
5200
+ {
5201
+ type: "error",
5202
+ inputs: [],
5203
+ name: "ERC1155_ERC1155RECEIVER_REJECTED_TOKENS"
5204
+ },
5205
+ {
5206
+ type: "error",
5207
+ inputs: [],
5208
+ name: "ERC1155_IDS_AND_AMOUNTS_LENGTH_MISMATCH"
5209
+ },
5210
+ {
5211
+ type: "error",
5212
+ inputs: [],
5213
+ name: "ERC1155_INSUFFICIENT_BALANCE_FOR_TRANSFER"
5214
+ },
5215
+ { type: "error", inputs: [], name: "ERC1155_MINT_TO_ZERO_ADDRESS" },
5216
+ { type: "error", inputs: [], name: "ERC1155_MINT_TO_ZERO_ADDRESS" },
5217
+ { type: "error", inputs: [], name: "ERC1155_SETTING_APPROVAL_FOR_SELF" },
5218
+ {
5219
+ type: "error",
5220
+ inputs: [],
5221
+ name: "ERC1155_TRANSFER_TO_NON_ERC1155RECEIVER_IMPLEMENTER"
5222
+ },
5223
+ { type: "error", inputs: [], name: "ERC1155_TRANSFER_TO_ZERO_ADDRESS" },
4856
5224
  { type: "error", inputs: [], name: "ERC1967_NEW_IMPL_NOT_CONTRACT" },
4857
5225
  { type: "error", inputs: [], name: "ERC1967_NEW_IMPL_NOT_UUPS" },
4858
5226
  { type: "error", inputs: [], name: "ERC1967_UNSUPPORTED_PROXIABLEUUID" },
4859
5227
  {
4860
5228
  type: "error",
4861
5229
  inputs: [
4862
- {
4863
- name: "expectedContractAddress",
4864
- internalType: "address",
4865
- type: "address"
4866
- },
4867
- {
4868
- name: "calculcatedContractAddress",
4869
- internalType: "address",
4870
- type: "address"
4871
- }
5230
+ { name: "recipient", internalType: "address", type: "address" },
5231
+ { name: "amount", internalType: "uint256", type: "uint256" }
4872
5232
  ],
4873
- name: "ExpectedContractAddressDoesNotMatchCalculatedContractAddress"
5233
+ name: "ETHWithdrawFailed"
4874
5234
  },
4875
5235
  {
4876
5236
  type: "error",
@@ -4882,6 +5242,15 @@ var zoraCreator1155FactoryImplABI = [
4882
5242
  inputs: [],
4883
5243
  name: "FUNCTION_MUST_BE_CALLED_THROUGH_DELEGATECALL"
4884
5244
  },
5245
+ { type: "error", inputs: [], name: "FirstMinterAddressZero" },
5246
+ {
5247
+ type: "error",
5248
+ inputs: [
5249
+ { name: "amount", internalType: "uint256", type: "uint256" },
5250
+ { name: "contractValue", internalType: "uint256", type: "uint256" }
5251
+ ],
5252
+ name: "FundsWithdrawInsolvent"
5253
+ },
4885
5254
  {
4886
5255
  type: "error",
4887
5256
  inputs: [],
@@ -4892,9 +5261,77 @@ var zoraCreator1155FactoryImplABI = [
4892
5261
  inputs: [],
4893
5262
  name: "INITIALIZABLE_CONTRACT_IS_NOT_INITIALIZING"
4894
5263
  },
4895
- { type: "error", inputs: [], name: "ONLY_OWNER" },
4896
- { type: "error", inputs: [], name: "ONLY_PENDING_OWNER" },
4897
- { type: "error", inputs: [], name: "OWNER_CANNOT_BE_ZERO_ADDRESS" },
5264
+ { type: "error", inputs: [], name: "INVALID_ADDRESS_ZERO" },
5265
+ { type: "error", inputs: [], name: "INVALID_ETH_AMOUNT" },
5266
+ {
5267
+ type: "error",
5268
+ inputs: [
5269
+ { name: "mintTo", internalType: "address", type: "address" },
5270
+ { name: "merkleProof", internalType: "bytes32[]", type: "bytes32[]" },
5271
+ { name: "merkleRoot", internalType: "bytes32", type: "bytes32" }
5272
+ ],
5273
+ name: "InvalidMerkleProof"
5274
+ },
5275
+ { type: "error", inputs: [], name: "InvalidMintSchedule" },
5276
+ { type: "error", inputs: [], name: "InvalidMintSchedule" },
5277
+ { type: "error", inputs: [], name: "InvalidPremintVersion" },
5278
+ { type: "error", inputs: [], name: "InvalidSignature" },
5279
+ { type: "error", inputs: [], name: "InvalidSignatureVersion" },
5280
+ {
5281
+ type: "error",
5282
+ inputs: [{ name: "magicValue", internalType: "bytes4", type: "bytes4" }],
5283
+ name: "InvalidSigner"
5284
+ },
5285
+ { type: "error", inputs: [], name: "MintNotYetStarted" },
5286
+ { type: "error", inputs: [], name: "Mint_InsolventSaleTransfer" },
5287
+ { type: "error", inputs: [], name: "Mint_InvalidMintArrayLength" },
5288
+ { type: "error", inputs: [], name: "Mint_TokenIDMintNotAllowed" },
5289
+ { type: "error", inputs: [], name: "Mint_UnknownCommand" },
5290
+ { type: "error", inputs: [], name: "Mint_ValueTransferFail" },
5291
+ { type: "error", inputs: [], name: "MinterContractAlreadyExists" },
5292
+ { type: "error", inputs: [], name: "MinterContractDoesNotExist" },
5293
+ { type: "error", inputs: [], name: "NewOwnerNeedsToBeAdmin" },
5294
+ {
5295
+ type: "error",
5296
+ inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
5297
+ name: "NoRendererForToken"
5298
+ },
5299
+ { type: "error", inputs: [], name: "NonEthRedemption" },
5300
+ { type: "error", inputs: [], name: "ONLY_CREATE_REFERRAL" },
5301
+ { type: "error", inputs: [], name: "OnlyTransfersFromZoraMints" },
5302
+ { type: "error", inputs: [], name: "PremintDeleted" },
5303
+ {
5304
+ type: "error",
5305
+ inputs: [
5306
+ { name: "caller", internalType: "address", type: "address" },
5307
+ { name: "recipient", internalType: "address", type: "address" },
5308
+ { name: "amount", internalType: "uint256", type: "uint256" }
5309
+ ],
5310
+ name: "ProtocolRewardsWithdrawFailed"
5311
+ },
5312
+ {
5313
+ type: "error",
5314
+ inputs: [{ name: "renderer", internalType: "address", type: "address" }],
5315
+ name: "RendererNotValid"
5316
+ },
5317
+ { type: "error", inputs: [], name: "Renderer_NotValidRendererContract" },
5318
+ { type: "error", inputs: [], name: "SaleEnded" },
5319
+ { type: "error", inputs: [], name: "SaleHasNotStarted" },
5320
+ {
5321
+ type: "error",
5322
+ inputs: [
5323
+ { name: "targetContract", internalType: "address", type: "address" }
5324
+ ],
5325
+ name: "Sale_CannotCallNonSalesContract"
5326
+ },
5327
+ {
5328
+ type: "error",
5329
+ inputs: [
5330
+ { name: "expected", internalType: "uint256", type: "uint256" },
5331
+ { name: "actual", internalType: "uint256", type: "uint256" }
5332
+ ],
5333
+ name: "TokenIdMismatch"
5334
+ },
4898
5335
  {
4899
5336
  type: "error",
4900
5337
  inputs: [],
@@ -4903,10 +5340,86 @@ var zoraCreator1155FactoryImplABI = [
4903
5340
  {
4904
5341
  type: "error",
4905
5342
  inputs: [
4906
- { name: "expected", internalType: "string", type: "string" },
4907
- { name: "actual", internalType: "string", type: "string" }
5343
+ { name: "user", internalType: "address", type: "address" },
5344
+ { name: "limit", internalType: "uint256", type: "uint256" },
5345
+ { name: "requestedAmount", internalType: "uint256", type: "uint256" }
4908
5346
  ],
4909
- name: "UpgradeToMismatchedContractName"
5347
+ name: "UserExceedsMintLimit"
5348
+ },
5349
+ {
5350
+ type: "error",
5351
+ inputs: [
5352
+ { name: "user", internalType: "address", type: "address" },
5353
+ { name: "tokenId", internalType: "uint256", type: "uint256" },
5354
+ { name: "role", internalType: "uint256", type: "uint256" }
5355
+ ],
5356
+ name: "UserMissingRoleForToken"
5357
+ },
5358
+ { type: "error", inputs: [], name: "WrongValueSent" },
5359
+ {
5360
+ type: "error",
5361
+ inputs: [],
5362
+ name: "premintSignerContractFailedToRecoverSigner"
5363
+ },
5364
+ { type: "error", inputs: [], name: "premintSignerContractNotAContract" },
5365
+ {
5366
+ type: "error",
5367
+ inputs: [{ name: "target", internalType: "address", type: "address" }],
5368
+ name: "AddressEmptyCode"
5369
+ },
5370
+ {
5371
+ type: "error",
5372
+ inputs: [{ name: "account", internalType: "address", type: "address" }],
5373
+ name: "AddressInsufficientBalance"
5374
+ },
5375
+ { type: "error", inputs: [], name: "AddressZero" },
5376
+ { type: "error", inputs: [], name: "ERC1167FailedCreateClone" },
5377
+ {
5378
+ type: "error",
5379
+ inputs: [
5380
+ { name: "implementation", internalType: "address", type: "address" }
5381
+ ],
5382
+ name: "ERC1967InvalidImplementation"
5383
+ },
5384
+ { type: "error", inputs: [], name: "ERC1967NonPayable" },
5385
+ { type: "error", inputs: [], name: "EndTimeCannotBeInThePast" },
5386
+ { type: "error", inputs: [], name: "FailedInnerCall" },
5387
+ { type: "error", inputs: [], name: "InsufficientFunds" },
5388
+ { type: "error", inputs: [], name: "InvalidInitialization" },
5389
+ { type: "error", inputs: [], name: "MarketAlreadyLaunched" },
5390
+ { type: "error", inputs: [], name: "NeedsToBeAtLeastOneSaleToStartMarket" },
5391
+ { type: "error", inputs: [], name: "NotInitializing" },
5392
+ { type: "error", inputs: [], name: "OnlyZoraRewardRecipient" },
5393
+ {
5394
+ type: "error",
5395
+ inputs: [{ name: "owner", internalType: "address", type: "address" }],
5396
+ name: "OwnableInvalidOwner"
5397
+ },
5398
+ {
5399
+ type: "error",
5400
+ inputs: [{ name: "account", internalType: "address", type: "address" }],
5401
+ name: "OwnableUnauthorizedAccount"
5402
+ },
5403
+ { type: "error", inputs: [], name: "ReentrancyGuardReentrantCall" },
5404
+ { type: "error", inputs: [], name: "RequestMintInvalidUseMint" },
5405
+ { type: "error", inputs: [], name: "ResetSaleNotAvailable" },
5406
+ { type: "error", inputs: [], name: "SaleAlreadySet" },
5407
+ { type: "error", inputs: [], name: "SaleEnded" },
5408
+ { type: "error", inputs: [], name: "SaleHasNotStarted" },
5409
+ { type: "error", inputs: [], name: "SaleInProgress" },
5410
+ { type: "error", inputs: [], name: "SaleNotSet" },
5411
+ { type: "error", inputs: [], name: "StartTimeCannotBeAfterEndTime" },
5412
+ { type: "error", inputs: [], name: "UUPSUnauthorizedCallContext" },
5413
+ {
5414
+ type: "error",
5415
+ inputs: [{ name: "slot", internalType: "bytes32", type: "bytes32" }],
5416
+ name: "UUPSUnsupportedProxiableUUID"
5417
+ },
5418
+ { type: "error", inputs: [], name: "WrongValueSent" },
5419
+ {
5420
+ type: "error",
5421
+ inputs: [],
5422
+ name: "ZoraCreator1155ContractNeedsToSupportReduceSupply"
4910
5423
  }
4911
5424
  ];
4912
5425
  var zoraCreator1155FactoryImplAddress = {
@@ -6264,7 +6777,66 @@ var zoraCreator1155ImplABI = [
6264
6777
  inputs: [],
6265
6778
  name: "premintSignerContractFailedToRecoverSigner"
6266
6779
  },
6267
- { type: "error", inputs: [], name: "premintSignerContractNotAContract" }
6780
+ { type: "error", inputs: [], name: "premintSignerContractNotAContract" },
6781
+ {
6782
+ type: "error",
6783
+ inputs: [{ name: "target", internalType: "address", type: "address" }],
6784
+ name: "AddressEmptyCode"
6785
+ },
6786
+ {
6787
+ type: "error",
6788
+ inputs: [{ name: "account", internalType: "address", type: "address" }],
6789
+ name: "AddressInsufficientBalance"
6790
+ },
6791
+ { type: "error", inputs: [], name: "AddressZero" },
6792
+ { type: "error", inputs: [], name: "ERC1167FailedCreateClone" },
6793
+ {
6794
+ type: "error",
6795
+ inputs: [
6796
+ { name: "implementation", internalType: "address", type: "address" }
6797
+ ],
6798
+ name: "ERC1967InvalidImplementation"
6799
+ },
6800
+ { type: "error", inputs: [], name: "ERC1967NonPayable" },
6801
+ { type: "error", inputs: [], name: "EndTimeCannotBeInThePast" },
6802
+ { type: "error", inputs: [], name: "FailedInnerCall" },
6803
+ { type: "error", inputs: [], name: "InsufficientFunds" },
6804
+ { type: "error", inputs: [], name: "InvalidInitialization" },
6805
+ { type: "error", inputs: [], name: "MarketAlreadyLaunched" },
6806
+ { type: "error", inputs: [], name: "NeedsToBeAtLeastOneSaleToStartMarket" },
6807
+ { type: "error", inputs: [], name: "NotInitializing" },
6808
+ { type: "error", inputs: [], name: "OnlyZoraRewardRecipient" },
6809
+ {
6810
+ type: "error",
6811
+ inputs: [{ name: "owner", internalType: "address", type: "address" }],
6812
+ name: "OwnableInvalidOwner"
6813
+ },
6814
+ {
6815
+ type: "error",
6816
+ inputs: [{ name: "account", internalType: "address", type: "address" }],
6817
+ name: "OwnableUnauthorizedAccount"
6818
+ },
6819
+ { type: "error", inputs: [], name: "ReentrancyGuardReentrantCall" },
6820
+ { type: "error", inputs: [], name: "RequestMintInvalidUseMint" },
6821
+ { type: "error", inputs: [], name: "ResetSaleNotAvailable" },
6822
+ { type: "error", inputs: [], name: "SaleAlreadySet" },
6823
+ { type: "error", inputs: [], name: "SaleEnded" },
6824
+ { type: "error", inputs: [], name: "SaleHasNotStarted" },
6825
+ { type: "error", inputs: [], name: "SaleInProgress" },
6826
+ { type: "error", inputs: [], name: "SaleNotSet" },
6827
+ { type: "error", inputs: [], name: "StartTimeCannotBeAfterEndTime" },
6828
+ { type: "error", inputs: [], name: "UUPSUnauthorizedCallContext" },
6829
+ {
6830
+ type: "error",
6831
+ inputs: [{ name: "slot", internalType: "bytes32", type: "bytes32" }],
6832
+ name: "UUPSUnsupportedProxiableUUID"
6833
+ },
6834
+ { type: "error", inputs: [], name: "WrongValueSent" },
6835
+ {
6836
+ type: "error",
6837
+ inputs: [],
6838
+ name: "ZoraCreator1155ContractNeedsToSupportReduceSupply"
6839
+ }
6268
6840
  ];
6269
6841
  var zoraCreator1155PremintExecutorImplABI = [
6270
6842
  {
@@ -11038,6 +11610,17 @@ var zoraTimedSaleStrategyABI = [
11038
11610
  name: "transferOwnership",
11039
11611
  outputs: []
11040
11612
  },
11613
+ {
11614
+ stateMutability: "nonpayable",
11615
+ type: "function",
11616
+ inputs: [
11617
+ { name: "amount0Delta", internalType: "int256", type: "int256" },
11618
+ { name: "amount1Delta", internalType: "int256", type: "int256" },
11619
+ { name: "", internalType: "bytes", type: "bytes" }
11620
+ ],
11621
+ name: "uniswapV3SwapCallback",
11622
+ outputs: []
11623
+ },
11041
11624
  {
11042
11625
  stateMutability: "nonpayable",
11043
11626
  type: "function",
@@ -11399,8 +11982,14 @@ var zoraTimedSaleStrategyABI = [
11399
11982
  }
11400
11983
  ];
11401
11984
  var zoraTimedSaleStrategyAddress = {
11985
+ 1: "0x777777722D078c97c6ad07d9f36801e653E356Ae",
11986
+ 10: "0x777777722D078c97c6ad07d9f36801e653E356Ae",
11987
+ 8453: "0x777777722D078c97c6ad07d9f36801e653E356Ae",
11988
+ 42161: "0x777777722D078c97c6ad07d9f36801e653E356Ae",
11989
+ 81457: "0x777777722D078c97c6ad07d9f36801e653E356Ae",
11990
+ 84532: "0x777777722D078c97c6ad07d9f36801e653E356Ae",
11402
11991
  7777777: "0x777777722D078c97c6ad07d9f36801e653E356Ae",
11403
- 11155111: "0x777777722D078c97c6ad07d9f36801e653E356Ae",
11992
+ 11155111: "0x8237F421357F87a23ed0CFf3a5586172F210A21B",
11404
11993
  999999999: "0x777777722D078c97c6ad07d9f36801e653E356Ae"
11405
11994
  };
11406
11995
  var zoraTimedSaleStrategyConfig = {
@@ -11782,24 +12371,24 @@ var chainConfigs = {
11782
12371
  };
11783
12372
  var addresses = {
11784
12373
  1: {
11785
- CONTRACT_1155_IMPL: "0x7d42Ee84D377D37cfc9EbF10C3aEe56da326642d",
11786
- CONTRACT_1155_IMPL_VERSION: "2.10.1",
12374
+ CONTRACT_1155_IMPL: "0x24dFa406bC27Bc717419c35330D0332E444CF07C",
12375
+ CONTRACT_1155_IMPL_VERSION: "2.12.3",
11787
12376
  ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
11788
- FACTORY_IMPL: "0x5c045b3DA075Db370F9951e2DD9D2521e4730b80",
12377
+ FACTORY_IMPL: "0xA0CFBEA2fe941EaE373aEB3359b0171f3F194c35",
11789
12378
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
11790
12379
  FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
11791
12380
  MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
11792
- PREMINTER_IMPL: "0xD8f6cf234eE4B689099677Bd94FbA0b1E005181d",
12381
+ PREMINTER_IMPL: "0xDfB3D291bA493e7a3c835F0EdBa0B1B52979609A",
11793
12382
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
11794
12383
  REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
11795
12384
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
11796
- timestamp: 1718152914
12385
+ timestamp: 1722801891
11797
12386
  },
11798
12387
  10: {
11799
- CONTRACT_1155_IMPL: "0xd43f38e67beb199fd6594cCe4Bed31510414e6ab",
11800
- CONTRACT_1155_IMPL_VERSION: "2.10.1",
12388
+ CONTRACT_1155_IMPL: "0x41a80F8aE055b1E38C74bc406E4310Be33cFA3F4",
12389
+ CONTRACT_1155_IMPL_VERSION: "2.12.3",
11801
12390
  ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
11802
- FACTORY_IMPL: "0x6A864E792029843A47f584293E2cAB8a86B9c533",
12391
+ FACTORY_IMPL: "0x169d9147dFc9409AfA4E558dF2C9ABeebc020182",
11803
12392
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
11804
12393
  FIXED_PRICE_SALE_STRATEGY: "0x3678862f04290E565cCA2EF163BAeb92Bb76790C",
11805
12394
  MERKLE_MINT_SALE_STRATEGY: "0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8",
@@ -11807,7 +12396,7 @@ var addresses = {
11807
12396
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
11808
12397
  REDEEM_MINTER_FACTORY: "0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2",
11809
12398
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
11810
- timestamp: 1717194758
12399
+ timestamp: 1722525241
11811
12400
  },
11812
12401
  999: {
11813
12402
  CONTRACT_1155_IMPL: "0x2022AdEF470DA3543a19fac8c9be80618112704D",
@@ -11823,24 +12412,24 @@ var addresses = {
11823
12412
  timestamp: 1704399834
11824
12413
  },
11825
12414
  8453: {
11826
- CONTRACT_1155_IMPL: "0x1Eb7Bf3a08784D7cB08CC2AE1448012C0c02bDa2",
11827
- CONTRACT_1155_IMPL_VERSION: "2.10.1",
12415
+ CONTRACT_1155_IMPL: "0x02be886A3b2802177181f4734380CB1f4BaC4Bfb",
12416
+ CONTRACT_1155_IMPL_VERSION: "2.12.3",
11828
12417
  ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
11829
- FACTORY_IMPL: "0x961b527B5E298569dbD7B1d90630cC515Eb17A4A",
12418
+ FACTORY_IMPL: "0xd43f38e67beb199fd6594cCe4Bed31510414e6ab",
11830
12419
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
11831
12420
  FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
11832
12421
  MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
11833
- PREMINTER_IMPL: "0xD8f6cf234eE4B689099677Bd94FbA0b1E005181d",
12422
+ PREMINTER_IMPL: "0xDfB3D291bA493e7a3c835F0EdBa0B1B52979609A",
11834
12423
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
11835
12424
  REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
11836
12425
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
11837
- timestamp: 1717194106
12426
+ timestamp: 1722490834
11838
12427
  },
11839
12428
  42161: {
11840
- CONTRACT_1155_IMPL: "0xf4bf58F869c42d99d7F7AC3868B606239a634526",
11841
- CONTRACT_1155_IMPL_VERSION: "2.10.1",
12429
+ CONTRACT_1155_IMPL: "0x3678862f04290E565cCA2EF163BAeb92Bb76790C",
12430
+ CONTRACT_1155_IMPL_VERSION: "2.12.3",
11842
12431
  ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
11843
- FACTORY_IMPL: "0x584BDE6B1442Aa6C572368D206Fe656c01FF1f1F",
12432
+ FACTORY_IMPL: "0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8",
11844
12433
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
11845
12434
  FIXED_PRICE_SALE_STRATEGY: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
11846
12435
  MERKLE_MINT_SALE_STRATEGY: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
@@ -11848,13 +12437,13 @@ var addresses = {
11848
12437
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
11849
12438
  REDEEM_MINTER_FACTORY: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
11850
12439
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
11851
- timestamp: 1717194346
12440
+ timestamp: 1722524613
11852
12441
  },
11853
12442
  81457: {
11854
- CONTRACT_1155_IMPL: "0x370A413874Bde3F40028A3E9BBFC4cA19666F94D",
11855
- CONTRACT_1155_IMPL_VERSION: "2.10.1",
12443
+ CONTRACT_1155_IMPL: "0x3Ed969bf88166B85608C13b633242611F6220a14",
12444
+ CONTRACT_1155_IMPL_VERSION: "2.12.3",
11856
12445
  ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
11857
- FACTORY_IMPL: "0xf4bf58F869c42d99d7F7AC3868B606239a634526",
12446
+ FACTORY_IMPL: "0xA75f980Fdf9F02718423FDFDFf1fccc74bdDBa95",
11858
12447
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
11859
12448
  FIXED_PRICE_SALE_STRATEGY: "0x3EB144aee170BF62FdA1536e38aF51f08e34A5D0",
11860
12449
  MERKLE_MINT_SALE_STRATEGY: "0xB9C997FcC46a27331CC986cc2416ee99C1d506c3",
@@ -11862,13 +12451,13 @@ var addresses = {
11862
12451
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
11863
12452
  REDEEM_MINTER_FACTORY: "0x7A0dE1B1f5420Df5D946878fBe2cF109011BE614",
11864
12453
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
11865
- timestamp: 1717194549
12454
+ timestamp: 1722612949
11866
12455
  },
11867
12456
  84532: {
11868
- CONTRACT_1155_IMPL: "0x0ef82DaB14798E63F1B99479Ba689e3f6A6fEb6C",
11869
- CONTRACT_1155_IMPL_VERSION: "2.10.1",
12457
+ CONTRACT_1155_IMPL: "0xA02FC0fc9b0b3E23ac26eB0f2D392fD5cdA58514",
12458
+ CONTRACT_1155_IMPL_VERSION: "2.12.3",
11870
12459
  ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
11871
- FACTORY_IMPL: "0x97eb05B8db496B12244BCcf17CF377d00a99b67a",
12460
+ FACTORY_IMPL: "0x78b524931e9d847c40BcBf225c25e154a7B05fDA",
11872
12461
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
11873
12462
  FIXED_PRICE_SALE_STRATEGY: "0xd34872BE0cdb6b09d45FCa067B07f04a1A9aE1aE",
11874
12463
  MERKLE_MINT_SALE_STRATEGY: "0x3E8524770adD176bE381a0529E09f1c6c3502A5a",
@@ -11876,13 +12465,13 @@ var addresses = {
11876
12465
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
11877
12466
  REDEEM_MINTER_FACTORY: "0x805E0a08dE70f85C01F7848370d5e3fc08aAd0ea",
11878
12467
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
11879
- timestamp: 1717189193
12468
+ timestamp: 1722492345
11880
12469
  },
11881
12470
  421614: {
11882
- CONTRACT_1155_IMPL: "0x55B53DBE22859d538E3b44DD06C9FAE292409E3c",
11883
- CONTRACT_1155_IMPL_VERSION: "2.10.1",
12471
+ CONTRACT_1155_IMPL: "0xC7598f8eAA1455f5b2B3f206A9af55B2BA248e3E",
12472
+ CONTRACT_1155_IMPL_VERSION: "2.12.3",
11884
12473
  ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
11885
- FACTORY_IMPL: "0xAF5A4F6F6640734d7D000321Bb27De40D4Ae91f6",
12474
+ FACTORY_IMPL: "0xCf0B4Acab081169D12b729c3Bd1c6E7bbAB820Da",
11886
12475
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
11887
12476
  FIXED_PRICE_SALE_STRATEGY: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
11888
12477
  MERKLE_MINT_SALE_STRATEGY: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
@@ -11890,13 +12479,13 @@ var addresses = {
11890
12479
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
11891
12480
  REDEEM_MINTER_FACTORY: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
11892
12481
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
11893
- timestamp: 1717195052
12482
+ timestamp: 1722821095
11894
12483
  },
11895
12484
  7777777: {
11896
- CONTRACT_1155_IMPL: "0x9074Ae399235d26B56e3aF1331b033366E4FE072",
11897
- CONTRACT_1155_IMPL_VERSION: "2.12.2",
12485
+ CONTRACT_1155_IMPL: "0xD860dA58fDcC98ceDF6aA16d7F38b1bfdC8Ca2d9",
12486
+ CONTRACT_1155_IMPL_VERSION: "2.12.3",
11898
12487
  ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
11899
- FACTORY_IMPL: "0xD9bC36841C259f07924e73cF08d5a2c92d53639B",
12488
+ FACTORY_IMPL: "0x4578FbC17870Afd31F6AFBA7Ad399C1453c7eae7",
11900
12489
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
11901
12490
  FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
11902
12491
  MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
@@ -11904,13 +12493,13 @@ var addresses = {
11904
12493
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
11905
12494
  REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
11906
12495
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
11907
- timestamp: 1721935998
12496
+ timestamp: 1722524842
11908
12497
  },
11909
12498
  11155111: {
11910
- CONTRACT_1155_IMPL: "0x961b527B5E298569dbD7B1d90630cC515Eb17A4A",
11911
- CONTRACT_1155_IMPL_VERSION: "2.12.2",
12499
+ CONTRACT_1155_IMPL: "0xE578Df59a7F59b652772a8565Af276460c4FF44d",
12500
+ CONTRACT_1155_IMPL_VERSION: "2.12.3",
11912
12501
  ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
11913
- FACTORY_IMPL: "0x5Eedeb6e035e68f89B29689625c4720EA7842542",
12502
+ FACTORY_IMPL: "0x3A98313fB00918a81d98f9986aED089365428293",
11914
12503
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
11915
12504
  FIXED_PRICE_SALE_STRATEGY: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
11916
12505
  MERKLE_MINT_SALE_STRATEGY: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
@@ -11918,12 +12507,13 @@ var addresses = {
11918
12507
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
11919
12508
  REDEEM_MINTER_FACTORY: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
11920
12509
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
11921
- timestamp: 1721935626
12510
+ timestamp: 1722523545
11922
12511
  },
11923
12512
  168587773: {
11924
- CONTRACT_1155_IMPL: "0x437A762fc2a8f898Aa7a2575Be21c41753DC4797",
11925
- CONTRACT_1155_IMPL_VERSION: "2.7.1",
11926
- FACTORY_IMPL: "0xF82286760a953D2Bad7D6F2F0da458Ac20f955D3",
12513
+ CONTRACT_1155_IMPL: "0x192D663C3D6813a24a24582A76B8d872c4F6F7f9",
12514
+ CONTRACT_1155_IMPL_VERSION: "2.12.3",
12515
+ ERC20_MINTER: "0x0000000000000000000000000000000000000000",
12516
+ FACTORY_IMPL: "0x46E772210f01647FA573b915bE287Ff9b65AD4B0",
11927
12517
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
11928
12518
  FIXED_PRICE_SALE_STRATEGY: "0x3EB144aee170BF62FdA1536e38aF51f08e34A5D0",
11929
12519
  MERKLE_MINT_SALE_STRATEGY: "0xB9C997FcC46a27331CC986cc2416ee99C1d506c3",
@@ -11931,13 +12521,13 @@ var addresses = {
11931
12521
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
11932
12522
  REDEEM_MINTER_FACTORY: "0x7A0dE1B1f5420Df5D946878fBe2cF109011BE614",
11933
12523
  UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
11934
- timestamp: 1709234007
12524
+ timestamp: 1722525339
11935
12525
  },
11936
12526
  999999999: {
11937
- CONTRACT_1155_IMPL: "0xC542CAdBF84F195226804B62BbE941CF244BF490",
11938
- CONTRACT_1155_IMPL_VERSION: "2.12.2",
12527
+ CONTRACT_1155_IMPL: "0xC04050e04708b33302E30E5A0fB1e8c38F4EBbB0",
12528
+ CONTRACT_1155_IMPL_VERSION: "2.12.3",
11939
12529
  ERC20_MINTER: "0x8Ec7f068A77fa5FC1925110f82381374BA054Ff2",
11940
- FACTORY_IMPL: "0xF5b2eb84B4BFfcAe4ff1592A6838a2d0fFb7AA68",
12530
+ FACTORY_IMPL: "0xe2606ac30752009ecec6FEaf5C2B4A6523256E7E",
11941
12531
  FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
11942
12532
  FIXED_PRICE_SALE_STRATEGY: "0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A",
11943
12533
  MERKLE_MINT_SALE_STRATEGY: "0x5e5fD4b758076BAD940db0284b711A67E8a3B88c",
@@ -11945,7 +12535,7 @@ var addresses = {
11945
12535
  PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
11946
12536
  REDEEM_MINTER_FACTORY: "0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6",
11947
12537
  UPGRADE_GATE: "0x0000000000000000000000000000000000000000",
11948
- timestamp: 1721933261
12538
+ timestamp: 1722524992
11949
12539
  }
11950
12540
  };
11951
12541
 
@@ -11958,53 +12548,70 @@ __export(sparks_exports, {
11958
12548
  var chainConfigs2 = {
11959
12549
  1: {
11960
12550
  NONFUNGIBLE_POSITION_MANAGER: "0xC36442b4a4522E871399CD717aBDD847Ab11FE88",
12551
+ UNISWAP_SWAP_ROUTER: "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45",
11961
12552
  PROXY_ADMIN: "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
11962
- ZORA_RECIPIENT: "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0"
12553
+ ZORA_RECIPIENT: "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0",
12554
+ WETH: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
11963
12555
  },
11964
12556
  10: {
11965
12557
  NONFUNGIBLE_POSITION_MANAGER: "0xC36442b4a4522E871399CD717aBDD847Ab11FE88",
12558
+ UNISWAP_SWAP_ROUTER: "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45",
11966
12559
  PROXY_ADMIN: "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
11967
- ZORA_RECIPIENT: "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c"
12560
+ ZORA_RECIPIENT: "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c",
12561
+ WETH: "0x4200000000000000000000000000000000000006"
11968
12562
  },
11969
12563
  8453: {
11970
12564
  NONFUNGIBLE_POSITION_MANAGER: "0x03a520b32C04BF3bEEf7BEb72E919cf822Ed34f1",
12565
+ UNISWAP_SWAP_ROUTER: "0x2626664c2603336E57B271c5C0b26F421741e481",
11971
12566
  PROXY_ADMIN: "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
11972
- ZORA_RECIPIENT: "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6"
12567
+ ZORA_RECIPIENT: "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6",
12568
+ WETH: "0x4200000000000000000000000000000000000006"
11973
12569
  },
11974
12570
  42161: {
11975
12571
  NONFUNGIBLE_POSITION_MANAGER: "0xC36442b4a4522E871399CD717aBDD847Ab11FE88",
12572
+ UNISWAP_SWAP_ROUTER: "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45",
11976
12573
  PROXY_ADMIN: "0xF7DafC329C93D84267c0E7B146C0bD68807f6A03",
11977
- ZORA_RECIPIENT: "0x10Fb02A68C3EA8bD439A6f515dcE07CC049f5c94"
12574
+ ZORA_RECIPIENT: "0x10Fb02A68C3EA8bD439A6f515dcE07CC049f5c94",
12575
+ WETH: "0x82af49447d8a07e3bd95bd0d56f35241523fbab1"
11978
12576
  },
11979
12577
  81457: {
11980
- NONFUNGIBLE_POSITION_MANAGER: "0x27F971cb582BF9E50F397e4d29a5C7A34f11faA2",
12578
+ NONFUNGIBLE_POSITION_MANAGER: "0xB218e4f7cF0533d4696fDfC419A0023D33345F28",
12579
+ UNISWAP_SWAP_ROUTER: "0x549FEB8c9bd4c12Ad2AB27022dA12492aC452B66",
11981
12580
  PROXY_ADMIN: "0x5b297B1b87f8De28C9fA7AFe183Db9F9e6295523",
11982
- ZORA_RECIPIENT: "0x72E6394056f9152D3a41e5A25De383c191D16134"
12581
+ ZORA_RECIPIENT: "0x72E6394056f9152D3a41e5A25De383c191D16134",
12582
+ WETH: "0x4300000000000000000000000000000000000004"
11983
12583
  },
11984
12584
  84532: {
11985
12585
  NONFUNGIBLE_POSITION_MANAGER: "0x27F971cb582BF9E50F397e4d29a5C7A34f11faA2",
12586
+ UNISWAP_SWAP_ROUTER: "0x94cC0AaC535CCDB3C01d6787D6413C739ae12bc4",
11986
12587
  PROXY_ADMIN: "0x5F14C23983c9e0840Dc60dA880349622f0785420",
11987
- ZORA_RECIPIENT: "0x5F14C23983c9e0840Dc60dA880349622f0785420"
12588
+ ZORA_RECIPIENT: "0x5F14C23983c9e0840Dc60dA880349622f0785420",
12589
+ WETH: "0x4200000000000000000000000000000000000006"
11988
12590
  },
11989
12591
  421614: {
11990
12592
  NONFUNGIBLE_POSITION_MANAGER: "0x6b2937Bde17889EDCf8fbD8dE31C3C2a70Bc4d65",
12593
+ UNISWAP_SWAP_ROUTER: "0x101F443B4d1b059569D643917553c771E1b9663E",
11991
12594
  PROXY_ADMIN: "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
11992
- ZORA_RECIPIENT: "0x256537b56007b32BabEB44E868EC8AA5cBF03D30"
12595
+ ZORA_RECIPIENT: "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
12596
+ WETH: "0xc556bae1e86b2ae9c22ea5e036b07e55e7596074"
11993
12597
  },
11994
12598
  7777777: {
11995
12599
  NONFUNGIBLE_POSITION_MANAGER: "0xbC91e8DfA3fF18De43853372A3d7dfe585137D78",
12600
+ UNISWAP_SWAP_ROUTER: "0x7De04c96BE5159c3b5CeffC82aa176dc81281557",
11996
12601
  PROXY_ADMIN: "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
11997
12602
  ZORA_RECIPIENT: "0xEcfc2ee50409E459c554a2b0376F882Ce916D853",
11998
12603
  WETH: "0x4200000000000000000000000000000000000006"
11999
12604
  },
12000
12605
  11155111: {
12001
12606
  NONFUNGIBLE_POSITION_MANAGER: "0x1238536071E1c677A632429e3655c799b22cDA52",
12607
+ UNISWAP_SWAP_ROUTER: "0x3bFA4769FB09eefC5a80d6E87c3B9C650f7Ae48E",
12002
12608
  PROXY_ADMIN: "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
12003
12609
  ZORA_RECIPIENT: "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
12004
12610
  WETH: "0x7b79995e5f793A07Bc00c21412e50Ecae098E7f9"
12005
12611
  },
12006
12612
  999999999: {
12007
12613
  NONFUNGIBLE_POSITION_MANAGER: "0xB8458EaAe43292e3c1F7994EFd016bd653d23c20",
12614
+ UNISWAP_SWAP_ROUTER: "0x6B36d761981d82B1e07cF3c4daF4cB4615c4850a",
12008
12615
  PROXY_ADMIN: "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
12009
12616
  ZORA_RECIPIENT: "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
12010
12617
  WETH: "0x4200000000000000000000000000000000000006"
@@ -12048,6 +12655,9 @@ var addresses2 = {
12048
12655
  protocolRewardsABI,
12049
12656
  protocolRewardsAddress,
12050
12657
  protocolRewardsConfig,
12658
+ secondarySwapABI,
12659
+ secondarySwapAddress,
12660
+ secondarySwapConfig,
12051
12661
  sparks,
12052
12662
  sponsoredSparksBatchTransferTypedDataType,
12053
12663
  sponsoredSparksBatchTypedDataDefinition,