@tradeport/sui-trading-sdk 0.2.0 → 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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @tradeport/sui-trading-sdk
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 376afa8: Added user for migrateNftsFromUnsharedKiosks
8
+
3
9
  ## 0.2.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.d.mts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Transaction } from '@mysten/sui/transactions';
2
- import { KioskTransaction } from '@mysten/kiosk';
3
2
  import { GraphQLClient } from 'graphql-request';
3
+ import { KioskTransaction } from '@mysten/kiosk';
4
4
 
5
5
  type AcceptCollectionBid = {
6
6
  bidId: string;
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Transaction } from '@mysten/sui/transactions';
2
- import { KioskTransaction } from '@mysten/kiosk';
3
2
  import { GraphQLClient } from 'graphql-request';
3
+ import { KioskTransaction } from '@mysten/kiosk';
4
4
 
5
5
  type AcceptCollectionBid = {
6
6
  bidId: string;
package/dist/index.js CHANGED
@@ -6260,7 +6260,7 @@ async function withdrawProfitsFromKiosks({ walletAddress }, context) {
6260
6260
  // src/SuiTradingClient.ts
6261
6261
  var SuiTradingClient = class {
6262
6262
  constructor({ apiUser, apiKey, suiNodeUrl, graphQLClient }) {
6263
- this.allowedApiUsersForUnsharedKiosksMigration = ["tradeport.xyz"];
6263
+ this.allowedApiUsersForUnsharedKiosksMigration = ["tradeport.xyz", "mercato.xyz"];
6264
6264
  this.apiUser = apiUser;
6265
6265
  this.apiKey = apiKey;
6266
6266
  this.suiClient = createSuiClient_default(suiNodeUrl || (0, import_client2.getFullnodeUrl)("mainnet"));