@zoralabs/protocol-deployments 0.1.2 → 0.1.3-MINT.1
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/.turbo/turbo-build.log +11 -9
- package/CHANGELOG.md +19 -0
- package/dist/addresses.d.ts +164 -0
- package/dist/addresses.d.ts.map +1 -0
- package/dist/generated/mints.d.ts +45 -0
- package/dist/generated/mints.d.ts.map +1 -0
- package/dist/generated/wagmi.d.ts +2705 -96
- package/dist/generated/wagmi.d.ts.map +1 -1
- package/dist/index.cjs +1084 -130
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1079 -129
- package/dist/index.js.map +1 -1
- package/json/mints.json +46 -0
- package/package.json +5 -3
- package/src/addresses.ts +163 -0
- package/src/generated/mints.ts +44 -0
- package/src/generated/wagmi.ts +945 -34
- package/src/index.ts +1 -0
- package/wagmi.config.ts +34 -6
package/dist/index.js
CHANGED
|
@@ -502,7 +502,8 @@ var zoraCreator1155ImplABI = [
|
|
|
502
502
|
inputs: [
|
|
503
503
|
{ name: "_mintFeeRecipient", internalType: "address", type: "address" },
|
|
504
504
|
{ name: "_upgradeGate", internalType: "address", type: "address" },
|
|
505
|
-
{ name: "_protocolRewards", internalType: "address", type: "address" }
|
|
505
|
+
{ name: "_protocolRewards", internalType: "address", type: "address" },
|
|
506
|
+
{ name: "_mints", internalType: "address", type: "address" }
|
|
506
507
|
]
|
|
507
508
|
},
|
|
508
509
|
{ stateMutability: "payable", type: "receive" },
|
|
@@ -651,12 +652,12 @@ var zoraCreator1155ImplABI = [
|
|
|
651
652
|
{
|
|
652
653
|
stateMutability: "pure",
|
|
653
654
|
type: "function",
|
|
654
|
-
inputs: [{ name: "
|
|
655
|
+
inputs: [{ name: "totalReward", internalType: "uint256", type: "uint256" }],
|
|
655
656
|
name: "computeFreeMintRewards",
|
|
656
657
|
outputs: [
|
|
657
658
|
{
|
|
658
659
|
name: "",
|
|
659
|
-
internalType: "struct RewardsSettings",
|
|
660
|
+
internalType: "struct IRewardSplits.RewardsSettings",
|
|
660
661
|
type: "tuple",
|
|
661
662
|
components: [
|
|
662
663
|
{ name: "creatorReward", internalType: "uint256", type: "uint256" },
|
|
@@ -683,12 +684,12 @@ var zoraCreator1155ImplABI = [
|
|
|
683
684
|
{
|
|
684
685
|
stateMutability: "pure",
|
|
685
686
|
type: "function",
|
|
686
|
-
inputs: [{ name: "
|
|
687
|
+
inputs: [{ name: "totalReward", internalType: "uint256", type: "uint256" }],
|
|
687
688
|
name: "computePaidMintRewards",
|
|
688
689
|
outputs: [
|
|
689
690
|
{
|
|
690
691
|
name: "",
|
|
691
|
-
internalType: "struct RewardsSettings",
|
|
692
|
+
internalType: "struct IRewardSplits.RewardsSettings",
|
|
692
693
|
type: "tuple",
|
|
693
694
|
components: [
|
|
694
695
|
{ name: "creatorReward", internalType: "uint256", type: "uint256" },
|
|
@@ -715,7 +716,20 @@ var zoraCreator1155ImplABI = [
|
|
|
715
716
|
{
|
|
716
717
|
stateMutability: "pure",
|
|
717
718
|
type: "function",
|
|
718
|
-
inputs: [
|
|
719
|
+
inputs: [
|
|
720
|
+
{ name: "totalReward", internalType: "uint256", type: "uint256" },
|
|
721
|
+
{ name: "rewardPct", internalType: "uint256", type: "uint256" }
|
|
722
|
+
],
|
|
723
|
+
name: "computeRewardsPct",
|
|
724
|
+
outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
stateMutability: "pure",
|
|
728
|
+
type: "function",
|
|
729
|
+
inputs: [
|
|
730
|
+
{ name: "mintPrice", internalType: "uint256", type: "uint256" },
|
|
731
|
+
{ name: "quantity", internalType: "uint256", type: "uint256" }
|
|
732
|
+
],
|
|
719
733
|
name: "computeTotalReward",
|
|
720
734
|
outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
|
|
721
735
|
},
|
|
@@ -953,12 +967,32 @@ var zoraCreator1155ImplABI = [
|
|
|
953
967
|
outputs: []
|
|
954
968
|
},
|
|
955
969
|
{
|
|
956
|
-
stateMutability: "
|
|
970
|
+
stateMutability: "view",
|
|
957
971
|
type: "function",
|
|
958
972
|
inputs: [],
|
|
959
973
|
name: "mintFee",
|
|
960
974
|
outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
|
|
961
975
|
},
|
|
976
|
+
{
|
|
977
|
+
stateMutability: "payable",
|
|
978
|
+
type: "function",
|
|
979
|
+
inputs: [
|
|
980
|
+
{ name: "mintTokenIds", internalType: "uint256[]", type: "uint256[]" },
|
|
981
|
+
{ name: "quantities", internalType: "uint256[]", type: "uint256[]" },
|
|
982
|
+
{ name: "minter", internalType: "contract IMinter1155", type: "address" },
|
|
983
|
+
{ name: "tokenId", internalType: "uint256", type: "uint256" },
|
|
984
|
+
{
|
|
985
|
+
name: "rewardsRecipients",
|
|
986
|
+
internalType: "address[]",
|
|
987
|
+
type: "address[]"
|
|
988
|
+
},
|
|
989
|
+
{ name: "minterArguments", internalType: "bytes", type: "bytes" }
|
|
990
|
+
],
|
|
991
|
+
name: "mintWithMints",
|
|
992
|
+
outputs: [
|
|
993
|
+
{ name: "quantityMinted", internalType: "uint256", type: "uint256" }
|
|
994
|
+
]
|
|
995
|
+
},
|
|
962
996
|
{
|
|
963
997
|
stateMutability: "payable",
|
|
964
998
|
type: "function",
|
|
@@ -993,6 +1027,19 @@ var zoraCreator1155ImplABI = [
|
|
|
993
1027
|
name: "nextTokenId",
|
|
994
1028
|
outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
|
|
995
1029
|
},
|
|
1030
|
+
{
|
|
1031
|
+
stateMutability: "pure",
|
|
1032
|
+
type: "function",
|
|
1033
|
+
inputs: [
|
|
1034
|
+
{ name: "", internalType: "address", type: "address" },
|
|
1035
|
+
{ name: "", internalType: "address", type: "address" },
|
|
1036
|
+
{ name: "", internalType: "uint256", type: "uint256" },
|
|
1037
|
+
{ name: "", internalType: "uint256", type: "uint256" },
|
|
1038
|
+
{ name: "", internalType: "bytes", type: "bytes" }
|
|
1039
|
+
],
|
|
1040
|
+
name: "onERC1155Received",
|
|
1041
|
+
outputs: [{ name: "", internalType: "bytes4", type: "bytes4" }]
|
|
1042
|
+
},
|
|
996
1043
|
{
|
|
997
1044
|
stateMutability: "view",
|
|
998
1045
|
type: "function",
|
|
@@ -1816,17 +1863,8 @@ var zoraCreator1155ImplABI = [
|
|
|
1816
1863
|
name: "InvalidMerkleProof"
|
|
1817
1864
|
},
|
|
1818
1865
|
{ type: "error", inputs: [], name: "InvalidMintSchedule" },
|
|
1819
|
-
{
|
|
1820
|
-
|
|
1821
|
-
inputs: [
|
|
1822
|
-
{
|
|
1823
|
-
name: "recoverError",
|
|
1824
|
-
internalType: "enum ECDSAUpgradeable.RecoverError",
|
|
1825
|
-
type: "uint8"
|
|
1826
|
-
}
|
|
1827
|
-
],
|
|
1828
|
-
name: "InvalidSignature"
|
|
1829
|
-
},
|
|
1866
|
+
{ type: "error", inputs: [], name: "InvalidMintSchedule" },
|
|
1867
|
+
{ type: "error", inputs: [], name: "InvalidSignature" },
|
|
1830
1868
|
{ type: "error", inputs: [], name: "InvalidSignatureVersion" },
|
|
1831
1869
|
{
|
|
1832
1870
|
type: "error",
|
|
@@ -1835,6 +1873,7 @@ var zoraCreator1155ImplABI = [
|
|
|
1835
1873
|
},
|
|
1836
1874
|
{ type: "error", inputs: [], name: "MintNotYetStarted" },
|
|
1837
1875
|
{ type: "error", inputs: [], name: "Mint_InsolventSaleTransfer" },
|
|
1876
|
+
{ type: "error", inputs: [], name: "Mint_InvalidMintArrayLength" },
|
|
1838
1877
|
{ type: "error", inputs: [], name: "Mint_TokenIDMintNotAllowed" },
|
|
1839
1878
|
{ type: "error", inputs: [], name: "Mint_UnknownCommand" },
|
|
1840
1879
|
{ type: "error", inputs: [], name: "Mint_ValueTransferFail" },
|
|
@@ -2156,7 +2195,7 @@ var zoraCreator1155PremintExecutorImplABI = [
|
|
|
2156
2195
|
{ name: "quantityToMint", internalType: "uint256", type: "uint256" },
|
|
2157
2196
|
{
|
|
2158
2197
|
name: "mintArguments",
|
|
2159
|
-
internalType: "struct
|
|
2198
|
+
internalType: "struct MintArguments",
|
|
2160
2199
|
type: "tuple",
|
|
2161
2200
|
components: [
|
|
2162
2201
|
{ name: "mintRecipient", internalType: "address", type: "address" },
|
|
@@ -2173,7 +2212,7 @@ var zoraCreator1155PremintExecutorImplABI = [
|
|
|
2173
2212
|
outputs: [
|
|
2174
2213
|
{
|
|
2175
2214
|
name: "result",
|
|
2176
|
-
internalType: "struct
|
|
2215
|
+
internalType: "struct PremintResult",
|
|
2177
2216
|
type: "tuple",
|
|
2178
2217
|
components: [
|
|
2179
2218
|
{ name: "contractAddress", internalType: "address", type: "address" },
|
|
@@ -2244,7 +2283,7 @@ var zoraCreator1155PremintExecutorImplABI = [
|
|
|
2244
2283
|
{ name: "quantityToMint", internalType: "uint256", type: "uint256" },
|
|
2245
2284
|
{
|
|
2246
2285
|
name: "mintArguments",
|
|
2247
|
-
internalType: "struct
|
|
2286
|
+
internalType: "struct MintArguments",
|
|
2248
2287
|
type: "tuple",
|
|
2249
2288
|
components: [
|
|
2250
2289
|
{ name: "mintRecipient", internalType: "address", type: "address" },
|
|
@@ -2261,7 +2300,7 @@ var zoraCreator1155PremintExecutorImplABI = [
|
|
|
2261
2300
|
outputs: [
|
|
2262
2301
|
{
|
|
2263
2302
|
name: "result",
|
|
2264
|
-
internalType: "struct
|
|
2303
|
+
internalType: "struct PremintResult",
|
|
2265
2304
|
type: "tuple",
|
|
2266
2305
|
components: [
|
|
2267
2306
|
{ name: "contractAddress", internalType: "address", type: "address" },
|
|
@@ -2332,7 +2371,7 @@ var zoraCreator1155PremintExecutorImplABI = [
|
|
|
2332
2371
|
{ name: "quantityToMint", internalType: "uint256", type: "uint256" },
|
|
2333
2372
|
{
|
|
2334
2373
|
name: "mintArguments",
|
|
2335
|
-
internalType: "struct
|
|
2374
|
+
internalType: "struct MintArguments",
|
|
2336
2375
|
type: "tuple",
|
|
2337
2376
|
components: [
|
|
2338
2377
|
{ name: "mintRecipient", internalType: "address", type: "address" },
|
|
@@ -2350,7 +2389,78 @@ var zoraCreator1155PremintExecutorImplABI = [
|
|
|
2350
2389
|
outputs: [
|
|
2351
2390
|
{
|
|
2352
2391
|
name: "result",
|
|
2353
|
-
internalType: "struct
|
|
2392
|
+
internalType: "struct PremintResult",
|
|
2393
|
+
type: "tuple",
|
|
2394
|
+
components: [
|
|
2395
|
+
{ name: "contractAddress", internalType: "address", type: "address" },
|
|
2396
|
+
{ name: "tokenId", internalType: "uint256", type: "uint256" },
|
|
2397
|
+
{ name: "createdNewContract", internalType: "bool", type: "bool" }
|
|
2398
|
+
]
|
|
2399
|
+
}
|
|
2400
|
+
]
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
stateMutability: "payable",
|
|
2404
|
+
type: "function",
|
|
2405
|
+
inputs: [
|
|
2406
|
+
{ name: "mintTokenIds", internalType: "uint256[]", type: "uint256[]" },
|
|
2407
|
+
{
|
|
2408
|
+
name: "mintTokenIdQuantities",
|
|
2409
|
+
internalType: "uint256[]",
|
|
2410
|
+
type: "uint256[]"
|
|
2411
|
+
},
|
|
2412
|
+
{
|
|
2413
|
+
name: "contractConfig",
|
|
2414
|
+
internalType: "struct ContractCreationConfig",
|
|
2415
|
+
type: "tuple",
|
|
2416
|
+
components: [
|
|
2417
|
+
{ name: "contractAdmin", internalType: "address", type: "address" },
|
|
2418
|
+
{ name: "contractURI", internalType: "string", type: "string" },
|
|
2419
|
+
{ name: "contractName", internalType: "string", type: "string" }
|
|
2420
|
+
]
|
|
2421
|
+
},
|
|
2422
|
+
{
|
|
2423
|
+
name: "encodedPremintConfig",
|
|
2424
|
+
internalType: "struct EncodedPremintConfig",
|
|
2425
|
+
type: "tuple",
|
|
2426
|
+
components: [
|
|
2427
|
+
{ name: "premintConfig", internalType: "bytes", type: "bytes" },
|
|
2428
|
+
{
|
|
2429
|
+
name: "premintConfigVersion",
|
|
2430
|
+
internalType: "bytes32",
|
|
2431
|
+
type: "bytes32"
|
|
2432
|
+
},
|
|
2433
|
+
{ name: "uid", internalType: "uint32", type: "uint32" },
|
|
2434
|
+
{
|
|
2435
|
+
name: "fixedPriceMinter",
|
|
2436
|
+
internalType: "address",
|
|
2437
|
+
type: "address"
|
|
2438
|
+
}
|
|
2439
|
+
]
|
|
2440
|
+
},
|
|
2441
|
+
{ name: "signature", internalType: "bytes", type: "bytes" },
|
|
2442
|
+
{
|
|
2443
|
+
name: "mintArguments",
|
|
2444
|
+
internalType: "struct MintArguments",
|
|
2445
|
+
type: "tuple",
|
|
2446
|
+
components: [
|
|
2447
|
+
{ name: "mintRecipient", internalType: "address", type: "address" },
|
|
2448
|
+
{ name: "mintComment", internalType: "string", type: "string" },
|
|
2449
|
+
{
|
|
2450
|
+
name: "mintRewardsRecipients",
|
|
2451
|
+
internalType: "address[]",
|
|
2452
|
+
type: "address[]"
|
|
2453
|
+
}
|
|
2454
|
+
]
|
|
2455
|
+
},
|
|
2456
|
+
{ name: "minter", internalType: "address", type: "address" },
|
|
2457
|
+
{ name: "signerContract", internalType: "address", type: "address" }
|
|
2458
|
+
],
|
|
2459
|
+
name: "premintWithMints",
|
|
2460
|
+
outputs: [
|
|
2461
|
+
{
|
|
2462
|
+
name: "result",
|
|
2463
|
+
internalType: "struct PremintResult",
|
|
2354
2464
|
type: "tuple",
|
|
2355
2465
|
components: [
|
|
2356
2466
|
{ name: "contractAddress", internalType: "address", type: "address" },
|
|
@@ -2748,17 +2858,7 @@ var zoraCreator1155PremintExecutorImplABI = [
|
|
|
2748
2858
|
name: "InvalidMerkleProof"
|
|
2749
2859
|
},
|
|
2750
2860
|
{ type: "error", inputs: [], name: "InvalidMintSchedule" },
|
|
2751
|
-
{
|
|
2752
|
-
type: "error",
|
|
2753
|
-
inputs: [
|
|
2754
|
-
{
|
|
2755
|
-
name: "recoverError",
|
|
2756
|
-
internalType: "enum ECDSAUpgradeable.RecoverError",
|
|
2757
|
-
type: "uint8"
|
|
2758
|
-
}
|
|
2759
|
-
],
|
|
2760
|
-
name: "InvalidSignature"
|
|
2761
|
-
},
|
|
2861
|
+
{ type: "error", inputs: [], name: "InvalidSignature" },
|
|
2762
2862
|
{ type: "error", inputs: [], name: "InvalidSignatureVersion" },
|
|
2763
2863
|
{
|
|
2764
2864
|
type: "error",
|
|
@@ -2767,6 +2867,7 @@ var zoraCreator1155PremintExecutorImplABI = [
|
|
|
2767
2867
|
},
|
|
2768
2868
|
{ type: "error", inputs: [], name: "MintNotYetStarted" },
|
|
2769
2869
|
{ type: "error", inputs: [], name: "Mint_InsolventSaleTransfer" },
|
|
2870
|
+
{ type: "error", inputs: [], name: "Mint_InvalidMintArrayLength" },
|
|
2770
2871
|
{ type: "error", inputs: [], name: "Mint_TokenIDMintNotAllowed" },
|
|
2771
2872
|
{ type: "error", inputs: [], name: "Mint_UnknownCommand" },
|
|
2772
2873
|
{ type: "error", inputs: [], name: "Mint_ValueTransferFail" },
|
|
@@ -3488,104 +3589,898 @@ var zoraCreatorRedeemMinterFactoryConfig = {
|
|
|
3488
3589
|
address: zoraCreatorRedeemMinterFactoryAddress,
|
|
3489
3590
|
abi: zoraCreatorRedeemMinterFactoryABI
|
|
3490
3591
|
};
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
3503
|
-
},
|
|
3504
|
-
"10": {
|
|
3505
|
-
"FACTORY_OWNER": "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
|
|
3506
|
-
"MINT_FEE_RECIPIENT": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c",
|
|
3507
|
-
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
3508
|
-
},
|
|
3509
|
-
"999": {
|
|
3510
|
-
"FACTORY_OWNER": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
|
|
3511
|
-
"MINT_FEE_RECIPIENT": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
|
|
3512
|
-
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
3513
|
-
},
|
|
3514
|
-
"8453": {
|
|
3515
|
-
"FACTORY_OWNER": "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
|
|
3516
|
-
"MINT_FEE_RECIPIENT": "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6",
|
|
3517
|
-
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
3518
|
-
},
|
|
3519
|
-
"42161": {
|
|
3520
|
-
"FACTORY_OWNER": "0xF7DafC329C93D84267c0E7B146C0bD68807f6A03",
|
|
3521
|
-
"MINT_FEE_RECIPIENT": "0x10Fb02A68C3EA8bD439A6f515dcE07CC049f5c94",
|
|
3522
|
-
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
3523
|
-
},
|
|
3524
|
-
"81457": {
|
|
3525
|
-
"FACTORY_OWNER": "0x5b297B1b87f8De28C9fA7AFe183Db9F9e6295523",
|
|
3526
|
-
"MINT_FEE_RECIPIENT": "0x72E6394056f9152D3a41e5A25De383c191D16134",
|
|
3527
|
-
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
3528
|
-
},
|
|
3529
|
-
"421614": {
|
|
3530
|
-
"FACTORY_OWNER": "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
|
|
3531
|
-
"MINT_FEE_RECIPIENT": "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
|
|
3532
|
-
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
3533
|
-
},
|
|
3534
|
-
"7777777": {
|
|
3535
|
-
"FACTORY_OWNER": "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
|
|
3536
|
-
"MINT_FEE_RECIPIENT": "0xEcfc2ee50409E459c554a2b0376F882Ce916D853",
|
|
3537
|
-
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
3592
|
+
var zoraMintsImplABI = [
|
|
3593
|
+
{
|
|
3594
|
+
stateMutability: "nonpayable",
|
|
3595
|
+
type: "constructor",
|
|
3596
|
+
inputs: [
|
|
3597
|
+
{
|
|
3598
|
+
name: "_premintExecutor",
|
|
3599
|
+
internalType: "contract IPremintWithMints",
|
|
3600
|
+
type: "address"
|
|
3601
|
+
}
|
|
3602
|
+
]
|
|
3538
3603
|
},
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3604
|
+
{
|
|
3605
|
+
stateMutability: "nonpayable",
|
|
3606
|
+
type: "function",
|
|
3607
|
+
inputs: [],
|
|
3608
|
+
name: "acceptOwnership",
|
|
3609
|
+
outputs: []
|
|
3543
3610
|
},
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3611
|
+
{
|
|
3612
|
+
stateMutability: "view",
|
|
3613
|
+
type: "function",
|
|
3614
|
+
inputs: [
|
|
3615
|
+
{ name: "account", internalType: "address", type: "address" },
|
|
3616
|
+
{ name: "id", internalType: "uint256", type: "uint256" }
|
|
3617
|
+
],
|
|
3618
|
+
name: "balanceOf",
|
|
3619
|
+
outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
|
|
3548
3620
|
},
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
}
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
"
|
|
3558
|
-
"CONTRACT_1155_IMPL_VERSION": "2.7.0",
|
|
3559
|
-
"FACTORY_IMPL": "0xD662FB0fB00261C039441EF49Dbab154d7c533bD",
|
|
3560
|
-
"FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
3561
|
-
"FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
3562
|
-
"MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
3563
|
-
"PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
3564
|
-
"PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
3565
|
-
"REDEEM_MINTER_FACTORY": "0x78964965cF77850224513a367f899435C5B69174",
|
|
3566
|
-
"UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
3567
|
-
"timestamp": 1704400466
|
|
3621
|
+
{
|
|
3622
|
+
stateMutability: "view",
|
|
3623
|
+
type: "function",
|
|
3624
|
+
inputs: [
|
|
3625
|
+
{ name: "accounts", internalType: "address[]", type: "address[]" },
|
|
3626
|
+
{ name: "ids", internalType: "uint256[]", type: "uint256[]" }
|
|
3627
|
+
],
|
|
3628
|
+
name: "balanceOfBatch",
|
|
3629
|
+
outputs: [{ name: "", internalType: "uint256[]", type: "uint256[]" }]
|
|
3568
3630
|
},
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3631
|
+
{
|
|
3632
|
+
stateMutability: "payable",
|
|
3633
|
+
type: "function",
|
|
3634
|
+
inputs: [
|
|
3635
|
+
{ name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
|
|
3636
|
+
{ name: "quantities", internalType: "uint256[]", type: "uint256[]" },
|
|
3637
|
+
{
|
|
3638
|
+
name: "zoraCreator1155Contract",
|
|
3639
|
+
internalType: "contract IMintWithMints",
|
|
3640
|
+
type: "address"
|
|
3641
|
+
},
|
|
3642
|
+
{ name: "minter", internalType: "contract IMinter1155", type: "address" },
|
|
3643
|
+
{
|
|
3644
|
+
name: "zoraCreator1155TokenId",
|
|
3645
|
+
internalType: "uint256",
|
|
3646
|
+
type: "uint256"
|
|
3647
|
+
},
|
|
3648
|
+
{
|
|
3649
|
+
name: "rewardsRecipients",
|
|
3650
|
+
internalType: "address[]",
|
|
3651
|
+
type: "address[]"
|
|
3652
|
+
},
|
|
3653
|
+
{ name: "minterArguments", internalType: "bytes", type: "bytes" }
|
|
3654
|
+
],
|
|
3655
|
+
name: "collect",
|
|
3656
|
+
outputs: []
|
|
3581
3657
|
},
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3658
|
+
{
|
|
3659
|
+
stateMutability: "payable",
|
|
3660
|
+
type: "function",
|
|
3661
|
+
inputs: [
|
|
3662
|
+
{ name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
|
|
3663
|
+
{ name: "quantities", internalType: "uint256[]", type: "uint256[]" },
|
|
3664
|
+
{
|
|
3665
|
+
name: "contractConfig",
|
|
3666
|
+
internalType: "struct ContractCreationConfig",
|
|
3667
|
+
type: "tuple",
|
|
3668
|
+
components: [
|
|
3669
|
+
{ name: "contractAdmin", internalType: "address", type: "address" },
|
|
3670
|
+
{ name: "contractURI", internalType: "string", type: "string" },
|
|
3671
|
+
{ name: "contractName", internalType: "string", type: "string" }
|
|
3672
|
+
]
|
|
3673
|
+
},
|
|
3674
|
+
{
|
|
3675
|
+
name: "premintConfig",
|
|
3676
|
+
internalType: "struct PremintConfigV2",
|
|
3677
|
+
type: "tuple",
|
|
3678
|
+
components: [
|
|
3679
|
+
{
|
|
3680
|
+
name: "tokenConfig",
|
|
3681
|
+
internalType: "struct TokenCreationConfigV2",
|
|
3682
|
+
type: "tuple",
|
|
3683
|
+
components: [
|
|
3684
|
+
{ name: "tokenURI", internalType: "string", type: "string" },
|
|
3685
|
+
{ name: "maxSupply", internalType: "uint256", type: "uint256" },
|
|
3686
|
+
{
|
|
3687
|
+
name: "maxTokensPerAddress",
|
|
3688
|
+
internalType: "uint64",
|
|
3689
|
+
type: "uint64"
|
|
3690
|
+
},
|
|
3691
|
+
{ name: "pricePerToken", internalType: "uint96", type: "uint96" },
|
|
3692
|
+
{ name: "mintStart", internalType: "uint64", type: "uint64" },
|
|
3693
|
+
{ name: "mintDuration", internalType: "uint64", type: "uint64" },
|
|
3694
|
+
{ name: "royaltyBPS", internalType: "uint32", type: "uint32" },
|
|
3695
|
+
{
|
|
3696
|
+
name: "payoutRecipient",
|
|
3697
|
+
internalType: "address",
|
|
3698
|
+
type: "address"
|
|
3699
|
+
},
|
|
3700
|
+
{
|
|
3701
|
+
name: "fixedPriceMinter",
|
|
3702
|
+
internalType: "address",
|
|
3703
|
+
type: "address"
|
|
3704
|
+
},
|
|
3705
|
+
{
|
|
3706
|
+
name: "createReferral",
|
|
3707
|
+
internalType: "address",
|
|
3708
|
+
type: "address"
|
|
3709
|
+
}
|
|
3710
|
+
]
|
|
3711
|
+
},
|
|
3712
|
+
{ name: "uid", internalType: "uint32", type: "uint32" },
|
|
3713
|
+
{ name: "version", internalType: "uint32", type: "uint32" },
|
|
3714
|
+
{ name: "deleted", internalType: "bool", type: "bool" }
|
|
3715
|
+
]
|
|
3716
|
+
},
|
|
3717
|
+
{ name: "signature", internalType: "bytes", type: "bytes" },
|
|
3718
|
+
{
|
|
3719
|
+
name: "mintArguments",
|
|
3720
|
+
internalType: "struct MintArguments",
|
|
3721
|
+
type: "tuple",
|
|
3722
|
+
components: [
|
|
3723
|
+
{ name: "mintRecipient", internalType: "address", type: "address" },
|
|
3724
|
+
{ name: "mintComment", internalType: "string", type: "string" },
|
|
3725
|
+
{
|
|
3726
|
+
name: "mintRewardsRecipients",
|
|
3727
|
+
internalType: "address[]",
|
|
3728
|
+
type: "address[]"
|
|
3729
|
+
}
|
|
3730
|
+
]
|
|
3731
|
+
},
|
|
3732
|
+
{ name: "signerContract", internalType: "address", type: "address" }
|
|
3733
|
+
],
|
|
3734
|
+
name: "collectPremintV2",
|
|
3735
|
+
outputs: [
|
|
3736
|
+
{
|
|
3737
|
+
name: "result",
|
|
3738
|
+
internalType: "struct PremintResult",
|
|
3739
|
+
type: "tuple",
|
|
3740
|
+
components: [
|
|
3741
|
+
{ name: "contractAddress", internalType: "address", type: "address" },
|
|
3742
|
+
{ name: "tokenId", internalType: "uint256", type: "uint256" },
|
|
3743
|
+
{ name: "createdNewContract", internalType: "bool", type: "bool" }
|
|
3744
|
+
]
|
|
3745
|
+
}
|
|
3746
|
+
]
|
|
3747
|
+
},
|
|
3748
|
+
{
|
|
3749
|
+
stateMutability: "pure",
|
|
3750
|
+
type: "function",
|
|
3751
|
+
inputs: [],
|
|
3752
|
+
name: "contractVersion",
|
|
3753
|
+
outputs: [{ name: "", internalType: "string", type: "string" }]
|
|
3754
|
+
},
|
|
3755
|
+
{
|
|
3756
|
+
stateMutability: "nonpayable",
|
|
3757
|
+
type: "function",
|
|
3758
|
+
inputs: [
|
|
3759
|
+
{ name: "tokenId", internalType: "uint256", type: "uint256" },
|
|
3760
|
+
{ name: "pricePerToken", internalType: "uint256", type: "uint256" },
|
|
3761
|
+
{ name: "defaultMintable", internalType: "bool", type: "bool" }
|
|
3762
|
+
],
|
|
3763
|
+
name: "createEthToken",
|
|
3764
|
+
outputs: []
|
|
3765
|
+
},
|
|
3766
|
+
{
|
|
3767
|
+
stateMutability: "view",
|
|
3768
|
+
type: "function",
|
|
3769
|
+
inputs: [],
|
|
3770
|
+
name: "getEthPrice",
|
|
3771
|
+
outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
|
|
3772
|
+
},
|
|
3773
|
+
{
|
|
3774
|
+
stateMutability: "view",
|
|
3775
|
+
type: "function",
|
|
3776
|
+
inputs: [],
|
|
3777
|
+
name: "implementation",
|
|
3778
|
+
outputs: [{ name: "", internalType: "address", type: "address" }]
|
|
3779
|
+
},
|
|
3780
|
+
{
|
|
3781
|
+
stateMutability: "nonpayable",
|
|
3782
|
+
type: "function",
|
|
3783
|
+
inputs: [
|
|
3784
|
+
{ name: "initialOwner", internalType: "address", type: "address" },
|
|
3785
|
+
{ name: "initialEthTokenId", internalType: "uint256", type: "uint256" },
|
|
3786
|
+
{
|
|
3787
|
+
name: "initialEthTokenPrice",
|
|
3788
|
+
internalType: "uint256",
|
|
3789
|
+
type: "uint256"
|
|
3790
|
+
}
|
|
3791
|
+
],
|
|
3792
|
+
name: "initialize",
|
|
3793
|
+
outputs: []
|
|
3794
|
+
},
|
|
3795
|
+
{
|
|
3796
|
+
stateMutability: "view",
|
|
3797
|
+
type: "function",
|
|
3798
|
+
inputs: [
|
|
3799
|
+
{ name: "account", internalType: "address", type: "address" },
|
|
3800
|
+
{ name: "operator", internalType: "address", type: "address" }
|
|
3801
|
+
],
|
|
3802
|
+
name: "isApprovedForAll",
|
|
3803
|
+
outputs: [{ name: "", internalType: "bool", type: "bool" }]
|
|
3804
|
+
},
|
|
3805
|
+
{
|
|
3806
|
+
stateMutability: "payable",
|
|
3807
|
+
type: "function",
|
|
3808
|
+
inputs: [
|
|
3809
|
+
{ name: "quantity", internalType: "uint256", type: "uint256" },
|
|
3810
|
+
{ name: "recipient", internalType: "address", type: "address" }
|
|
3811
|
+
],
|
|
3812
|
+
name: "mintWithEth",
|
|
3813
|
+
outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
|
|
3814
|
+
},
|
|
3815
|
+
{
|
|
3816
|
+
stateMutability: "view",
|
|
3817
|
+
type: "function",
|
|
3818
|
+
inputs: [],
|
|
3819
|
+
name: "mintableEthToken",
|
|
3820
|
+
outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
|
|
3821
|
+
},
|
|
3822
|
+
{
|
|
3823
|
+
stateMutability: "pure",
|
|
3824
|
+
type: "function",
|
|
3825
|
+
inputs: [],
|
|
3826
|
+
name: "name",
|
|
3827
|
+
outputs: [{ name: "", internalType: "string", type: "string" }]
|
|
3828
|
+
},
|
|
3829
|
+
{
|
|
3830
|
+
stateMutability: "view",
|
|
3831
|
+
type: "function",
|
|
3832
|
+
inputs: [],
|
|
3833
|
+
name: "owner",
|
|
3834
|
+
outputs: [{ name: "", internalType: "address", type: "address" }]
|
|
3835
|
+
},
|
|
3836
|
+
{
|
|
3837
|
+
stateMutability: "view",
|
|
3838
|
+
type: "function",
|
|
3839
|
+
inputs: [],
|
|
3840
|
+
name: "pendingOwner",
|
|
3841
|
+
outputs: [{ name: "", internalType: "address", type: "address" }]
|
|
3842
|
+
},
|
|
3843
|
+
{
|
|
3844
|
+
stateMutability: "view",
|
|
3845
|
+
type: "function",
|
|
3846
|
+
inputs: [],
|
|
3847
|
+
name: "premintExecutor",
|
|
3848
|
+
outputs: [
|
|
3849
|
+
{ name: "", internalType: "contract IPremintWithMints", type: "address" }
|
|
3850
|
+
]
|
|
3851
|
+
},
|
|
3852
|
+
{
|
|
3853
|
+
stateMutability: "nonpayable",
|
|
3854
|
+
type: "function",
|
|
3855
|
+
inputs: [
|
|
3856
|
+
{ name: "tokenId", internalType: "uint256", type: "uint256" },
|
|
3857
|
+
{ name: "quantity", internalType: "uint256", type: "uint256" },
|
|
3858
|
+
{ name: "recipient", internalType: "address", type: "address" }
|
|
3859
|
+
],
|
|
3860
|
+
name: "redeem",
|
|
3861
|
+
outputs: [
|
|
3862
|
+
{ name: "valueRedeemed", internalType: "uint256", type: "uint256" }
|
|
3863
|
+
]
|
|
3864
|
+
},
|
|
3865
|
+
{
|
|
3866
|
+
stateMutability: "nonpayable",
|
|
3867
|
+
type: "function",
|
|
3868
|
+
inputs: [
|
|
3869
|
+
{ name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
|
|
3870
|
+
{ name: "quantities", internalType: "uint256[]", type: "uint256[]" },
|
|
3871
|
+
{ name: "recipient", internalType: "address", type: "address" }
|
|
3872
|
+
],
|
|
3873
|
+
name: "redeemBatch",
|
|
3874
|
+
outputs: [
|
|
3875
|
+
{ name: "valueRedeemed", internalType: "uint256", type: "uint256" }
|
|
3876
|
+
]
|
|
3877
|
+
},
|
|
3878
|
+
{
|
|
3879
|
+
stateMutability: "nonpayable",
|
|
3880
|
+
type: "function",
|
|
3881
|
+
inputs: [],
|
|
3882
|
+
name: "renounceOwnership",
|
|
3883
|
+
outputs: []
|
|
3884
|
+
},
|
|
3885
|
+
{
|
|
3886
|
+
stateMutability: "nonpayable",
|
|
3887
|
+
type: "function",
|
|
3888
|
+
inputs: [
|
|
3889
|
+
{ name: "from", internalType: "address", type: "address" },
|
|
3890
|
+
{ name: "to", internalType: "address", type: "address" },
|
|
3891
|
+
{ name: "ids", internalType: "uint256[]", type: "uint256[]" },
|
|
3892
|
+
{ name: "values", internalType: "uint256[]", type: "uint256[]" },
|
|
3893
|
+
{ name: "data", internalType: "bytes", type: "bytes" }
|
|
3894
|
+
],
|
|
3895
|
+
name: "safeBatchTransferFrom",
|
|
3896
|
+
outputs: []
|
|
3897
|
+
},
|
|
3898
|
+
{
|
|
3899
|
+
stateMutability: "nonpayable",
|
|
3900
|
+
type: "function",
|
|
3901
|
+
inputs: [
|
|
3902
|
+
{ name: "from", internalType: "address", type: "address" },
|
|
3903
|
+
{ name: "to", internalType: "address", type: "address" },
|
|
3904
|
+
{ name: "id", internalType: "uint256", type: "uint256" },
|
|
3905
|
+
{ name: "value", internalType: "uint256", type: "uint256" },
|
|
3906
|
+
{ name: "data", internalType: "bytes", type: "bytes" }
|
|
3907
|
+
],
|
|
3908
|
+
name: "safeTransferFrom",
|
|
3909
|
+
outputs: []
|
|
3910
|
+
},
|
|
3911
|
+
{
|
|
3912
|
+
stateMutability: "nonpayable",
|
|
3913
|
+
type: "function",
|
|
3914
|
+
inputs: [
|
|
3915
|
+
{ name: "operator", internalType: "address", type: "address" },
|
|
3916
|
+
{ name: "approved", internalType: "bool", type: "bool" }
|
|
3917
|
+
],
|
|
3918
|
+
name: "setApprovalForAll",
|
|
3919
|
+
outputs: []
|
|
3920
|
+
},
|
|
3921
|
+
{
|
|
3922
|
+
stateMutability: "nonpayable",
|
|
3923
|
+
type: "function",
|
|
3924
|
+
inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
|
|
3925
|
+
name: "setMintableEthToken",
|
|
3926
|
+
outputs: []
|
|
3927
|
+
},
|
|
3928
|
+
{
|
|
3929
|
+
stateMutability: "view",
|
|
3930
|
+
type: "function",
|
|
3931
|
+
inputs: [{ name: "interfaceId", internalType: "bytes4", type: "bytes4" }],
|
|
3932
|
+
name: "supportsInterface",
|
|
3933
|
+
outputs: [{ name: "", internalType: "bool", type: "bool" }]
|
|
3934
|
+
},
|
|
3935
|
+
{
|
|
3936
|
+
stateMutability: "pure",
|
|
3937
|
+
type: "function",
|
|
3938
|
+
inputs: [],
|
|
3939
|
+
name: "symbol",
|
|
3940
|
+
outputs: [{ name: "", internalType: "string", type: "string" }]
|
|
3941
|
+
},
|
|
3942
|
+
{
|
|
3943
|
+
stateMutability: "view",
|
|
3944
|
+
type: "function",
|
|
3945
|
+
inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
|
|
3946
|
+
name: "tokenCreated",
|
|
3947
|
+
outputs: [{ name: "", internalType: "bool", type: "bool" }]
|
|
3948
|
+
},
|
|
3949
|
+
{
|
|
3950
|
+
stateMutability: "view",
|
|
3951
|
+
type: "function",
|
|
3952
|
+
inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
|
|
3953
|
+
name: "tokenPrice",
|
|
3954
|
+
outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
|
|
3955
|
+
},
|
|
3956
|
+
{
|
|
3957
|
+
stateMutability: "nonpayable",
|
|
3958
|
+
type: "function",
|
|
3959
|
+
inputs: [{ name: "newOwner", internalType: "address", type: "address" }],
|
|
3960
|
+
name: "transferOwnership",
|
|
3961
|
+
outputs: []
|
|
3962
|
+
},
|
|
3963
|
+
{
|
|
3964
|
+
stateMutability: "view",
|
|
3965
|
+
type: "function",
|
|
3966
|
+
inputs: [{ name: "", internalType: "uint256", type: "uint256" }],
|
|
3967
|
+
name: "uri",
|
|
3968
|
+
outputs: [{ name: "", internalType: "string", type: "string" }]
|
|
3969
|
+
},
|
|
3970
|
+
{
|
|
3971
|
+
type: "event",
|
|
3972
|
+
anonymous: false,
|
|
3973
|
+
inputs: [
|
|
3974
|
+
{
|
|
3975
|
+
name: "account",
|
|
3976
|
+
internalType: "address",
|
|
3977
|
+
type: "address",
|
|
3978
|
+
indexed: true
|
|
3979
|
+
},
|
|
3980
|
+
{
|
|
3981
|
+
name: "operator",
|
|
3982
|
+
internalType: "address",
|
|
3983
|
+
type: "address",
|
|
3984
|
+
indexed: true
|
|
3985
|
+
},
|
|
3986
|
+
{ name: "approved", internalType: "bool", type: "bool", indexed: false }
|
|
3987
|
+
],
|
|
3988
|
+
name: "ApprovalForAll"
|
|
3989
|
+
},
|
|
3990
|
+
{
|
|
3991
|
+
type: "event",
|
|
3992
|
+
anonymous: false,
|
|
3993
|
+
inputs: [
|
|
3994
|
+
{
|
|
3995
|
+
name: "tokenIds",
|
|
3996
|
+
internalType: "uint256[]",
|
|
3997
|
+
type: "uint256[]",
|
|
3998
|
+
indexed: true
|
|
3999
|
+
},
|
|
4000
|
+
{
|
|
4001
|
+
name: "quantities",
|
|
4002
|
+
internalType: "uint256[]",
|
|
4003
|
+
type: "uint256[]",
|
|
4004
|
+
indexed: false
|
|
4005
|
+
},
|
|
4006
|
+
{
|
|
4007
|
+
name: "zoraCreator1155Contract",
|
|
4008
|
+
internalType: "address",
|
|
4009
|
+
type: "address",
|
|
4010
|
+
indexed: true
|
|
4011
|
+
},
|
|
4012
|
+
{
|
|
4013
|
+
name: "zoraCreator1155TokenId",
|
|
4014
|
+
internalType: "uint256",
|
|
4015
|
+
type: "uint256",
|
|
4016
|
+
indexed: true
|
|
4017
|
+
}
|
|
4018
|
+
],
|
|
4019
|
+
name: "Collected"
|
|
4020
|
+
},
|
|
4021
|
+
{
|
|
4022
|
+
type: "event",
|
|
4023
|
+
anonymous: false,
|
|
4024
|
+
inputs: [
|
|
4025
|
+
{
|
|
4026
|
+
name: "tokenId",
|
|
4027
|
+
internalType: "uint256",
|
|
4028
|
+
type: "uint256",
|
|
4029
|
+
indexed: true
|
|
4030
|
+
}
|
|
4031
|
+
],
|
|
4032
|
+
name: "EthMintableTokenSet"
|
|
4033
|
+
},
|
|
4034
|
+
{
|
|
4035
|
+
type: "event",
|
|
4036
|
+
anonymous: false,
|
|
4037
|
+
inputs: [
|
|
4038
|
+
{
|
|
4039
|
+
name: "tokenId",
|
|
4040
|
+
internalType: "uint256",
|
|
4041
|
+
type: "uint256",
|
|
4042
|
+
indexed: true
|
|
4043
|
+
},
|
|
4044
|
+
{
|
|
4045
|
+
name: "pricePerToken",
|
|
4046
|
+
internalType: "uint256",
|
|
4047
|
+
type: "uint256",
|
|
4048
|
+
indexed: true
|
|
4049
|
+
}
|
|
4050
|
+
],
|
|
4051
|
+
name: "EthTokenCreated"
|
|
4052
|
+
},
|
|
4053
|
+
{
|
|
4054
|
+
type: "event",
|
|
4055
|
+
anonymous: false,
|
|
4056
|
+
inputs: [
|
|
4057
|
+
{
|
|
4058
|
+
name: "version",
|
|
4059
|
+
internalType: "uint64",
|
|
4060
|
+
type: "uint64",
|
|
4061
|
+
indexed: false
|
|
4062
|
+
}
|
|
4063
|
+
],
|
|
4064
|
+
name: "Initialized"
|
|
4065
|
+
},
|
|
4066
|
+
{
|
|
4067
|
+
type: "event",
|
|
4068
|
+
anonymous: false,
|
|
4069
|
+
inputs: [
|
|
4070
|
+
{
|
|
4071
|
+
name: "previousOwner",
|
|
4072
|
+
internalType: "address",
|
|
4073
|
+
type: "address",
|
|
4074
|
+
indexed: true
|
|
4075
|
+
},
|
|
4076
|
+
{
|
|
4077
|
+
name: "newOwner",
|
|
4078
|
+
internalType: "address",
|
|
4079
|
+
type: "address",
|
|
4080
|
+
indexed: true
|
|
4081
|
+
}
|
|
4082
|
+
],
|
|
4083
|
+
name: "OwnershipTransferStarted"
|
|
4084
|
+
},
|
|
4085
|
+
{
|
|
4086
|
+
type: "event",
|
|
4087
|
+
anonymous: false,
|
|
4088
|
+
inputs: [
|
|
4089
|
+
{
|
|
4090
|
+
name: "previousOwner",
|
|
4091
|
+
internalType: "address",
|
|
4092
|
+
type: "address",
|
|
4093
|
+
indexed: true
|
|
4094
|
+
},
|
|
4095
|
+
{
|
|
4096
|
+
name: "newOwner",
|
|
4097
|
+
internalType: "address",
|
|
4098
|
+
type: "address",
|
|
4099
|
+
indexed: true
|
|
4100
|
+
}
|
|
4101
|
+
],
|
|
4102
|
+
name: "OwnershipTransferred"
|
|
4103
|
+
},
|
|
4104
|
+
{
|
|
4105
|
+
type: "event",
|
|
4106
|
+
anonymous: false,
|
|
4107
|
+
inputs: [
|
|
4108
|
+
{
|
|
4109
|
+
name: "tokenIds",
|
|
4110
|
+
internalType: "uint256[]",
|
|
4111
|
+
type: "uint256[]",
|
|
4112
|
+
indexed: false
|
|
4113
|
+
},
|
|
4114
|
+
{
|
|
4115
|
+
name: "quantities",
|
|
4116
|
+
internalType: "uint256[]",
|
|
4117
|
+
type: "uint256[]",
|
|
4118
|
+
indexed: false
|
|
4119
|
+
},
|
|
4120
|
+
{
|
|
4121
|
+
name: "recipient",
|
|
4122
|
+
internalType: "address",
|
|
4123
|
+
type: "address",
|
|
4124
|
+
indexed: false
|
|
4125
|
+
}
|
|
4126
|
+
],
|
|
4127
|
+
name: "RedeemedBatch"
|
|
4128
|
+
},
|
|
4129
|
+
{
|
|
4130
|
+
type: "event",
|
|
4131
|
+
anonymous: false,
|
|
4132
|
+
inputs: [
|
|
4133
|
+
{
|
|
4134
|
+
name: "operator",
|
|
4135
|
+
internalType: "address",
|
|
4136
|
+
type: "address",
|
|
4137
|
+
indexed: true
|
|
4138
|
+
},
|
|
4139
|
+
{ name: "from", internalType: "address", type: "address", indexed: true },
|
|
4140
|
+
{ name: "to", internalType: "address", type: "address", indexed: true },
|
|
4141
|
+
{
|
|
4142
|
+
name: "ids",
|
|
4143
|
+
internalType: "uint256[]",
|
|
4144
|
+
type: "uint256[]",
|
|
4145
|
+
indexed: false
|
|
4146
|
+
},
|
|
4147
|
+
{
|
|
4148
|
+
name: "values",
|
|
4149
|
+
internalType: "uint256[]",
|
|
4150
|
+
type: "uint256[]",
|
|
4151
|
+
indexed: false
|
|
4152
|
+
}
|
|
4153
|
+
],
|
|
4154
|
+
name: "TransferBatch"
|
|
4155
|
+
},
|
|
4156
|
+
{
|
|
4157
|
+
type: "event",
|
|
4158
|
+
anonymous: false,
|
|
4159
|
+
inputs: [
|
|
4160
|
+
{
|
|
4161
|
+
name: "operator",
|
|
4162
|
+
internalType: "address",
|
|
4163
|
+
type: "address",
|
|
4164
|
+
indexed: true
|
|
4165
|
+
},
|
|
4166
|
+
{ name: "from", internalType: "address", type: "address", indexed: true },
|
|
4167
|
+
{ name: "to", internalType: "address", type: "address", indexed: true },
|
|
4168
|
+
{ name: "id", internalType: "uint256", type: "uint256", indexed: false },
|
|
4169
|
+
{
|
|
4170
|
+
name: "value",
|
|
4171
|
+
internalType: "uint256",
|
|
4172
|
+
type: "uint256",
|
|
4173
|
+
indexed: false
|
|
4174
|
+
}
|
|
4175
|
+
],
|
|
4176
|
+
name: "TransferSingle"
|
|
4177
|
+
},
|
|
4178
|
+
{
|
|
4179
|
+
type: "event",
|
|
4180
|
+
anonymous: false,
|
|
4181
|
+
inputs: [
|
|
4182
|
+
{ name: "value", internalType: "string", type: "string", indexed: false },
|
|
4183
|
+
{ name: "id", internalType: "uint256", type: "uint256", indexed: true }
|
|
4184
|
+
],
|
|
4185
|
+
name: "URI"
|
|
4186
|
+
},
|
|
4187
|
+
{
|
|
4188
|
+
type: "error",
|
|
4189
|
+
inputs: [
|
|
4190
|
+
{ name: "operator", internalType: "address", type: "address" },
|
|
4191
|
+
{ name: "user", internalType: "address", type: "address" }
|
|
4192
|
+
],
|
|
4193
|
+
name: "Burn_NotOwnerOrApproved"
|
|
4194
|
+
},
|
|
4195
|
+
{
|
|
4196
|
+
type: "error",
|
|
4197
|
+
inputs: [{ name: "reason", internalType: "bytes", type: "bytes" }],
|
|
4198
|
+
name: "CallFailed"
|
|
4199
|
+
},
|
|
4200
|
+
{ type: "error", inputs: [], name: "Call_TokenIdMismatch" },
|
|
4201
|
+
{ type: "error", inputs: [], name: "CallerNotZoraCreator1155" },
|
|
4202
|
+
{
|
|
4203
|
+
type: "error",
|
|
4204
|
+
inputs: [
|
|
4205
|
+
{ name: "tokenId", internalType: "uint256", type: "uint256" },
|
|
4206
|
+
{ name: "quantity", internalType: "uint256", type: "uint256" },
|
|
4207
|
+
{ name: "totalMinted", internalType: "uint256", type: "uint256" },
|
|
4208
|
+
{ name: "maxSupply", internalType: "uint256", type: "uint256" }
|
|
4209
|
+
],
|
|
4210
|
+
name: "CannotMintMoreTokens"
|
|
4211
|
+
},
|
|
4212
|
+
{
|
|
4213
|
+
type: "error",
|
|
4214
|
+
inputs: [
|
|
4215
|
+
{ name: "proposedAddress", internalType: "address", type: "address" }
|
|
4216
|
+
],
|
|
4217
|
+
name: "Config_TransferHookNotSupported"
|
|
4218
|
+
},
|
|
4219
|
+
{
|
|
4220
|
+
type: "error",
|
|
4221
|
+
inputs: [
|
|
4222
|
+
{ name: "sender", internalType: "address", type: "address" },
|
|
4223
|
+
{ name: "balance", internalType: "uint256", type: "uint256" },
|
|
4224
|
+
{ name: "needed", internalType: "uint256", type: "uint256" },
|
|
4225
|
+
{ name: "tokenId", internalType: "uint256", type: "uint256" }
|
|
4226
|
+
],
|
|
4227
|
+
name: "ERC1155InsufficientBalance"
|
|
4228
|
+
},
|
|
4229
|
+
{
|
|
4230
|
+
type: "error",
|
|
4231
|
+
inputs: [{ name: "approver", internalType: "address", type: "address" }],
|
|
4232
|
+
name: "ERC1155InvalidApprover"
|
|
4233
|
+
},
|
|
4234
|
+
{
|
|
4235
|
+
type: "error",
|
|
4236
|
+
inputs: [
|
|
4237
|
+
{ name: "idsLength", internalType: "uint256", type: "uint256" },
|
|
4238
|
+
{ name: "valuesLength", internalType: "uint256", type: "uint256" }
|
|
4239
|
+
],
|
|
4240
|
+
name: "ERC1155InvalidArrayLength"
|
|
4241
|
+
},
|
|
4242
|
+
{
|
|
4243
|
+
type: "error",
|
|
4244
|
+
inputs: [{ name: "operator", internalType: "address", type: "address" }],
|
|
4245
|
+
name: "ERC1155InvalidOperator"
|
|
4246
|
+
},
|
|
4247
|
+
{
|
|
4248
|
+
type: "error",
|
|
4249
|
+
inputs: [{ name: "receiver", internalType: "address", type: "address" }],
|
|
4250
|
+
name: "ERC1155InvalidReceiver"
|
|
4251
|
+
},
|
|
4252
|
+
{
|
|
4253
|
+
type: "error",
|
|
4254
|
+
inputs: [{ name: "sender", internalType: "address", type: "address" }],
|
|
4255
|
+
name: "ERC1155InvalidSender"
|
|
4256
|
+
},
|
|
4257
|
+
{
|
|
4258
|
+
type: "error",
|
|
4259
|
+
inputs: [
|
|
4260
|
+
{ name: "operator", internalType: "address", type: "address" },
|
|
4261
|
+
{ name: "owner", internalType: "address", type: "address" }
|
|
4262
|
+
],
|
|
4263
|
+
name: "ERC1155MissingApprovalForAll"
|
|
4264
|
+
},
|
|
4265
|
+
{ type: "error", inputs: [], name: "ERC1155_MINT_TO_ZERO_ADDRESS" },
|
|
4266
|
+
{
|
|
4267
|
+
type: "error",
|
|
4268
|
+
inputs: [
|
|
4269
|
+
{ name: "recipient", internalType: "address", type: "address" },
|
|
4270
|
+
{ name: "amount", internalType: "uint256", type: "uint256" }
|
|
4271
|
+
],
|
|
4272
|
+
name: "ETHWithdrawFailed"
|
|
4273
|
+
},
|
|
4274
|
+
{
|
|
4275
|
+
type: "error",
|
|
4276
|
+
inputs: [
|
|
4277
|
+
{ name: "amount", internalType: "uint256", type: "uint256" },
|
|
4278
|
+
{ name: "contractValue", internalType: "uint256", type: "uint256" }
|
|
4279
|
+
],
|
|
4280
|
+
name: "FundsWithdrawInsolvent"
|
|
4281
|
+
},
|
|
4282
|
+
{ type: "error", inputs: [], name: "IncorrectAmountSent" },
|
|
4283
|
+
{ type: "error", inputs: [], name: "InvalidInitialization" },
|
|
4284
|
+
{
|
|
4285
|
+
type: "error",
|
|
4286
|
+
inputs: [
|
|
4287
|
+
{ name: "mintTo", internalType: "address", type: "address" },
|
|
4288
|
+
{ name: "merkleProof", internalType: "bytes32[]", type: "bytes32[]" },
|
|
4289
|
+
{ name: "merkleRoot", internalType: "bytes32", type: "bytes32" }
|
|
4290
|
+
],
|
|
4291
|
+
name: "InvalidMerkleProof"
|
|
4292
|
+
},
|
|
4293
|
+
{ type: "error", inputs: [], name: "InvalidMintSchedule" },
|
|
4294
|
+
{ type: "error", inputs: [], name: "InvalidSignature" },
|
|
4295
|
+
{ type: "error", inputs: [], name: "InvalidSignatureVersion" },
|
|
4296
|
+
{
|
|
4297
|
+
type: "error",
|
|
4298
|
+
inputs: [{ name: "magicValue", internalType: "bytes4", type: "bytes4" }],
|
|
4299
|
+
name: "InvalidSigner"
|
|
4300
|
+
},
|
|
4301
|
+
{ type: "error", inputs: [], name: "InvalidTokenPrice" },
|
|
4302
|
+
{ type: "error", inputs: [], name: "MintNotYetStarted" },
|
|
4303
|
+
{ type: "error", inputs: [], name: "Mint_InsolventSaleTransfer" },
|
|
4304
|
+
{ type: "error", inputs: [], name: "Mint_InvalidMintArrayLength" },
|
|
4305
|
+
{ type: "error", inputs: [], name: "Mint_TokenIDMintNotAllowed" },
|
|
4306
|
+
{ type: "error", inputs: [], name: "Mint_UnknownCommand" },
|
|
4307
|
+
{ type: "error", inputs: [], name: "Mint_ValueTransferFail" },
|
|
4308
|
+
{ type: "error", inputs: [], name: "MinterContractAlreadyExists" },
|
|
4309
|
+
{ type: "error", inputs: [], name: "MinterContractDoesNotExist" },
|
|
4310
|
+
{ type: "error", inputs: [], name: "NewOwnerNeedsToBeAdmin" },
|
|
4311
|
+
{ type: "error", inputs: [], name: "NotInitializing" },
|
|
4312
|
+
{
|
|
4313
|
+
type: "error",
|
|
4314
|
+
inputs: [{ name: "owner", internalType: "address", type: "address" }],
|
|
4315
|
+
name: "OwnableInvalidOwner"
|
|
4316
|
+
},
|
|
4317
|
+
{
|
|
4318
|
+
type: "error",
|
|
4319
|
+
inputs: [{ name: "account", internalType: "address", type: "address" }],
|
|
4320
|
+
name: "OwnableUnauthorizedAccount"
|
|
4321
|
+
},
|
|
4322
|
+
{ type: "error", inputs: [], name: "PremintDeleted" },
|
|
4323
|
+
{
|
|
4324
|
+
type: "error",
|
|
4325
|
+
inputs: [
|
|
4326
|
+
{ name: "caller", internalType: "address", type: "address" },
|
|
4327
|
+
{ name: "recipient", internalType: "address", type: "address" },
|
|
4328
|
+
{ name: "amount", internalType: "uint256", type: "uint256" }
|
|
4329
|
+
],
|
|
4330
|
+
name: "ProtocolRewardsWithdrawFailed"
|
|
4331
|
+
},
|
|
4332
|
+
{ type: "error", inputs: [], name: "Renderer_NotValidRendererContract" },
|
|
4333
|
+
{ type: "error", inputs: [], name: "SaleEnded" },
|
|
4334
|
+
{ type: "error", inputs: [], name: "SaleHasNotStarted" },
|
|
4335
|
+
{
|
|
4336
|
+
type: "error",
|
|
4337
|
+
inputs: [
|
|
4338
|
+
{ name: "targetContract", internalType: "address", type: "address" }
|
|
4339
|
+
],
|
|
4340
|
+
name: "Sale_CannotCallNonSalesContract"
|
|
4341
|
+
},
|
|
4342
|
+
{ type: "error", inputs: [], name: "TokenAlreadyCreated" },
|
|
4343
|
+
{ type: "error", inputs: [], name: "TokenDoesNotExist" },
|
|
4344
|
+
{
|
|
4345
|
+
type: "error",
|
|
4346
|
+
inputs: [
|
|
4347
|
+
{ name: "expected", internalType: "uint256", type: "uint256" },
|
|
4348
|
+
{ name: "actual", internalType: "uint256", type: "uint256" }
|
|
4349
|
+
],
|
|
4350
|
+
name: "TokenIdMismatch"
|
|
4351
|
+
},
|
|
4352
|
+
{ type: "error", inputs: [], name: "TransferFailed" },
|
|
4353
|
+
{
|
|
4354
|
+
type: "error",
|
|
4355
|
+
inputs: [
|
|
4356
|
+
{ name: "user", internalType: "address", type: "address" },
|
|
4357
|
+
{ name: "limit", internalType: "uint256", type: "uint256" },
|
|
4358
|
+
{ name: "requestedAmount", internalType: "uint256", type: "uint256" }
|
|
4359
|
+
],
|
|
4360
|
+
name: "UserExceedsMintLimit"
|
|
4361
|
+
},
|
|
4362
|
+
{
|
|
4363
|
+
type: "error",
|
|
4364
|
+
inputs: [
|
|
4365
|
+
{ name: "user", internalType: "address", type: "address" },
|
|
4366
|
+
{ name: "tokenId", internalType: "uint256", type: "uint256" },
|
|
4367
|
+
{ name: "role", internalType: "uint256", type: "uint256" }
|
|
4368
|
+
],
|
|
4369
|
+
name: "UserMissingRoleForToken"
|
|
4370
|
+
},
|
|
4371
|
+
{ type: "error", inputs: [], name: "WrongValueSent" },
|
|
4372
|
+
{
|
|
4373
|
+
type: "error",
|
|
4374
|
+
inputs: [],
|
|
4375
|
+
name: "premintSignerContractFailedToRecoverSigner"
|
|
4376
|
+
},
|
|
4377
|
+
{ type: "error", inputs: [], name: "premintSignerContractNotAContract" }
|
|
4378
|
+
];
|
|
4379
|
+
var zoraMintsImplAddress = {
|
|
4380
|
+
999999999: "0x77777773dE7607C8d2eF571ba03ab22a7df64CEA"
|
|
4381
|
+
};
|
|
4382
|
+
var zoraMintsImplConfig = {
|
|
4383
|
+
address: zoraMintsImplAddress,
|
|
4384
|
+
abi: zoraMintsImplABI
|
|
4385
|
+
};
|
|
4386
|
+
|
|
4387
|
+
// src/generated/1155.ts
|
|
4388
|
+
var __exports = {};
|
|
4389
|
+
__export(__exports, {
|
|
4390
|
+
addresses: () => addresses,
|
|
4391
|
+
chainConfigs: () => chainConfigs
|
|
4392
|
+
});
|
|
4393
|
+
var chainConfigs = {
|
|
4394
|
+
"1": {
|
|
4395
|
+
"FACTORY_OWNER": "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
|
|
4396
|
+
"MINT_FEE_RECIPIENT": "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0",
|
|
4397
|
+
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
4398
|
+
},
|
|
4399
|
+
"10": {
|
|
4400
|
+
"FACTORY_OWNER": "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
|
|
4401
|
+
"MINT_FEE_RECIPIENT": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c",
|
|
4402
|
+
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
4403
|
+
},
|
|
4404
|
+
"999": {
|
|
4405
|
+
"FACTORY_OWNER": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
|
|
4406
|
+
"MINT_FEE_RECIPIENT": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
|
|
4407
|
+
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
4408
|
+
},
|
|
4409
|
+
"8453": {
|
|
4410
|
+
"FACTORY_OWNER": "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
|
|
4411
|
+
"MINT_FEE_RECIPIENT": "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6",
|
|
4412
|
+
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
4413
|
+
},
|
|
4414
|
+
"42161": {
|
|
4415
|
+
"FACTORY_OWNER": "0xF7DafC329C93D84267c0E7B146C0bD68807f6A03",
|
|
4416
|
+
"MINT_FEE_RECIPIENT": "0x10Fb02A68C3EA8bD439A6f515dcE07CC049f5c94",
|
|
4417
|
+
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
4418
|
+
},
|
|
4419
|
+
"81457": {
|
|
4420
|
+
"FACTORY_OWNER": "0x5b297B1b87f8De28C9fA7AFe183Db9F9e6295523",
|
|
4421
|
+
"MINT_FEE_RECIPIENT": "0x72E6394056f9152D3a41e5A25De383c191D16134",
|
|
4422
|
+
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
4423
|
+
},
|
|
4424
|
+
"421614": {
|
|
4425
|
+
"FACTORY_OWNER": "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
|
|
4426
|
+
"MINT_FEE_RECIPIENT": "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
|
|
4427
|
+
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
4428
|
+
},
|
|
4429
|
+
"7777777": {
|
|
4430
|
+
"FACTORY_OWNER": "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
|
|
4431
|
+
"MINT_FEE_RECIPIENT": "0xEcfc2ee50409E459c554a2b0376F882Ce916D853",
|
|
4432
|
+
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
4433
|
+
},
|
|
4434
|
+
"11155111": {
|
|
4435
|
+
"FACTORY_OWNER": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
|
|
4436
|
+
"MINT_FEE_RECIPIENT": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
|
|
4437
|
+
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
4438
|
+
},
|
|
4439
|
+
"168587773": {
|
|
4440
|
+
"FACTORY_OWNER": "0x8cF22F26d528B09b3cc54b7ff956630Bf741b773",
|
|
4441
|
+
"MINT_FEE_RECIPIENT": "0x8cF22F26d528B09b3cc54b7ff956630Bf741b773",
|
|
4442
|
+
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
4443
|
+
},
|
|
4444
|
+
"999999999": {
|
|
4445
|
+
"FACTORY_OWNER": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
|
|
4446
|
+
"MINT_FEE_RECIPIENT": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
|
|
4447
|
+
"PROTOCOL_REWARDS": "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
4448
|
+
}
|
|
4449
|
+
};
|
|
4450
|
+
var addresses = {
|
|
4451
|
+
"1": {
|
|
4452
|
+
"CONTRACT_1155_IMPL": "0x32006e298C19818CD5e8000E26439691f0ac2128",
|
|
4453
|
+
"CONTRACT_1155_IMPL_VERSION": "2.7.0",
|
|
4454
|
+
"FACTORY_IMPL": "0xD662FB0fB00261C039441EF49Dbab154d7c533bD",
|
|
4455
|
+
"FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
4456
|
+
"FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
4457
|
+
"MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
4458
|
+
"PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
4459
|
+
"PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
4460
|
+
"REDEEM_MINTER_FACTORY": "0x78964965cF77850224513a367f899435C5B69174",
|
|
4461
|
+
"UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
4462
|
+
"timestamp": 1704400466
|
|
4463
|
+
},
|
|
4464
|
+
"10": {
|
|
4465
|
+
"CONTRACT_1155_IMPL": "0xECfbCf718E17B6e76A675dDB936a9249C69DD2aA",
|
|
4466
|
+
"CONTRACT_1155_IMPL_VERSION": "2.7.0",
|
|
4467
|
+
"FACTORY_IMPL": "0x32006e298C19818CD5e8000E26439691f0ac2128",
|
|
4468
|
+
"FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
4469
|
+
"FIXED_PRICE_SALE_STRATEGY": "0x3678862f04290E565cCA2EF163BAeb92Bb76790C",
|
|
4470
|
+
"MERKLE_MINT_SALE_STRATEGY": "0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8",
|
|
4471
|
+
"PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
4472
|
+
"PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
4473
|
+
"REDEEM_MINTER_FACTORY": "0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2",
|
|
4474
|
+
"UPGRADE_GATE": "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
4475
|
+
"timestamp": 1704396387
|
|
4476
|
+
},
|
|
4477
|
+
"999": {
|
|
4478
|
+
"CONTRACT_1155_IMPL": "0x2022AdEF470DA3543a19fac8c9be80618112704D",
|
|
4479
|
+
"CONTRACT_1155_IMPL_VERSION": "2.7.0",
|
|
4480
|
+
"FACTORY_IMPL": "0x4b0365Ec68C2D92Af2Fa56f120095F0859142Eff",
|
|
4481
|
+
"FACTORY_PROXY": "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
4482
|
+
"FIXED_PRICE_SALE_STRATEGY": "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
4483
|
+
"MERKLE_MINT_SALE_STRATEGY": "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
3589
4484
|
"PREMINTER_IMPL": "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
3590
4485
|
"PREMINTER_PROXY": "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
3591
4486
|
"REDEEM_MINTER_FACTORY": "0x78964965cF77850224513a367f899435C5B69174",
|
|
@@ -3698,8 +4593,60 @@ var addresses = {
|
|
|
3698
4593
|
"commit": "bdf6682"
|
|
3699
4594
|
}
|
|
3700
4595
|
};
|
|
4596
|
+
|
|
4597
|
+
// src/generated/mints.ts
|
|
4598
|
+
var mints_exports = {};
|
|
4599
|
+
__export(mints_exports, {
|
|
4600
|
+
addresses: () => addresses2,
|
|
4601
|
+
chainConfigs: () => chainConfigs2
|
|
4602
|
+
});
|
|
4603
|
+
var chainConfigs2 = {
|
|
4604
|
+
"1": {
|
|
4605
|
+
"PROXY_ADMIN": "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
|
|
4606
|
+
"MINTS_OWNER": "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0"
|
|
4607
|
+
},
|
|
4608
|
+
"10": {
|
|
4609
|
+
"PROXY_ADMIN": "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
|
|
4610
|
+
"MINTS_OWNER": "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c"
|
|
4611
|
+
},
|
|
4612
|
+
"420": {
|
|
4613
|
+
"PROXY_ADMIN": "0xbb45052B2260707655Dfd916a416264f5981192c",
|
|
4614
|
+
"MINTS_OWNER": "0x5dEe21327CD7CD6725C2578DA1c3E5bb2D2D34b2"
|
|
4615
|
+
},
|
|
4616
|
+
"999": {
|
|
4617
|
+
"PROXY_ADMIN": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
|
|
4618
|
+
"MINTS_OWNER": "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252"
|
|
4619
|
+
},
|
|
4620
|
+
"8453": {
|
|
4621
|
+
"PROXY_ADMIN": "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
|
|
4622
|
+
"MINTS_OWNER": "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6"
|
|
4623
|
+
},
|
|
4624
|
+
"84531": {
|
|
4625
|
+
"PROXY_ADMIN": "0x02539E813cA450C2c7334e885423f4A899a063Fe",
|
|
4626
|
+
"MINTS_OWNER": "0x02539E813cA450C2c7334e885423f4A899a063Fe"
|
|
4627
|
+
},
|
|
4628
|
+
"7777777": {
|
|
4629
|
+
"PROXY_ADMIN": "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
|
|
4630
|
+
"MINTS_OWNER": "0xEcfc2ee50409E459c554a2b0376F882Ce916D853"
|
|
4631
|
+
},
|
|
4632
|
+
"11155111": {
|
|
4633
|
+
"PROXY_ADMIN": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
|
|
4634
|
+
"MINTS_OWNER": "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D"
|
|
4635
|
+
},
|
|
4636
|
+
"999999999": {
|
|
4637
|
+
"PROXY_ADMIN": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
|
|
4638
|
+
"MINTS_OWNER": "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E"
|
|
4639
|
+
}
|
|
4640
|
+
};
|
|
4641
|
+
var addresses2 = {
|
|
4642
|
+
"999999999": {
|
|
4643
|
+
"MINTS_IMPL": "0x4D1d4767d5f2cC3884E221c340240BEa0B42b7BA",
|
|
4644
|
+
"MINTS_IMPL_VERSION": "0.0.2"
|
|
4645
|
+
}
|
|
4646
|
+
};
|
|
3701
4647
|
export {
|
|
3702
4648
|
__exports as contracts1155,
|
|
4649
|
+
mints_exports as mints,
|
|
3703
4650
|
zoraCreator1155FactoryImplABI,
|
|
3704
4651
|
zoraCreator1155FactoryImplAddress,
|
|
3705
4652
|
zoraCreator1155FactoryImplConfig,
|
|
@@ -3715,6 +4662,9 @@ export {
|
|
|
3715
4662
|
zoraCreatorMerkleMinterStrategyConfig,
|
|
3716
4663
|
zoraCreatorRedeemMinterFactoryABI,
|
|
3717
4664
|
zoraCreatorRedeemMinterFactoryAddress,
|
|
3718
|
-
zoraCreatorRedeemMinterFactoryConfig
|
|
4665
|
+
zoraCreatorRedeemMinterFactoryConfig,
|
|
4666
|
+
zoraMintsImplABI,
|
|
4667
|
+
zoraMintsImplAddress,
|
|
4668
|
+
zoraMintsImplConfig
|
|
3719
4669
|
};
|
|
3720
4670
|
//# sourceMappingURL=index.js.map
|