@tradeport/sui-trading-sdk 0.1.19 → 0.1.20
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 +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/methods/exerciseLongLocks/exerciseLongLocks.ts +5 -2
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1883,7 +1883,10 @@ async function exerciseLongLocks({ walletAddress, transaction, locks }, context)
|
|
|
1883
1883
|
break;
|
|
1884
1884
|
}
|
|
1885
1885
|
case "collection": {
|
|
1886
|
-
await acceptCollectionBid(
|
|
1886
|
+
await acceptCollectionBid(
|
|
1887
|
+
{ bid, tx, nftId: lock.nft?.id, walletAddress, kioskTx },
|
|
1888
|
+
context
|
|
1889
|
+
);
|
|
1887
1890
|
break;
|
|
1888
1891
|
}
|
|
1889
1892
|
default: {
|