@tradeport/sui-trading-sdk 0.4.13 → 0.4.14
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/dist/index.js +1 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/helpers/hasTransferPolicyRules.ts +2 -4
- package/src/tests/SuiWallet.ts +13 -7
package/dist/index.mjs
CHANGED
|
@@ -1293,10 +1293,7 @@ var hasPersonalKioskRule = (transferPolicies) => getNativeKioskTransferPolicies(
|
|
|
1293
1293
|
);
|
|
1294
1294
|
|
|
1295
1295
|
// src/helpers/hasTransferPolicyRules.ts
|
|
1296
|
-
var hasNativeKioskTransferPolicyRules = (transferPolicies) =>
|
|
1297
|
-
const nativeKioskTransferPolicies = getNativeKioskTransferPolicies(transferPolicies);
|
|
1298
|
-
return nativeKioskTransferPolicies?.some((policy) => policy?.rules?.length > 0);
|
|
1299
|
-
};
|
|
1296
|
+
var hasNativeKioskTransferPolicyRules = (transferPolicies) => getNativeKioskTransferPolicies(transferPolicies)?.length > 0;
|
|
1300
1297
|
|
|
1301
1298
|
// src/helpers/isSIngleBid.ts
|
|
1302
1299
|
var isSingleBid = (bidType) => {
|