@tradeport/sui-trading-sdk 0.1.76 → 0.1.78

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tradeport/sui-trading-sdk",
3
3
  "license": "MIT",
4
- "version": "0.1.76",
4
+ "version": "0.1.78",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
@@ -299,7 +299,6 @@ export async function addTradePortAcceptCollectionBidTxHandler(txData: AcceptCol
299
299
  kioskTx: txData?.kioskTx,
300
300
  kioskOwner: txData?.seller,
301
301
  kiosk: txData?.sellerKiosk,
302
- shouldAssertNftInSharedKiosk: true,
303
302
  async runCommands(kioskTx) {
304
303
  kioskTx.place({
305
304
  item: txData?.nftTokenId,
@@ -188,7 +188,6 @@ export async function addTradePortListTxHandler(txData: ListNftTx) {
188
188
  kioskClient: txData?.kioskClient,
189
189
  kioskOwner: txData?.seller,
190
190
  kiosk: txData?.sellerKiosk,
191
- shouldAssertNftInSharedKiosk: true,
192
191
  async runCommands(kioskTx) {
193
192
  kioskTx.place({
194
193
  item: txData?.nftTokenId,
@@ -46,6 +46,11 @@ export async function migrateNftsFromUnsharedToSharedKiosks(
46
46
  continue;
47
47
  }
48
48
 
49
+ if (nft?.collection_id === '67ded9ed-4dcc-4d15-9e6f-04dded46f419') {
50
+ // Novagen, skip until we know what to do with them
51
+ continue;
52
+ }
53
+
49
54
  const nftType = getNftTypeFromNft(nft);
50
55
  const nftTokenId = nft?.token_id;
51
56