@zoralabs/protocol-deployments 0.0.7 → 0.0.9
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 +14 -14
- package/CHANGELOG.md +14 -0
- package/addresses/999.json +6 -6
- package/addresses/999999999.json +6 -6
- package/dist/index.cjs +19 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +19 -2
- package/dist/index.js.map +1 -1
- package/dist/package/wagmiGenerated.d.ts +40 -12
- package/dist/package/wagmiGenerated.d.ts.map +1 -1
- package/package/wagmiGenerated.ts +19 -2
- package/package.json +2 -1
- package/script/DeployProxiesToNewChain.s.sol +1 -1
- package/script/DeployTestContracts.s.sol +1 -1
- package/src/Zora1155PremintFixtures.sol +75 -0
- package/test/UpgradesTest.t.sol +25 -1
- package/test/ZoraCreator1155PremintExecutorForkTest.t.sol +133 -26
- package/tsconfig.json +1 -17
package/dist/index.js
CHANGED
|
@@ -2031,6 +2031,15 @@ var zoraCreator1155PremintExecutorImplABI = [
|
|
|
2031
2031
|
{ name: "recoveredSigner", internalType: "address", type: "address" }
|
|
2032
2032
|
]
|
|
2033
2033
|
},
|
|
2034
|
+
{
|
|
2035
|
+
stateMutability: "view",
|
|
2036
|
+
type: "function",
|
|
2037
|
+
inputs: [
|
|
2038
|
+
{ name: "collectionAddress", internalType: "address", type: "address" }
|
|
2039
|
+
],
|
|
2040
|
+
name: "mintFee",
|
|
2041
|
+
outputs: [{ name: "", internalType: "uint256", type: "uint256" }]
|
|
2042
|
+
},
|
|
2034
2043
|
{
|
|
2035
2044
|
stateMutability: "view",
|
|
2036
2045
|
type: "function",
|
|
@@ -2188,7 +2197,11 @@ var zoraCreator1155PremintExecutorImplABI = [
|
|
|
2188
2197
|
components: [
|
|
2189
2198
|
{ name: "mintRecipient", internalType: "address", type: "address" },
|
|
2190
2199
|
{ name: "mintComment", internalType: "string", type: "string" },
|
|
2191
|
-
{
|
|
2200
|
+
{
|
|
2201
|
+
name: "mintRewardsRecipients",
|
|
2202
|
+
internalType: "address[]",
|
|
2203
|
+
type: "address[]"
|
|
2204
|
+
}
|
|
2192
2205
|
]
|
|
2193
2206
|
}
|
|
2194
2207
|
],
|
|
@@ -2272,7 +2285,11 @@ var zoraCreator1155PremintExecutorImplABI = [
|
|
|
2272
2285
|
components: [
|
|
2273
2286
|
{ name: "mintRecipient", internalType: "address", type: "address" },
|
|
2274
2287
|
{ name: "mintComment", internalType: "string", type: "string" },
|
|
2275
|
-
{
|
|
2288
|
+
{
|
|
2289
|
+
name: "mintRewardsRecipients",
|
|
2290
|
+
internalType: "address[]",
|
|
2291
|
+
type: "address[]"
|
|
2292
|
+
}
|
|
2276
2293
|
]
|
|
2277
2294
|
}
|
|
2278
2295
|
],
|