@zoralabs/protocol-deployments 0.1.5-DEV.0 → 0.1.5-DEV.10
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/CHANGELOG.md +6 -0
- package/dist/generated/1155.d.ts +22 -22
- package/dist/generated/mints.d.ts +11 -10
- package/dist/generated/mints.d.ts.map +1 -1
- package/dist/generated/wagmi.d.ts +1282 -208
- package/dist/generated/wagmi.d.ts.map +1 -1
- package/dist/index.cjs +589 -320
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +585 -320
- package/dist/index.js.map +1 -1
- package/json/1155.json +5 -5
- package/json/mints.json +1 -1
- package/package.json +3 -3
- package/src/generated/1155.ts +207 -207
- package/src/generated/mints.ts +43 -41
- package/src/generated/wagmi.ts +368 -87
package/dist/index.cjs
CHANGED
|
@@ -21,7 +21,11 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
21
21
|
var src_exports = {};
|
|
22
22
|
__export(src_exports, {
|
|
23
23
|
contracts1155: () => __exports,
|
|
24
|
+
iUnwrapAndForwardActionABI: () => iUnwrapAndForwardActionABI,
|
|
24
25
|
mints: () => mints_exports,
|
|
26
|
+
mintsEthUnwrapperAndCallerABI: () => mintsEthUnwrapperAndCallerABI,
|
|
27
|
+
mintsEthUnwrapperAndCallerAddress: () => mintsEthUnwrapperAndCallerAddress,
|
|
28
|
+
mintsEthUnwrapperAndCallerConfig: () => mintsEthUnwrapperAndCallerConfig,
|
|
25
29
|
zoraCreator1155FactoryImplABI: () => zoraCreator1155FactoryImplABI,
|
|
26
30
|
zoraCreator1155FactoryImplAddress: () => zoraCreator1155FactoryImplAddress,
|
|
27
31
|
zoraCreator1155FactoryImplConfig: () => zoraCreator1155FactoryImplConfig,
|
|
@@ -48,6 +52,80 @@ __export(src_exports, {
|
|
|
48
52
|
module.exports = __toCommonJS(src_exports);
|
|
49
53
|
|
|
50
54
|
// src/generated/wagmi.ts
|
|
55
|
+
var iUnwrapAndForwardActionABI = [
|
|
56
|
+
{
|
|
57
|
+
stateMutability: "payable",
|
|
58
|
+
type: "function",
|
|
59
|
+
inputs: [
|
|
60
|
+
{ name: "receiverAddress", internalType: "address", type: "address" },
|
|
61
|
+
{ name: "call", internalType: "bytes", type: "bytes" },
|
|
62
|
+
{ name: "valueToSend", internalType: "uint256", type: "uint256" }
|
|
63
|
+
],
|
|
64
|
+
name: "callWithEth",
|
|
65
|
+
outputs: []
|
|
66
|
+
}
|
|
67
|
+
];
|
|
68
|
+
var mintsEthUnwrapperAndCallerABI = [
|
|
69
|
+
{
|
|
70
|
+
stateMutability: "nonpayable",
|
|
71
|
+
type: "constructor",
|
|
72
|
+
inputs: [
|
|
73
|
+
{
|
|
74
|
+
name: "_zoraMints1155",
|
|
75
|
+
internalType: "contract IZoraMints1155",
|
|
76
|
+
type: "address"
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{ stateMutability: "payable", type: "receive" },
|
|
81
|
+
{
|
|
82
|
+
stateMutability: "nonpayable",
|
|
83
|
+
type: "function",
|
|
84
|
+
inputs: [
|
|
85
|
+
{ name: "", internalType: "address", type: "address" },
|
|
86
|
+
{ name: "from", internalType: "address", type: "address" },
|
|
87
|
+
{ name: "ids", internalType: "uint256[]", type: "uint256[]" },
|
|
88
|
+
{ name: "values", internalType: "uint256[]", type: "uint256[]" },
|
|
89
|
+
{ name: "data", internalType: "bytes", type: "bytes" }
|
|
90
|
+
],
|
|
91
|
+
name: "onERC1155BatchReceived",
|
|
92
|
+
outputs: [{ name: "", internalType: "bytes4", type: "bytes4" }]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
stateMutability: "nonpayable",
|
|
96
|
+
type: "function",
|
|
97
|
+
inputs: [
|
|
98
|
+
{ name: "", internalType: "address", type: "address" },
|
|
99
|
+
{ name: "from", internalType: "address", type: "address" },
|
|
100
|
+
{ name: "id", internalType: "uint256", type: "uint256" },
|
|
101
|
+
{ name: "value", internalType: "uint256", type: "uint256" },
|
|
102
|
+
{ name: "data", internalType: "bytes", type: "bytes" }
|
|
103
|
+
],
|
|
104
|
+
name: "onERC1155Received",
|
|
105
|
+
outputs: [{ name: "", internalType: "bytes4", type: "bytes4" }]
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
type: "error",
|
|
109
|
+
inputs: [{ name: "tokenId", internalType: "uint256", type: "uint256" }],
|
|
110
|
+
name: "ERC20NotSupported"
|
|
111
|
+
},
|
|
112
|
+
{ type: "error", inputs: [], name: "ETHTransferFailed" },
|
|
113
|
+
{ type: "error", inputs: [], name: "NotExpectingReceive" },
|
|
114
|
+
{ type: "error", inputs: [], name: "NotZoraMints1155" },
|
|
115
|
+
{
|
|
116
|
+
type: "error",
|
|
117
|
+
inputs: [{ name: "data", internalType: "bytes", type: "bytes" }],
|
|
118
|
+
name: "TransferFailed"
|
|
119
|
+
},
|
|
120
|
+
{ type: "error", inputs: [], name: "UnknownUserAction" }
|
|
121
|
+
];
|
|
122
|
+
var mintsEthUnwrapperAndCallerAddress = {
|
|
123
|
+
999999999: "0x98d1B7E6B9d11271124316593889BCF07038bE78"
|
|
124
|
+
};
|
|
125
|
+
var mintsEthUnwrapperAndCallerConfig = {
|
|
126
|
+
address: mintsEthUnwrapperAndCallerAddress,
|
|
127
|
+
abi: mintsEthUnwrapperAndCallerABI
|
|
128
|
+
};
|
|
51
129
|
var zoraCreator1155FactoryImplABI = [
|
|
52
130
|
{
|
|
53
131
|
stateMutability: "nonpayable",
|
|
@@ -3670,7 +3748,8 @@ var zoraMints1155ABI = [
|
|
|
3670
3748
|
type: "tuple",
|
|
3671
3749
|
components: [
|
|
3672
3750
|
{ name: "price", internalType: "uint256", type: "uint256" },
|
|
3673
|
-
{ name: "tokenAddress", internalType: "address", type: "address" }
|
|
3751
|
+
{ name: "tokenAddress", internalType: "address", type: "address" },
|
|
3752
|
+
{ name: "redeemHandler", internalType: "address", type: "address" }
|
|
3674
3753
|
]
|
|
3675
3754
|
}
|
|
3676
3755
|
],
|
|
@@ -3681,14 +3760,22 @@ var zoraMints1155ABI = [
|
|
|
3681
3760
|
stateMutability: "view",
|
|
3682
3761
|
type: "function",
|
|
3683
3762
|
inputs: [],
|
|
3684
|
-
name: "
|
|
3685
|
-
outputs: [
|
|
3763
|
+
name: "eip712Domain",
|
|
3764
|
+
outputs: [
|
|
3765
|
+
{ name: "fields", internalType: "bytes1", type: "bytes1" },
|
|
3766
|
+
{ name: "name", internalType: "string", type: "string" },
|
|
3767
|
+
{ name: "version", internalType: "string", type: "string" },
|
|
3768
|
+
{ name: "chainId", internalType: "uint256", type: "uint256" },
|
|
3769
|
+
{ name: "verifyingContract", internalType: "address", type: "address" },
|
|
3770
|
+
{ name: "salt", internalType: "bytes32", type: "bytes32" },
|
|
3771
|
+
{ name: "extensions", internalType: "uint256[]", type: "uint256[]" }
|
|
3772
|
+
]
|
|
3686
3773
|
},
|
|
3687
3774
|
{
|
|
3688
3775
|
stateMutability: "view",
|
|
3689
3776
|
type: "function",
|
|
3690
3777
|
inputs: [],
|
|
3691
|
-
name: "
|
|
3778
|
+
name: "getManager",
|
|
3692
3779
|
outputs: [{ name: "", internalType: "address", type: "address" }]
|
|
3693
3780
|
},
|
|
3694
3781
|
{
|
|
@@ -3703,11 +3790,56 @@ var zoraMints1155ABI = [
|
|
|
3703
3790
|
type: "tuple",
|
|
3704
3791
|
components: [
|
|
3705
3792
|
{ name: "price", internalType: "uint256", type: "uint256" },
|
|
3706
|
-
{ name: "tokenAddress", internalType: "address", type: "address" }
|
|
3793
|
+
{ name: "tokenAddress", internalType: "address", type: "address" },
|
|
3794
|
+
{ name: "redeemHandler", internalType: "address", type: "address" }
|
|
3707
3795
|
]
|
|
3708
3796
|
}
|
|
3709
3797
|
]
|
|
3710
3798
|
},
|
|
3799
|
+
{
|
|
3800
|
+
stateMutability: "view",
|
|
3801
|
+
type: "function",
|
|
3802
|
+
inputs: [
|
|
3803
|
+
{
|
|
3804
|
+
name: "permit",
|
|
3805
|
+
internalType: "struct IZoraMints1155Managed.PermitBatch",
|
|
3806
|
+
type: "tuple",
|
|
3807
|
+
components: [
|
|
3808
|
+
{ name: "owner", internalType: "address", type: "address" },
|
|
3809
|
+
{ name: "to", internalType: "address", type: "address" },
|
|
3810
|
+
{ name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
|
|
3811
|
+
{ name: "quantities", internalType: "uint256[]", type: "uint256[]" },
|
|
3812
|
+
{ name: "safeTransferData", internalType: "bytes", type: "bytes" },
|
|
3813
|
+
{ name: "deadline", internalType: "uint256", type: "uint256" },
|
|
3814
|
+
{ name: "nonce", internalType: "uint256", type: "uint256" }
|
|
3815
|
+
]
|
|
3816
|
+
}
|
|
3817
|
+
],
|
|
3818
|
+
name: "hashPermitBatch",
|
|
3819
|
+
outputs: [{ name: "", internalType: "bytes32", type: "bytes32" }]
|
|
3820
|
+
},
|
|
3821
|
+
{
|
|
3822
|
+
stateMutability: "view",
|
|
3823
|
+
type: "function",
|
|
3824
|
+
inputs: [
|
|
3825
|
+
{
|
|
3826
|
+
name: "permit",
|
|
3827
|
+
internalType: "struct IZoraMints1155Managed.PermitSingle",
|
|
3828
|
+
type: "tuple",
|
|
3829
|
+
components: [
|
|
3830
|
+
{ name: "owner", internalType: "address", type: "address" },
|
|
3831
|
+
{ name: "to", internalType: "address", type: "address" },
|
|
3832
|
+
{ name: "tokenId", internalType: "uint256", type: "uint256" },
|
|
3833
|
+
{ name: "quantity", internalType: "uint256", type: "uint256" },
|
|
3834
|
+
{ name: "safeTransferData", internalType: "bytes", type: "bytes" },
|
|
3835
|
+
{ name: "deadline", internalType: "uint256", type: "uint256" },
|
|
3836
|
+
{ name: "nonce", internalType: "uint256", type: "uint256" }
|
|
3837
|
+
]
|
|
3838
|
+
}
|
|
3839
|
+
],
|
|
3840
|
+
name: "hashPermitSingle",
|
|
3841
|
+
outputs: [{ name: "", internalType: "bytes32", type: "bytes32" }]
|
|
3842
|
+
},
|
|
3711
3843
|
{
|
|
3712
3844
|
stateMutability: "view",
|
|
3713
3845
|
type: "function",
|
|
@@ -3725,6 +3857,52 @@ var zoraMints1155ABI = [
|
|
|
3725
3857
|
name: "isConsumingScheduledOp",
|
|
3726
3858
|
outputs: [{ name: "", internalType: "bytes4", type: "bytes4" }]
|
|
3727
3859
|
},
|
|
3860
|
+
{
|
|
3861
|
+
stateMutability: "view",
|
|
3862
|
+
type: "function",
|
|
3863
|
+
inputs: [
|
|
3864
|
+
{
|
|
3865
|
+
name: "permit",
|
|
3866
|
+
internalType: "struct IZoraMints1155Managed.PermitBatch",
|
|
3867
|
+
type: "tuple",
|
|
3868
|
+
components: [
|
|
3869
|
+
{ name: "owner", internalType: "address", type: "address" },
|
|
3870
|
+
{ name: "to", internalType: "address", type: "address" },
|
|
3871
|
+
{ name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
|
|
3872
|
+
{ name: "quantities", internalType: "uint256[]", type: "uint256[]" },
|
|
3873
|
+
{ name: "safeTransferData", internalType: "bytes", type: "bytes" },
|
|
3874
|
+
{ name: "deadline", internalType: "uint256", type: "uint256" },
|
|
3875
|
+
{ name: "nonce", internalType: "uint256", type: "uint256" }
|
|
3876
|
+
]
|
|
3877
|
+
},
|
|
3878
|
+
{ name: "signature", internalType: "bytes", type: "bytes" }
|
|
3879
|
+
],
|
|
3880
|
+
name: "isValidSignatureTransferBatch",
|
|
3881
|
+
outputs: [{ name: "", internalType: "bool", type: "bool" }]
|
|
3882
|
+
},
|
|
3883
|
+
{
|
|
3884
|
+
stateMutability: "view",
|
|
3885
|
+
type: "function",
|
|
3886
|
+
inputs: [
|
|
3887
|
+
{
|
|
3888
|
+
name: "permit",
|
|
3889
|
+
internalType: "struct IZoraMints1155Managed.PermitSingle",
|
|
3890
|
+
type: "tuple",
|
|
3891
|
+
components: [
|
|
3892
|
+
{ name: "owner", internalType: "address", type: "address" },
|
|
3893
|
+
{ name: "to", internalType: "address", type: "address" },
|
|
3894
|
+
{ name: "tokenId", internalType: "uint256", type: "uint256" },
|
|
3895
|
+
{ name: "quantity", internalType: "uint256", type: "uint256" },
|
|
3896
|
+
{ name: "safeTransferData", internalType: "bytes", type: "bytes" },
|
|
3897
|
+
{ name: "deadline", internalType: "uint256", type: "uint256" },
|
|
3898
|
+
{ name: "nonce", internalType: "uint256", type: "uint256" }
|
|
3899
|
+
]
|
|
3900
|
+
},
|
|
3901
|
+
{ name: "signature", internalType: "bytes", type: "bytes" }
|
|
3902
|
+
],
|
|
3903
|
+
name: "isValidSignatureTransferSingle",
|
|
3904
|
+
outputs: [{ name: "", internalType: "bool", type: "bool" }]
|
|
3905
|
+
},
|
|
3728
3906
|
{
|
|
3729
3907
|
stateMutability: "nonpayable",
|
|
3730
3908
|
type: "function",
|
|
@@ -3757,6 +3935,16 @@ var zoraMints1155ABI = [
|
|
|
3757
3935
|
name: "name",
|
|
3758
3936
|
outputs: [{ name: "", internalType: "string", type: "string" }]
|
|
3759
3937
|
},
|
|
3938
|
+
{
|
|
3939
|
+
stateMutability: "view",
|
|
3940
|
+
type: "function",
|
|
3941
|
+
inputs: [
|
|
3942
|
+
{ name: "owner", internalType: "address", type: "address" },
|
|
3943
|
+
{ name: "nonce", internalType: "uint256", type: "uint256" }
|
|
3944
|
+
],
|
|
3945
|
+
name: "nonceUsed",
|
|
3946
|
+
outputs: [{ name: "", internalType: "bool", type: "bool" }]
|
|
3947
|
+
},
|
|
3760
3948
|
{
|
|
3761
3949
|
stateMutability: "nonpayable",
|
|
3762
3950
|
type: "function",
|
|
@@ -3777,6 +3965,52 @@ var zoraMints1155ABI = [
|
|
|
3777
3965
|
name: "notifyUpdatedTokenURI",
|
|
3778
3966
|
outputs: []
|
|
3779
3967
|
},
|
|
3968
|
+
{
|
|
3969
|
+
stateMutability: "nonpayable",
|
|
3970
|
+
type: "function",
|
|
3971
|
+
inputs: [
|
|
3972
|
+
{
|
|
3973
|
+
name: "permit",
|
|
3974
|
+
internalType: "struct IZoraMints1155Managed.PermitSingle",
|
|
3975
|
+
type: "tuple",
|
|
3976
|
+
components: [
|
|
3977
|
+
{ name: "owner", internalType: "address", type: "address" },
|
|
3978
|
+
{ name: "to", internalType: "address", type: "address" },
|
|
3979
|
+
{ name: "tokenId", internalType: "uint256", type: "uint256" },
|
|
3980
|
+
{ name: "quantity", internalType: "uint256", type: "uint256" },
|
|
3981
|
+
{ name: "safeTransferData", internalType: "bytes", type: "bytes" },
|
|
3982
|
+
{ name: "deadline", internalType: "uint256", type: "uint256" },
|
|
3983
|
+
{ name: "nonce", internalType: "uint256", type: "uint256" }
|
|
3984
|
+
]
|
|
3985
|
+
},
|
|
3986
|
+
{ name: "signature", internalType: "bytes", type: "bytes" }
|
|
3987
|
+
],
|
|
3988
|
+
name: "permitSafeTransfer",
|
|
3989
|
+
outputs: []
|
|
3990
|
+
},
|
|
3991
|
+
{
|
|
3992
|
+
stateMutability: "nonpayable",
|
|
3993
|
+
type: "function",
|
|
3994
|
+
inputs: [
|
|
3995
|
+
{
|
|
3996
|
+
name: "permit",
|
|
3997
|
+
internalType: "struct IZoraMints1155Managed.PermitBatch",
|
|
3998
|
+
type: "tuple",
|
|
3999
|
+
components: [
|
|
4000
|
+
{ name: "owner", internalType: "address", type: "address" },
|
|
4001
|
+
{ name: "to", internalType: "address", type: "address" },
|
|
4002
|
+
{ name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
|
|
4003
|
+
{ name: "quantities", internalType: "uint256[]", type: "uint256[]" },
|
|
4004
|
+
{ name: "safeTransferData", internalType: "bytes", type: "bytes" },
|
|
4005
|
+
{ name: "deadline", internalType: "uint256", type: "uint256" },
|
|
4006
|
+
{ name: "nonce", internalType: "uint256", type: "uint256" }
|
|
4007
|
+
]
|
|
4008
|
+
},
|
|
4009
|
+
{ name: "signature", internalType: "bytes", type: "bytes" }
|
|
4010
|
+
],
|
|
4011
|
+
name: "permitSafeTransferBatch",
|
|
4012
|
+
outputs: []
|
|
4013
|
+
},
|
|
3780
4014
|
{
|
|
3781
4015
|
stateMutability: "nonpayable",
|
|
3782
4016
|
type: "function",
|
|
@@ -3898,7 +4132,6 @@ var zoraMints1155ABI = [
|
|
|
3898
4132
|
inputs: [
|
|
3899
4133
|
{ name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
|
|
3900
4134
|
{ name: "quantities", internalType: "uint256[]", type: "uint256[]" },
|
|
3901
|
-
{ name: "safeTransferData", internalType: "bytes", type: "bytes" },
|
|
3902
4135
|
{ name: "call", internalType: "bytes", type: "bytes" }
|
|
3903
4136
|
],
|
|
3904
4137
|
name: "transferBatchToManagerAndCall",
|
|
@@ -3945,19 +4178,7 @@ var zoraMints1155ABI = [
|
|
|
3945
4178
|
name: "AuthorityUpdated"
|
|
3946
4179
|
},
|
|
3947
4180
|
{ type: "event", anonymous: false, inputs: [], name: "ContractURIUpdated" },
|
|
3948
|
-
{
|
|
3949
|
-
type: "event",
|
|
3950
|
-
anonymous: false,
|
|
3951
|
-
inputs: [
|
|
3952
|
-
{
|
|
3953
|
-
name: "tokenId",
|
|
3954
|
-
internalType: "uint256",
|
|
3955
|
-
type: "uint256",
|
|
3956
|
-
indexed: true
|
|
3957
|
-
}
|
|
3958
|
-
],
|
|
3959
|
-
name: "EthMintableTokenSet"
|
|
3960
|
-
},
|
|
4181
|
+
{ type: "event", anonymous: false, inputs: [], name: "EIP712DomainChanged" },
|
|
3961
4182
|
{
|
|
3962
4183
|
type: "event",
|
|
3963
4184
|
anonymous: false,
|
|
@@ -3969,57 +4190,15 @@ var zoraMints1155ABI = [
|
|
|
3969
4190
|
indexed: true
|
|
3970
4191
|
},
|
|
3971
4192
|
{
|
|
3972
|
-
name: "
|
|
4193
|
+
name: "price",
|
|
3973
4194
|
internalType: "uint256",
|
|
3974
4195
|
type: "uint256",
|
|
3975
4196
|
indexed: true
|
|
3976
|
-
}
|
|
3977
|
-
],
|
|
3978
|
-
name: "EthTokenCreated"
|
|
3979
|
-
},
|
|
3980
|
-
{
|
|
3981
|
-
type: "event",
|
|
3982
|
-
anonymous: false,
|
|
3983
|
-
inputs: [
|
|
3984
|
-
{
|
|
3985
|
-
name: "tokenIds",
|
|
3986
|
-
internalType: "uint256[]",
|
|
3987
|
-
type: "uint256[]",
|
|
3988
|
-
indexed: false
|
|
3989
|
-
},
|
|
3990
|
-
{
|
|
3991
|
-
name: "quantities",
|
|
3992
|
-
internalType: "uint256[]",
|
|
3993
|
-
type: "uint256[]",
|
|
3994
|
-
indexed: false
|
|
3995
4197
|
},
|
|
3996
4198
|
{
|
|
3997
|
-
name: "
|
|
4199
|
+
name: "tokenAddress",
|
|
3998
4200
|
internalType: "address",
|
|
3999
4201
|
type: "address",
|
|
4000
|
-
indexed: false
|
|
4001
|
-
}
|
|
4002
|
-
],
|
|
4003
|
-
name: "RedeemedBatch"
|
|
4004
|
-
},
|
|
4005
|
-
{
|
|
4006
|
-
type: "event",
|
|
4007
|
-
anonymous: false,
|
|
4008
|
-
inputs: [
|
|
4009
|
-
{
|
|
4010
|
-
name: "tokenId",
|
|
4011
|
-
internalType: "uint256",
|
|
4012
|
-
type: "uint256",
|
|
4013
|
-
indexed: true
|
|
4014
|
-
},
|
|
4015
|
-
{
|
|
4016
|
-
name: "tokenConfig",
|
|
4017
|
-
internalType: "struct TokenConfig",
|
|
4018
|
-
type: "tuple",
|
|
4019
|
-
components: [
|
|
4020
|
-
{ name: "price", internalType: "uint256", type: "uint256" },
|
|
4021
|
-
{ name: "tokenAddress", internalType: "address", type: "address" }
|
|
4022
|
-
],
|
|
4023
4202
|
indexed: true
|
|
4024
4203
|
}
|
|
4025
4204
|
],
|
|
@@ -4180,11 +4359,36 @@ var zoraMints1155ABI = [
|
|
|
4180
4359
|
name: "ERC1155MissingApprovalForAll"
|
|
4181
4360
|
},
|
|
4182
4361
|
{ type: "error", inputs: [], name: "ERC20TransferSlippage" },
|
|
4362
|
+
{
|
|
4363
|
+
type: "error",
|
|
4364
|
+
inputs: [{ name: "deadline", internalType: "uint256", type: "uint256" }],
|
|
4365
|
+
name: "ERC2612ExpiredSignature"
|
|
4366
|
+
},
|
|
4183
4367
|
{ type: "error", inputs: [], name: "ETHTransferFailed" },
|
|
4184
4368
|
{ type: "error", inputs: [], name: "IncorrectAmountSent" },
|
|
4369
|
+
{
|
|
4370
|
+
type: "error",
|
|
4371
|
+
inputs: [
|
|
4372
|
+
{ name: "account", internalType: "address", type: "address" },
|
|
4373
|
+
{ name: "currentNonce", internalType: "uint256", type: "uint256" }
|
|
4374
|
+
],
|
|
4375
|
+
name: "InvalidAccountNonce"
|
|
4376
|
+
},
|
|
4185
4377
|
{ type: "error", inputs: [], name: "InvalidRecipient" },
|
|
4378
|
+
{ type: "error", inputs: [], name: "InvalidShortString" },
|
|
4379
|
+
{ type: "error", inputs: [], name: "InvalidSignature" },
|
|
4186
4380
|
{ type: "error", inputs: [], name: "InvalidTokenPrice" },
|
|
4187
4381
|
{ type: "error", inputs: [], name: "NoUriForNonexistentToken" },
|
|
4382
|
+
{
|
|
4383
|
+
type: "error",
|
|
4384
|
+
inputs: [{ name: "handler", internalType: "address", type: "address" }],
|
|
4385
|
+
name: "NotARedeemHandler"
|
|
4386
|
+
},
|
|
4387
|
+
{
|
|
4388
|
+
type: "error",
|
|
4389
|
+
inputs: [{ name: "str", internalType: "string", type: "string" }],
|
|
4390
|
+
name: "StringTooLong"
|
|
4391
|
+
},
|
|
4188
4392
|
{ type: "error", inputs: [], name: "TokenAlreadyCreated" },
|
|
4189
4393
|
{ type: "error", inputs: [], name: "TokenDoesNotExist" },
|
|
4190
4394
|
{
|
|
@@ -4202,7 +4406,7 @@ var zoraMints1155ABI = [
|
|
|
4202
4406
|
{ type: "error", inputs: [], name: "TokenNotMintable" }
|
|
4203
4407
|
];
|
|
4204
4408
|
var zoraMints1155Address = {
|
|
4205
|
-
999999999: "
|
|
4409
|
+
999999999: "0x7777777EBF55Ec642acCBCfe1342C2B7A384Afe4"
|
|
4206
4410
|
};
|
|
4207
4411
|
var zoraMints1155Config = {
|
|
4208
4412
|
address: zoraMints1155Address,
|
|
@@ -4234,6 +4438,21 @@ var zoraMintsManagerImplABI = [
|
|
|
4234
4438
|
name: "acceptOwnership",
|
|
4235
4439
|
outputs: []
|
|
4236
4440
|
},
|
|
4441
|
+
{
|
|
4442
|
+
stateMutability: "payable",
|
|
4443
|
+
type: "function",
|
|
4444
|
+
inputs: [
|
|
4445
|
+
{ name: "callFrom", internalType: "address", type: "address" },
|
|
4446
|
+
{ name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
|
|
4447
|
+
{ name: "quantities", internalType: "uint256[]", type: "uint256[]" },
|
|
4448
|
+
{ name: "call", internalType: "bytes", type: "bytes" }
|
|
4449
|
+
],
|
|
4450
|
+
name: "callWithTransferTokens",
|
|
4451
|
+
outputs: [
|
|
4452
|
+
{ name: "success", internalType: "bool", type: "bool" },
|
|
4453
|
+
{ name: "result", internalType: "bytes", type: "bytes" }
|
|
4454
|
+
]
|
|
4455
|
+
},
|
|
4237
4456
|
{
|
|
4238
4457
|
stateMutability: "view",
|
|
4239
4458
|
type: "function",
|
|
@@ -4249,8 +4468,6 @@ var zoraMintsManagerImplABI = [
|
|
|
4249
4468
|
stateMutability: "payable",
|
|
4250
4469
|
type: "function",
|
|
4251
4470
|
inputs: [
|
|
4252
|
-
{ name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
|
|
4253
|
-
{ name: "quantities", internalType: "uint256[]", type: "uint256[]" },
|
|
4254
4471
|
{
|
|
4255
4472
|
name: "zoraCreator1155Contract",
|
|
4256
4473
|
internalType: "contract IMintWithMints",
|
|
@@ -4263,17 +4480,17 @@ var zoraMintsManagerImplABI = [
|
|
|
4263
4480
|
type: "uint256"
|
|
4264
4481
|
},
|
|
4265
4482
|
{
|
|
4266
|
-
name: "
|
|
4267
|
-
internalType: "struct
|
|
4483
|
+
name: "collectMintArguments",
|
|
4484
|
+
internalType: "struct ICollectWithZoraMints.CollectMintArguments",
|
|
4268
4485
|
type: "tuple",
|
|
4269
4486
|
components: [
|
|
4270
|
-
{ name: "mintRecipient", internalType: "address", type: "address" },
|
|
4271
|
-
{ name: "mintComment", internalType: "string", type: "string" },
|
|
4272
4487
|
{
|
|
4273
4488
|
name: "mintRewardsRecipients",
|
|
4274
4489
|
internalType: "address[]",
|
|
4275
4490
|
type: "address[]"
|
|
4276
|
-
}
|
|
4491
|
+
},
|
|
4492
|
+
{ name: "minterArguments", internalType: "bytes", type: "bytes" },
|
|
4493
|
+
{ name: "mintComment", internalType: "string", type: "string" }
|
|
4277
4494
|
]
|
|
4278
4495
|
}
|
|
4279
4496
|
],
|
|
@@ -4284,8 +4501,6 @@ var zoraMintsManagerImplABI = [
|
|
|
4284
4501
|
stateMutability: "payable",
|
|
4285
4502
|
type: "function",
|
|
4286
4503
|
inputs: [
|
|
4287
|
-
{ name: "tokenIds", internalType: "uint256[]", type: "uint256[]" },
|
|
4288
|
-
{ name: "quantities", internalType: "uint256[]", type: "uint256[]" },
|
|
4289
4504
|
{
|
|
4290
4505
|
name: "contractConfig",
|
|
4291
4506
|
internalType: "struct ContractCreationConfig",
|
|
@@ -4402,13 +4617,25 @@ var zoraMintsManagerImplABI = [
|
|
|
4402
4617
|
type: "tuple",
|
|
4403
4618
|
components: [
|
|
4404
4619
|
{ name: "price", internalType: "uint256", type: "uint256" },
|
|
4405
|
-
{ name: "tokenAddress", internalType: "address", type: "address" }
|
|
4620
|
+
{ name: "tokenAddress", internalType: "address", type: "address" },
|
|
4621
|
+
{ name: "redeemHandler", internalType: "address", type: "address" }
|
|
4406
4622
|
]
|
|
4407
|
-
}
|
|
4623
|
+
},
|
|
4624
|
+
{ name: "defaultMintable", internalType: "bool", type: "bool" }
|
|
4408
4625
|
],
|
|
4409
4626
|
name: "createToken",
|
|
4410
4627
|
outputs: []
|
|
4411
4628
|
},
|
|
4629
|
+
{
|
|
4630
|
+
stateMutability: "pure",
|
|
4631
|
+
type: "function",
|
|
4632
|
+
inputs: [{ name: "minterArguments", internalType: "bytes", type: "bytes" }],
|
|
4633
|
+
name: "decodeMintRecipientAndComment",
|
|
4634
|
+
outputs: [
|
|
4635
|
+
{ name: "mintTo", internalType: "address", type: "address" },
|
|
4636
|
+
{ name: "mintComment", internalType: "string", type: "string" }
|
|
4637
|
+
]
|
|
4638
|
+
},
|
|
4412
4639
|
{
|
|
4413
4640
|
stateMutability: "view",
|
|
4414
4641
|
type: "function",
|
|
@@ -4481,27 +4708,27 @@ var zoraMintsManagerImplABI = [
|
|
|
4481
4708
|
outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
|
|
4482
4709
|
},
|
|
4483
4710
|
{
|
|
4484
|
-
stateMutability: "
|
|
4711
|
+
stateMutability: "nonpayable",
|
|
4485
4712
|
type: "function",
|
|
4486
4713
|
inputs: [
|
|
4487
4714
|
{ name: "", internalType: "address", type: "address" },
|
|
4488
|
-
{ name: "", internalType: "address", type: "address" },
|
|
4489
|
-
{ name: "", internalType: "uint256[]", type: "uint256[]" },
|
|
4490
|
-
{ name: "", internalType: "uint256[]", type: "uint256[]" },
|
|
4491
|
-
{ name: "", internalType: "bytes", type: "bytes" }
|
|
4715
|
+
{ name: "from", internalType: "address", type: "address" },
|
|
4716
|
+
{ name: "ids", internalType: "uint256[]", type: "uint256[]" },
|
|
4717
|
+
{ name: "values", internalType: "uint256[]", type: "uint256[]" },
|
|
4718
|
+
{ name: "data", internalType: "bytes", type: "bytes" }
|
|
4492
4719
|
],
|
|
4493
4720
|
name: "onERC1155BatchReceived",
|
|
4494
4721
|
outputs: [{ name: "", internalType: "bytes4", type: "bytes4" }]
|
|
4495
4722
|
},
|
|
4496
4723
|
{
|
|
4497
|
-
stateMutability: "
|
|
4724
|
+
stateMutability: "nonpayable",
|
|
4498
4725
|
type: "function",
|
|
4499
4726
|
inputs: [
|
|
4500
4727
|
{ name: "", internalType: "address", type: "address" },
|
|
4501
|
-
{ name: "", internalType: "address", type: "address" },
|
|
4502
|
-
{ name: "", internalType: "uint256", type: "uint256" },
|
|
4503
|
-
{ name: "", internalType: "uint256", type: "uint256" },
|
|
4504
|
-
{ name: "", internalType: "bytes", type: "bytes" }
|
|
4728
|
+
{ name: "from", internalType: "address", type: "address" },
|
|
4729
|
+
{ name: "id", internalType: "uint256", type: "uint256" },
|
|
4730
|
+
{ name: "value", internalType: "uint256", type: "uint256" },
|
|
4731
|
+
{ name: "data", internalType: "bytes", type: "bytes" }
|
|
4505
4732
|
],
|
|
4506
4733
|
name: "onERC1155Received",
|
|
4507
4734
|
outputs: [{ name: "", internalType: "bytes4", type: "bytes4" }]
|
|
@@ -4618,6 +4845,25 @@ var zoraMintsManagerImplABI = [
|
|
|
4618
4845
|
],
|
|
4619
4846
|
name: "Collected"
|
|
4620
4847
|
},
|
|
4848
|
+
{
|
|
4849
|
+
type: "event",
|
|
4850
|
+
anonymous: false,
|
|
4851
|
+
inputs: [
|
|
4852
|
+
{
|
|
4853
|
+
name: "tokenAddress",
|
|
4854
|
+
internalType: "address",
|
|
4855
|
+
type: "address",
|
|
4856
|
+
indexed: false
|
|
4857
|
+
},
|
|
4858
|
+
{
|
|
4859
|
+
name: "tokenId",
|
|
4860
|
+
internalType: "uint256",
|
|
4861
|
+
type: "uint256",
|
|
4862
|
+
indexed: false
|
|
4863
|
+
}
|
|
4864
|
+
],
|
|
4865
|
+
name: "DefaultMintableTokenSet"
|
|
4866
|
+
},
|
|
4621
4867
|
{
|
|
4622
4868
|
type: "event",
|
|
4623
4869
|
anonymous: false,
|
|
@@ -4793,6 +5039,8 @@ var zoraMintsManagerImplABI = [
|
|
|
4793
5039
|
],
|
|
4794
5040
|
name: "Create2InsufficientBalance"
|
|
4795
5041
|
},
|
|
5042
|
+
{ type: "error", inputs: [], name: "DefaultOwnerCannotBeZero" },
|
|
5043
|
+
{ type: "error", inputs: [], name: "ERC1155BatchReceivedCallFailed" },
|
|
4796
5044
|
{ type: "error", inputs: [], name: "ERC1155_MINT_TO_ZERO_ADDRESS" },
|
|
4797
5045
|
{
|
|
4798
5046
|
type: "error",
|
|
@@ -4835,6 +5083,7 @@ var zoraMintsManagerImplABI = [
|
|
|
4835
5083
|
name: "InvalidMerkleProof"
|
|
4836
5084
|
},
|
|
4837
5085
|
{ type: "error", inputs: [], name: "InvalidMintSchedule" },
|
|
5086
|
+
{ type: "error", inputs: [], name: "InvalidOwnerForAssociatedZoraMints" },
|
|
4838
5087
|
{ type: "error", inputs: [], name: "InvalidPremintVersion" },
|
|
4839
5088
|
{ type: "error", inputs: [], name: "InvalidRecipient" },
|
|
4840
5089
|
{ type: "error", inputs: [], name: "InvalidSignature" },
|
|
@@ -4855,9 +5104,17 @@ var zoraMintsManagerImplABI = [
|
|
|
4855
5104
|
{ type: "error", inputs: [], name: "MinterContractAlreadyExists" },
|
|
4856
5105
|
{ type: "error", inputs: [], name: "MinterContractDoesNotExist" },
|
|
4857
5106
|
{ type: "error", inputs: [], name: "NewOwnerNeedsToBeAdmin" },
|
|
5107
|
+
{ type: "error", inputs: [], name: "NoTokensTransferred" },
|
|
4858
5108
|
{ type: "error", inputs: [], name: "NoUriForNonexistentToken" },
|
|
4859
5109
|
{ type: "error", inputs: [], name: "NonEthRedemption" },
|
|
5110
|
+
{
|
|
5111
|
+
type: "error",
|
|
5112
|
+
inputs: [{ name: "handler", internalType: "address", type: "address" }],
|
|
5113
|
+
name: "NotARedeemHandler"
|
|
5114
|
+
},
|
|
4860
5115
|
{ type: "error", inputs: [], name: "NotInitializing" },
|
|
5116
|
+
{ type: "error", inputs: [], name: "NotSelfCall" },
|
|
5117
|
+
{ type: "error", inputs: [], name: "NotZoraMints1155" },
|
|
4861
5118
|
{
|
|
4862
5119
|
type: "error",
|
|
4863
5120
|
inputs: [{ name: "owner", internalType: "address", type: "address" }],
|
|
@@ -4869,6 +5126,7 @@ var zoraMintsManagerImplABI = [
|
|
|
4869
5126
|
name: "OwnableUnauthorizedAccount"
|
|
4870
5127
|
},
|
|
4871
5128
|
{ type: "error", inputs: [], name: "PremintDeleted" },
|
|
5129
|
+
{ type: "error", inputs: [], name: "PremintExecutorCannotBeZero" },
|
|
4872
5130
|
{
|
|
4873
5131
|
type: "error",
|
|
4874
5132
|
inputs: [
|
|
@@ -4878,6 +5136,7 @@ var zoraMintsManagerImplABI = [
|
|
|
4878
5136
|
],
|
|
4879
5137
|
name: "ProtocolRewardsWithdrawFailed"
|
|
4880
5138
|
},
|
|
5139
|
+
{ type: "error", inputs: [], name: "ReentrancyGuardReentrantCall" },
|
|
4881
5140
|
{ type: "error", inputs: [], name: "Renderer_NotValidRendererContract" },
|
|
4882
5141
|
{ type: "error", inputs: [], name: "SaleEnded" },
|
|
4883
5142
|
{ type: "error", inputs: [], name: "SaleHasNotStarted" },
|
|
@@ -4917,6 +5176,11 @@ var zoraMintsManagerImplABI = [
|
|
|
4917
5176
|
inputs: [{ name: "slot", internalType: "bytes32", type: "bytes32" }],
|
|
4918
5177
|
name: "UUPSUnsupportedProxiableUUID"
|
|
4919
5178
|
},
|
|
5179
|
+
{
|
|
5180
|
+
type: "error",
|
|
5181
|
+
inputs: [{ name: "selector", internalType: "bytes4", type: "bytes4" }],
|
|
5182
|
+
name: "UnknownUserAction"
|
|
5183
|
+
},
|
|
4920
5184
|
{
|
|
4921
5185
|
type: "error",
|
|
4922
5186
|
inputs: [
|
|
@@ -4952,7 +5216,7 @@ var zoraMintsManagerImplABI = [
|
|
|
4952
5216
|
{ type: "error", inputs: [], name: "premintSignerContractNotAContract" }
|
|
4953
5217
|
];
|
|
4954
5218
|
var zoraMintsManagerImplAddress = {
|
|
4955
|
-
999999999: "
|
|
5219
|
+
999999999: "0x7777777dB66f897FDC5e6f01dB79C4e56dC817D7"
|
|
4956
5220
|
};
|
|
4957
5221
|
var zoraMintsManagerImplConfig = {
|
|
4958
5222
|
address: zoraMintsManagerImplAddress,
|
|
@@ -4966,213 +5230,213 @@ __export(__exports, {
|
|
|
4966
5230
|
chainConfigs: () => chainConfigs
|
|
4967
5231
|
});
|
|
4968
5232
|
var chainConfigs = {
|
|
4969
|
-
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
},
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
4977
|
-
|
|
4978
|
-
},
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
},
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
},
|
|
4989
|
-
|
|
4990
|
-
|
|
4991
|
-
|
|
4992
|
-
|
|
4993
|
-
},
|
|
4994
|
-
|
|
4995
|
-
|
|
4996
|
-
|
|
4997
|
-
|
|
4998
|
-
},
|
|
4999
|
-
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
-
|
|
5003
|
-
},
|
|
5004
|
-
|
|
5005
|
-
|
|
5006
|
-
|
|
5007
|
-
|
|
5008
|
-
},
|
|
5009
|
-
|
|
5010
|
-
|
|
5011
|
-
|
|
5012
|
-
|
|
5013
|
-
},
|
|
5014
|
-
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
},
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
|
|
5022
|
-
|
|
5233
|
+
1: {
|
|
5234
|
+
FACTORY_OWNER: "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
|
|
5235
|
+
MINT_FEE_RECIPIENT: "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0",
|
|
5236
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
5237
|
+
},
|
|
5238
|
+
10: {
|
|
5239
|
+
FACTORY_OWNER: "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
|
|
5240
|
+
MINT_FEE_RECIPIENT: "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c",
|
|
5241
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
5242
|
+
},
|
|
5243
|
+
999: {
|
|
5244
|
+
FACTORY_OWNER: "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
|
|
5245
|
+
MINT_FEE_RECIPIENT: "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
|
|
5246
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
5247
|
+
},
|
|
5248
|
+
8453: {
|
|
5249
|
+
FACTORY_OWNER: "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
|
|
5250
|
+
MINT_FEE_RECIPIENT: "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6",
|
|
5251
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
5252
|
+
},
|
|
5253
|
+
42161: {
|
|
5254
|
+
FACTORY_OWNER: "0xF7DafC329C93D84267c0E7B146C0bD68807f6A03",
|
|
5255
|
+
MINT_FEE_RECIPIENT: "0x10Fb02A68C3EA8bD439A6f515dcE07CC049f5c94",
|
|
5256
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
5257
|
+
},
|
|
5258
|
+
81457: {
|
|
5259
|
+
FACTORY_OWNER: "0x5b297B1b87f8De28C9fA7AFe183Db9F9e6295523",
|
|
5260
|
+
MINT_FEE_RECIPIENT: "0x72E6394056f9152D3a41e5A25De383c191D16134",
|
|
5261
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
5262
|
+
},
|
|
5263
|
+
421614: {
|
|
5264
|
+
FACTORY_OWNER: "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
|
|
5265
|
+
MINT_FEE_RECIPIENT: "0x256537b56007b32BabEB44E868EC8AA5cBF03D30",
|
|
5266
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
5267
|
+
},
|
|
5268
|
+
7777777: {
|
|
5269
|
+
FACTORY_OWNER: "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
|
|
5270
|
+
MINT_FEE_RECIPIENT: "0xEcfc2ee50409E459c554a2b0376F882Ce916D853",
|
|
5271
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
5272
|
+
},
|
|
5273
|
+
11155111: {
|
|
5274
|
+
FACTORY_OWNER: "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
|
|
5275
|
+
MINT_FEE_RECIPIENT: "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
|
|
5276
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
5277
|
+
},
|
|
5278
|
+
168587773: {
|
|
5279
|
+
FACTORY_OWNER: "0x8cF22F26d528B09b3cc54b7ff956630Bf741b773",
|
|
5280
|
+
MINT_FEE_RECIPIENT: "0x8cF22F26d528B09b3cc54b7ff956630Bf741b773",
|
|
5281
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
5282
|
+
},
|
|
5283
|
+
999999999: {
|
|
5284
|
+
FACTORY_OWNER: "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
|
|
5285
|
+
MINT_FEE_RECIPIENT: "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
|
|
5286
|
+
PROTOCOL_REWARDS: "0x7777777F279eba3d3Ad8F4E708545291A6fDBA8B"
|
|
5023
5287
|
}
|
|
5024
5288
|
};
|
|
5025
5289
|
var addresses = {
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
|
|
5029
|
-
|
|
5030
|
-
|
|
5031
|
-
|
|
5032
|
-
|
|
5033
|
-
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
|
|
5037
|
-
|
|
5038
|
-
|
|
5039
|
-
},
|
|
5040
|
-
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
|
-
|
|
5044
|
-
|
|
5045
|
-
|
|
5046
|
-
|
|
5047
|
-
|
|
5048
|
-
|
|
5049
|
-
|
|
5050
|
-
|
|
5051
|
-
|
|
5052
|
-
|
|
5053
|
-
},
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
|
|
5058
|
-
|
|
5059
|
-
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
|
|
5065
|
-
|
|
5066
|
-
},
|
|
5067
|
-
|
|
5068
|
-
|
|
5069
|
-
|
|
5070
|
-
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5076
|
-
|
|
5077
|
-
|
|
5078
|
-
|
|
5079
|
-
|
|
5080
|
-
},
|
|
5081
|
-
|
|
5082
|
-
|
|
5083
|
-
|
|
5084
|
-
|
|
5085
|
-
|
|
5086
|
-
|
|
5087
|
-
|
|
5088
|
-
|
|
5089
|
-
|
|
5090
|
-
|
|
5091
|
-
|
|
5092
|
-
|
|
5093
|
-
|
|
5094
|
-
},
|
|
5095
|
-
|
|
5096
|
-
|
|
5097
|
-
|
|
5098
|
-
|
|
5099
|
-
|
|
5100
|
-
|
|
5101
|
-
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
|
|
5105
|
-
|
|
5106
|
-
|
|
5107
|
-
|
|
5108
|
-
},
|
|
5109
|
-
|
|
5110
|
-
|
|
5111
|
-
|
|
5112
|
-
|
|
5113
|
-
|
|
5114
|
-
|
|
5115
|
-
|
|
5116
|
-
|
|
5117
|
-
|
|
5118
|
-
|
|
5119
|
-
|
|
5120
|
-
|
|
5121
|
-
|
|
5122
|
-
},
|
|
5123
|
-
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
|
|
5128
|
-
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
},
|
|
5137
|
-
|
|
5138
|
-
|
|
5139
|
-
|
|
5140
|
-
|
|
5141
|
-
|
|
5142
|
-
|
|
5143
|
-
|
|
5144
|
-
|
|
5145
|
-
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
|
-
|
|
5149
|
-
|
|
5150
|
-
},
|
|
5151
|
-
|
|
5152
|
-
|
|
5153
|
-
|
|
5154
|
-
|
|
5155
|
-
|
|
5156
|
-
|
|
5157
|
-
|
|
5158
|
-
|
|
5159
|
-
|
|
5160
|
-
|
|
5161
|
-
|
|
5162
|
-
|
|
5163
|
-
},
|
|
5164
|
-
|
|
5165
|
-
|
|
5166
|
-
|
|
5167
|
-
|
|
5168
|
-
|
|
5169
|
-
|
|
5170
|
-
|
|
5171
|
-
|
|
5172
|
-
|
|
5173
|
-
|
|
5174
|
-
|
|
5175
|
-
|
|
5290
|
+
1: {
|
|
5291
|
+
CONTRACT_1155_IMPL: "0x32006e298C19818CD5e8000E26439691f0ac2128",
|
|
5292
|
+
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
5293
|
+
FACTORY_IMPL: "0xD662FB0fB00261C039441EF49Dbab154d7c533bD",
|
|
5294
|
+
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
5295
|
+
FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
5296
|
+
MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
5297
|
+
PREMINTER_IMPL: "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
|
|
5298
|
+
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
5299
|
+
REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
|
|
5300
|
+
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
5301
|
+
ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
|
|
5302
|
+
timestamp: 1706664239
|
|
5303
|
+
},
|
|
5304
|
+
10: {
|
|
5305
|
+
CONTRACT_1155_IMPL: "0xECfbCf718E17B6e76A675dDB936a9249C69DD2aA",
|
|
5306
|
+
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
5307
|
+
FACTORY_IMPL: "0x32006e298C19818CD5e8000E26439691f0ac2128",
|
|
5308
|
+
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
5309
|
+
FIXED_PRICE_SALE_STRATEGY: "0x3678862f04290E565cCA2EF163BAeb92Bb76790C",
|
|
5310
|
+
MERKLE_MINT_SALE_STRATEGY: "0x899ce31dF6C6Af81203AcAaD285bF539234eF4b8",
|
|
5311
|
+
PREMINTER_IMPL: "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
|
|
5312
|
+
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
5313
|
+
REDEEM_MINTER_FACTORY: "0x1B28A04b7eB7b93f920ddF2021aa3fAE065395f2",
|
|
5314
|
+
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
5315
|
+
ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
|
|
5316
|
+
timestamp: 1706664035
|
|
5317
|
+
},
|
|
5318
|
+
999: {
|
|
5319
|
+
CONTRACT_1155_IMPL: "0x2022AdEF470DA3543a19fac8c9be80618112704D",
|
|
5320
|
+
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
5321
|
+
FACTORY_IMPL: "0x4b0365Ec68C2D92Af2Fa56f120095F0859142Eff",
|
|
5322
|
+
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
5323
|
+
FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
5324
|
+
MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
5325
|
+
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
5326
|
+
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
5327
|
+
REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
|
|
5328
|
+
UPGRADE_GATE: "0x0000000000000000000000000000000000000000",
|
|
5329
|
+
timestamp: 1704399834
|
|
5330
|
+
},
|
|
5331
|
+
8453: {
|
|
5332
|
+
CONTRACT_1155_IMPL: "0xAF5A4F6F6640734d7D000321Bb27De40D4Ae91f6",
|
|
5333
|
+
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
5334
|
+
FACTORY_IMPL: "0x7B59c0378F540c0356A5DAEF7574255A7C74EC76",
|
|
5335
|
+
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
5336
|
+
FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
5337
|
+
MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
5338
|
+
PREMINTER_IMPL: "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
|
|
5339
|
+
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
5340
|
+
REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
|
|
5341
|
+
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
5342
|
+
ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
|
|
5343
|
+
timestamp: 1706663976
|
|
5344
|
+
},
|
|
5345
|
+
42161: {
|
|
5346
|
+
CONTRACT_1155_IMPL: "0x97eb05B8db496B12244BCcf17CF377d00a99b67a",
|
|
5347
|
+
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
5348
|
+
FACTORY_IMPL: "0x48d8db63724444C6270749fEe80bBDB6CF33677f",
|
|
5349
|
+
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
5350
|
+
FIXED_PRICE_SALE_STRATEGY: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
|
|
5351
|
+
MERKLE_MINT_SALE_STRATEGY: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
|
|
5352
|
+
PREMINTER_IMPL: "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
|
|
5353
|
+
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
5354
|
+
REDEEM_MINTER_FACTORY: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
|
|
5355
|
+
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
5356
|
+
ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
|
|
5357
|
+
timestamp: 1706664653
|
|
5358
|
+
},
|
|
5359
|
+
81457: {
|
|
5360
|
+
CONTRACT_1155_IMPL: "0x97eb05B8db496B12244BCcf17CF377d00a99b67a",
|
|
5361
|
+
CONTRACT_1155_IMPL_VERSION: "2.7.1",
|
|
5362
|
+
FACTORY_IMPL: "0x48d8db63724444C6270749fEe80bBDB6CF33677f",
|
|
5363
|
+
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
5364
|
+
FIXED_PRICE_SALE_STRATEGY: "0x3EB144aee170BF62FdA1536e38aF51f08e34A5D0",
|
|
5365
|
+
MERKLE_MINT_SALE_STRATEGY: "0xB9C997FcC46a27331CC986cc2416ee99C1d506c3",
|
|
5366
|
+
PREMINTER_IMPL: "0xe3150ab94e3730D4B157ffD31Ad042323E122b4C",
|
|
5367
|
+
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
5368
|
+
REDEEM_MINTER_FACTORY: "0x7A0dE1B1f5420Df5D946878fBe2cF109011BE614",
|
|
5369
|
+
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
5370
|
+
ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
|
|
5371
|
+
timestamp: 1709235955
|
|
5372
|
+
},
|
|
5373
|
+
421614: {
|
|
5374
|
+
CONTRACT_1155_IMPL: "0xc288fe9B145fC31D9aFBa771d0FeB986F6eb49e3",
|
|
5375
|
+
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
5376
|
+
FACTORY_IMPL: "0x314E552b55DFbDfD4d76623E1D45E5056723998B",
|
|
5377
|
+
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
5378
|
+
FIXED_PRICE_SALE_STRATEGY: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
|
|
5379
|
+
MERKLE_MINT_SALE_STRATEGY: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
|
|
5380
|
+
PREMINTER_IMPL: "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
|
|
5381
|
+
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
5382
|
+
REDEEM_MINTER_FACTORY: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
|
|
5383
|
+
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
5384
|
+
ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
|
|
5385
|
+
timestamp: 1706661669
|
|
5386
|
+
},
|
|
5387
|
+
7777777: {
|
|
5388
|
+
CONTRACT_1155_IMPL: "0x57f412Ea90b59ce4023AFDE95C251E3c747EB7F8",
|
|
5389
|
+
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
5390
|
+
FACTORY_IMPL: "0xc6bf69986859f0dC0b77f2cA6AD86F5b294c0443",
|
|
5391
|
+
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
5392
|
+
FIXED_PRICE_SALE_STRATEGY: "0x04E2516A2c207E84a1839755675dfd8eF6302F0a",
|
|
5393
|
+
MERKLE_MINT_SALE_STRATEGY: "0xf48172CA3B6068B20eE4917Eb27b5472f1f272C7",
|
|
5394
|
+
PREMINTER_IMPL: "0x6f4f0c7748050d178b50cB000c94d54ea54A82aA",
|
|
5395
|
+
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
5396
|
+
REDEEM_MINTER_FACTORY: "0x78964965cF77850224513a367f899435C5B69174",
|
|
5397
|
+
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
5398
|
+
ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
|
|
5399
|
+
timestamp: 1706663694
|
|
5400
|
+
},
|
|
5401
|
+
11155111: {
|
|
5402
|
+
CONTRACT_1155_IMPL: "0x437A762fc2a8f898Aa7a2575Be21c41753DC4797",
|
|
5403
|
+
CONTRACT_1155_IMPL_VERSION: "2.7.0",
|
|
5404
|
+
FACTORY_IMPL: "0xF82286760a953D2Bad7D6F2F0da458Ac20f955D3",
|
|
5405
|
+
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
5406
|
+
FIXED_PRICE_SALE_STRATEGY: "0x1Cd1C1f3b8B779B50Db23155F2Cb244FCcA06B21",
|
|
5407
|
+
MERKLE_MINT_SALE_STRATEGY: "0xe770E6f19aecF8ef3145A50087999b5556aB3610",
|
|
5408
|
+
PREMINTER_IMPL: "0x795Efc066f89DFB03048dDd0598F2D8521c99Df6",
|
|
5409
|
+
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
5410
|
+
REDEEM_MINTER_FACTORY: "0x69bB4A24EBD8b1B87AF4538E0Ca3075b7E398c3D",
|
|
5411
|
+
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
5412
|
+
ERC20_MINTER: "0x777777E8850d8D6d98De2B5f64fae401F96eFF31",
|
|
5413
|
+
timestamp: 1704336497
|
|
5414
|
+
},
|
|
5415
|
+
168587773: {
|
|
5416
|
+
CONTRACT_1155_IMPL: "0x437A762fc2a8f898Aa7a2575Be21c41753DC4797",
|
|
5417
|
+
CONTRACT_1155_IMPL_VERSION: "2.7.1",
|
|
5418
|
+
FACTORY_IMPL: "0xF82286760a953D2Bad7D6F2F0da458Ac20f955D3",
|
|
5419
|
+
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
5420
|
+
FIXED_PRICE_SALE_STRATEGY: "0x3EB144aee170BF62FdA1536e38aF51f08e34A5D0",
|
|
5421
|
+
MERKLE_MINT_SALE_STRATEGY: "0xB9C997FcC46a27331CC986cc2416ee99C1d506c3",
|
|
5422
|
+
PREMINTER_IMPL: "0xe3150ab94e3730D4B157ffD31Ad042323E122b4C",
|
|
5423
|
+
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
5424
|
+
REDEEM_MINTER_FACTORY: "0x7A0dE1B1f5420Df5D946878fBe2cF109011BE614",
|
|
5425
|
+
UPGRADE_GATE: "0xbC50029836A59A4E5e1Bb8988272F46ebA0F9900",
|
|
5426
|
+
timestamp: 1709234007
|
|
5427
|
+
},
|
|
5428
|
+
999999999: {
|
|
5429
|
+
CONTRACT_1155_IMPL: "0x7A4149d3696a138bF97093391CDaAc9259783Dda",
|
|
5430
|
+
CONTRACT_1155_IMPL_VERSION: "2.9.0-DEV.0",
|
|
5431
|
+
FACTORY_IMPL: "0xD93c769b61B3B4b0782a936D6040FFAFB7609f02",
|
|
5432
|
+
FACTORY_PROXY: "0x777777C338d93e2C7adf08D102d45CA7CC4Ed021",
|
|
5433
|
+
FIXED_PRICE_SALE_STRATEGY: "0x6d28164C3CE04A190D5F9f0f8881fc807EAD975A",
|
|
5434
|
+
MERKLE_MINT_SALE_STRATEGY: "0x5e5fD4b758076BAD940db0284b711A67E8a3B88c",
|
|
5435
|
+
PREMINTER_IMPL: "0x1840606A43AC211Ffd548BE727563D863bfCF707",
|
|
5436
|
+
PREMINTER_PROXY: "0x7777773606e7e46C8Ba8B98C08f5cD218e31d340",
|
|
5437
|
+
REDEEM_MINTER_FACTORY: "0x25cFb6dd9cDE8425e781d6718a29Ccbca3F038d6",
|
|
5438
|
+
UPGRADE_GATE: "0x0000000000000000000000000000000000000000",
|
|
5439
|
+
timestamp: 1712334202
|
|
5176
5440
|
}
|
|
5177
5441
|
};
|
|
5178
5442
|
|
|
@@ -5183,53 +5447,58 @@ __export(mints_exports, {
|
|
|
5183
5447
|
chainConfigs: () => chainConfigs2
|
|
5184
5448
|
});
|
|
5185
5449
|
var chainConfigs2 = {
|
|
5186
|
-
|
|
5187
|
-
|
|
5188
|
-
|
|
5450
|
+
1: {
|
|
5451
|
+
PROXY_ADMIN: "0xDB392f4391462d60B8B4413ef72018Ab595Af9D0",
|
|
5452
|
+
MINTS_OWNER: "0xd1d1D4e36117aB794ec5d4c78cBD3a8904E691D0"
|
|
5189
5453
|
},
|
|
5190
|
-
|
|
5191
|
-
|
|
5192
|
-
|
|
5454
|
+
10: {
|
|
5455
|
+
PROXY_ADMIN: "0x4c7f7b6067fac9a737ecf2ca1a733fc85dd65a2b",
|
|
5456
|
+
MINTS_OWNER: "0x7A810DCd0f8d83B20212326813Db6EF7E9FD030c"
|
|
5193
5457
|
},
|
|
5194
|
-
|
|
5195
|
-
|
|
5196
|
-
|
|
5458
|
+
420: {
|
|
5459
|
+
PROXY_ADMIN: "0xbb45052B2260707655Dfd916a416264f5981192c",
|
|
5460
|
+
MINTS_OWNER: "0x5dEe21327CD7CD6725C2578DA1c3E5bb2D2D34b2"
|
|
5197
5461
|
},
|
|
5198
|
-
|
|
5199
|
-
|
|
5200
|
-
|
|
5462
|
+
999: {
|
|
5463
|
+
PROXY_ADMIN: "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252",
|
|
5464
|
+
MINTS_OWNER: "0xE84DBB2B25F761751231a9D0DAfbdD4dC3aa8252"
|
|
5201
5465
|
},
|
|
5202
|
-
|
|
5203
|
-
|
|
5204
|
-
|
|
5466
|
+
8453: {
|
|
5467
|
+
PROXY_ADMIN: "0x004d6611884B4A661749B64b2ADc78505c3e1AB3",
|
|
5468
|
+
MINTS_OWNER: "0x7bf90111Ad7C22bec9E9dFf8A01A44713CC1b1B6"
|
|
5205
5469
|
},
|
|
5206
|
-
|
|
5207
|
-
|
|
5208
|
-
|
|
5470
|
+
84531: {
|
|
5471
|
+
PROXY_ADMIN: "0x02539E813cA450C2c7334e885423f4A899a063Fe",
|
|
5472
|
+
MINTS_OWNER: "0x02539E813cA450C2c7334e885423f4A899a063Fe"
|
|
5209
5473
|
},
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
|
|
5474
|
+
7777777: {
|
|
5475
|
+
PROXY_ADMIN: "0xdEA20c96253dc2d64897D2b8d27A8d935dE74955",
|
|
5476
|
+
MINTS_OWNER: "0xEcfc2ee50409E459c554a2b0376F882Ce916D853"
|
|
5213
5477
|
},
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5478
|
+
11155111: {
|
|
5479
|
+
PROXY_ADMIN: "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D",
|
|
5480
|
+
MINTS_OWNER: "0xCE9F2e8EaFa11637F8A1CB60AE8AaC601Ae30f2D"
|
|
5217
5481
|
},
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
|
|
5482
|
+
999999999: {
|
|
5483
|
+
PROXY_ADMIN: "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E",
|
|
5484
|
+
MINTS_OWNER: "0xdae22ce69Afcb7f4bc37D32E267645722949DE0E"
|
|
5221
5485
|
}
|
|
5222
5486
|
};
|
|
5223
5487
|
var addresses2 = {
|
|
5224
|
-
|
|
5225
|
-
|
|
5226
|
-
|
|
5488
|
+
999999999: {
|
|
5489
|
+
MINTS_ETH_UNWRAPPER_AND_CALLER: "0x98d1B7E6B9d11271124316593889BCF07038bE78",
|
|
5490
|
+
MINTS_MANAGER_IMPL: "0x7f0Ec2B57e9c0FCc45629080b3E772118e7248aE",
|
|
5491
|
+
MINTS_MANAGER_IMPL_VERSION: "0.1.0-DEV.8"
|
|
5227
5492
|
}
|
|
5228
5493
|
};
|
|
5229
5494
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5230
5495
|
0 && (module.exports = {
|
|
5231
5496
|
contracts1155,
|
|
5497
|
+
iUnwrapAndForwardActionABI,
|
|
5232
5498
|
mints,
|
|
5499
|
+
mintsEthUnwrapperAndCallerABI,
|
|
5500
|
+
mintsEthUnwrapperAndCallerAddress,
|
|
5501
|
+
mintsEthUnwrapperAndCallerConfig,
|
|
5233
5502
|
zoraCreator1155FactoryImplABI,
|
|
5234
5503
|
zoraCreator1155FactoryImplAddress,
|
|
5235
5504
|
zoraCreator1155FactoryImplConfig,
|