@tradeport/sui-trading-sdk 0.1.42 → 0.1.43
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/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/methods/claimNfts/claimNfts.ts +3 -0
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -3056,6 +3056,7 @@ var claimNfts = async ({ nftIds, walletAddress, tx: existingTx }, context, useOl
|
|
|
3056
3056
|
tx,
|
|
3057
3057
|
kioskOwner: txData?.claimer,
|
|
3058
3058
|
kiosk: txData?.sellerKiosk,
|
|
3059
|
+
shouldConvertToPersonalKiosk: true,
|
|
3059
3060
|
async runCommands(kioskTx) {
|
|
3060
3061
|
await addClaimAcceptedBidNftTx({ ...txData, kioskTx });
|
|
3061
3062
|
}
|
|
@@ -3088,6 +3089,7 @@ var claimNfts = async ({ nftIds, walletAddress, tx: existingTx }, context, useOl
|
|
|
3088
3089
|
kioskOwner: txData?.claimer,
|
|
3089
3090
|
kiosk: txData?.sellerKiosk,
|
|
3090
3091
|
kioskStrategy: "exclude",
|
|
3092
|
+
shouldConvertToPersonalKiosk: true,
|
|
3091
3093
|
async runCommands(kioskTx) {
|
|
3092
3094
|
await addClaimTransferredNftTx({ ...txData, kioskTx });
|
|
3093
3095
|
}
|
|
@@ -3098,6 +3100,7 @@ var claimNfts = async ({ nftIds, walletAddress, tx: existingTx }, context, useOl
|
|
|
3098
3100
|
kioskOwner: txData?.claimer,
|
|
3099
3101
|
kiosk: txData?.sellerKiosk,
|
|
3100
3102
|
kioskStrategy: "exclude",
|
|
3103
|
+
shouldConvertToPersonalKiosk: true,
|
|
3101
3104
|
async runCommands(kioskTx) {
|
|
3102
3105
|
await addClaimTransferredNftWithPurchaseCapTx({ ...txData, kioskTx });
|
|
3103
3106
|
}
|