@zoralabs/protocol-sdk 0.5.8 → 0.5.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 +6 -6
- package/CHANGELOG.md +6 -0
- package/dist/create/1155-create-helper.d.ts +2 -1
- package/dist/create/1155-create-helper.d.ts.map +1 -1
- package/dist/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/create/1155-create-helper.test.ts +33 -0
- package/src/create/1155-create-helper.ts +3 -0
package/dist/index.js
CHANGED
|
@@ -1525,6 +1525,7 @@ function create1155CreatorClient({
|
|
|
1525
1525
|
maxSupply,
|
|
1526
1526
|
account,
|
|
1527
1527
|
royaltySettings,
|
|
1528
|
+
createReferral,
|
|
1528
1529
|
getAdditionalSetupActions
|
|
1529
1530
|
}) {
|
|
1530
1531
|
const { contractExists, contractAddress } = await getContractExists(
|
|
@@ -1553,7 +1554,8 @@ function create1155CreatorClient({
|
|
|
1553
1554
|
fixedPriceMinterAddress,
|
|
1554
1555
|
account,
|
|
1555
1556
|
mintToCreatorCount,
|
|
1556
|
-
royaltySettings
|
|
1557
|
+
royaltySettings,
|
|
1558
|
+
createReferral
|
|
1557
1559
|
});
|
|
1558
1560
|
if (getAdditionalSetupActions) {
|
|
1559
1561
|
tokenSetupActions = [
|