@tradeport/sui-trading-sdk 0.1.43 → 0.1.44

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.44
4
+
5
+ ### Patch Changes
6
+
7
+ - 4bf978b: Skip over resolving custom transfer policy rules
8
+
3
9
  ## 0.1.43
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -836,7 +836,8 @@ var resolveTransferPolicies = async ({
836
836
  });
837
837
  break;
838
838
  default:
839
- throw new Error(`No resolver for the following rule: ${rule}.`);
839
+ console.log(`No resolver for the following rule: ${rule}.`);
840
+ break;
840
841
  }
841
842
  }
842
843
  }