@aboutcircles/sdk-pathfinder 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2645,6 +2645,10 @@ function normalizeFindPathParams(params) {
2645
2645
  IsWrapped: balance.isWrapped,
2646
2646
  IsStatic: balance.isStatic
2647
2647
  })),
2648
+ SimulatedTrusts: params.simulatedTrusts?.map((trust) => ({
2649
+ Truster: normalizeAddress(trust.truster),
2650
+ Trustee: normalizeAddress(trust.trustee)
2651
+ })),
2648
2652
  MaxTransfers: params.maxTransfers
2649
2653
  };
2650
2654
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aboutcircles/sdk-pathfinder",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Pathfinding utilities for Circles SDK",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",