@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @tradeport/sui-trading-sdk
2
2
 
3
+ ## 0.1.20
4
+
5
+ ### Patch Changes
6
+
7
+ - 2dce1d0: Fixed exercising longs with collection bid
8
+
3
9
  ## 0.1.19
4
10
 
5
11
  ### Patch Changes
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({ bid, tx, nftId: lock.nft?.id, walletAddress }, context);
1886
+ await acceptCollectionBid(
1887
+ { bid, tx, nftId: lock.nft?.id, walletAddress, kioskTx },
1888
+ context
1889
+ );
1887
1890
  break;
1888
1891
  }
1889
1892
  default: {