@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/CHANGELOG.md +12 -0
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/methods/acceptCollectionBid/addAcceptCollectionBIdTxs.ts +0 -1
- package/src/methods/listNfts/addListTxs.ts +0 -1
- package/src/methods/migrateNftsFromUnsharedToSharedKiosks/migrateNftsFromUnsharedToSharedKiosks.ts +5 -0
package/package.json
CHANGED
|
@@ -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,
|
package/src/methods/migrateNftsFromUnsharedToSharedKiosks/migrateNftsFromUnsharedToSharedKiosks.ts
CHANGED
|
@@ -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
|
|