@aboutcircles/sdk-pathfinder 0.1.3 → 0.1.5
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 +4 -0
- package/package.json +4 -4
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
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Pathfinding utilities for Circles SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
},
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@aboutcircles/sdk-rpc": "
|
|
33
|
-
"@aboutcircles/sdk-types": "
|
|
34
|
-
"@aboutcircles/sdk-utils": "
|
|
32
|
+
"@aboutcircles/sdk-rpc": "*",
|
|
33
|
+
"@aboutcircles/sdk-types": "*",
|
|
34
|
+
"@aboutcircles/sdk-utils": "*",
|
|
35
35
|
"viem": "^2.38.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|