@tradeport/sui-trading-sdk 0.1.109 → 0.2.1
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 +7 -31
- package/dist/index.js +575 -682
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +575 -682
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -1
- package/src/SuiTradingClient.ts +1 -1
- package/src/apiClients/graphqlClient.ts +1 -1
- package/src/helpers/kiosk/kioskTxWrapper.ts +14 -12
- package/src/helpers/rpc/getObjectType.ts +1 -9
- package/src/helpers/track.ts +19 -24
- package/src/methods/acceptCollectionBid/addAcceptCollectionBIdTxs.ts +2 -13
- package/src/methods/acceptNftBids/acceptNftBids.ts +69 -76
- package/src/methods/acceptNftBids/addAcceptNftBidTxs.ts +1 -7
- package/src/methods/buyListings/addBuyListingTxs.ts +15 -17
- package/src/methods/buyListings/buyListings.ts +91 -89
- package/src/methods/claimNfts/claimNfts.ts +135 -145
- package/src/methods/listNfts/listNfts.ts +40 -47
- package/src/methods/placeCollectionBids/placeCollectionBids.ts +48 -51
- package/src/methods/placeNftBids/placeNftBids.ts +35 -42
- package/src/methods/removeNftBids/removeNftBids.ts +47 -46
- package/src/methods/transferNfts/transferNfts.ts +74 -70
- package/src/methods/unlistListings/unlistListings.ts +66 -73
- package/src/helpers/handleGetBidNonceTypeError.ts +0 -13
- package/src/helpers/handleGetListingNonceError.ts +0 -13
- package/src/helpers/isValidHexAddressFormat.ts +0 -32
- package/src/utils/removeLeadingZerosAfter0x.ts +0 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,52 +1,28 @@
|
|
|
1
1
|
# @tradeport/sui-trading-sdk
|
|
2
2
|
|
|
3
|
-
## 0.1
|
|
3
|
+
## 0.2.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 376afa8: Added user for migrateNftsFromUnsharedKiosks
|
|
8
8
|
|
|
9
|
-
## 0.
|
|
9
|
+
## 0.2.0
|
|
10
10
|
|
|
11
|
-
###
|
|
12
|
-
|
|
13
|
-
- 88ab94f: Added error handling for listing nonces that are not found, and refactored the deleted bid nonce error handling
|
|
14
|
-
|
|
15
|
-
## 0.1.107
|
|
16
|
-
|
|
17
|
-
### Patch Changes
|
|
18
|
-
|
|
19
|
-
- b6aeaa9: Fixed error handling message for deleted bid in one spot
|
|
20
|
-
|
|
21
|
-
## 0.1.106
|
|
22
|
-
|
|
23
|
-
### Patch Changes
|
|
24
|
-
|
|
25
|
-
- ccc8281: Added error handling for sui object fetch
|
|
26
|
-
- 33fb6c4: Fixed error handling for accepting deleted bids
|
|
27
|
-
|
|
28
|
-
## 0.1.105
|
|
29
|
-
|
|
30
|
-
### Patch Changes
|
|
31
|
-
|
|
32
|
-
- c6cc55a: Updated transfer nfts validation for recipient address
|
|
33
|
-
|
|
34
|
-
## 0.1.104
|
|
35
|
-
|
|
36
|
-
### Patch Changes
|
|
11
|
+
### Minor Changes
|
|
37
12
|
|
|
38
|
-
-
|
|
13
|
+
- 2c14d7d: Reverted parallel batching of txs because it doesnt work with Sui trying to access the same objects at same time
|
|
39
14
|
|
|
40
15
|
## 0.1.103
|
|
41
16
|
|
|
42
17
|
### Patch Changes
|
|
43
18
|
|
|
44
|
-
-
|
|
19
|
+
- 924b52c: Reverted parallel batching of txs because it doesnt work with Sui trying to access the same objects at same time
|
|
45
20
|
|
|
46
21
|
## 0.1.102
|
|
47
22
|
|
|
48
23
|
### Patch Changes
|
|
49
24
|
|
|
25
|
+
- 032ffe5: Reverted parallel batching of txs because it doesnt work with Sui trying to access the same objects at same time
|
|
50
26
|
- 03e03db: Disabled trading for 900 Delorean NFTs that were flagged
|
|
51
27
|
|
|
52
28
|
## 0.1.100
|