@tradeport/sui-trading-sdk 0.1.77 → 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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @tradeport/sui-trading-sdk
2
2
 
3
+ ## 0.1.78
4
+
5
+ ### Patch Changes
6
+
7
+ - 8e23139: Filter out Novagen from migrating to shared kiosks
8
+
3
9
  ## 0.1.77
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -3992,6 +3992,9 @@ async function migrateNftsFromUnsharedToSharedKiosks({ walletAddress }, context)
3992
3992
  if (nft?.chain_state?.claimable_trade_id) {
3993
3993
  continue;
3994
3994
  }
3995
+ if (nft?.collection_id === "67ded9ed-4dcc-4d15-9e6f-04dded46f419") {
3996
+ continue;
3997
+ }
3995
3998
  const nftType = getNftTypeFromNft(nft);
3996
3999
  const nftTokenId = nft?.token_id;
3997
4000
  if (sharedOBKiosk) {