@gearbox-protocol/sdk 3.0.0-vfour.55 → 3.0.0-vfour.56
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/cjs/sdk/index.cjs
CHANGED
|
@@ -22788,7 +22788,10 @@ var RouterV3Contract = class extends BaseContract {
|
|
|
22788
22788
|
const { pathOptions, expected, leftover, connectors } = this.getFindClosePathInput(ca, cm);
|
|
22789
22789
|
await this.#hooks.triggerHooks("foundPathOptions", {
|
|
22790
22790
|
creditAccount: ca.creditAccount,
|
|
22791
|
-
pathOptions
|
|
22791
|
+
pathOptions,
|
|
22792
|
+
expected,
|
|
22793
|
+
leftover,
|
|
22794
|
+
connectors
|
|
22792
22795
|
});
|
|
22793
22796
|
let results = [];
|
|
22794
22797
|
for (const po of pathOptions) {
|
package/dist/cjs/sdk/index.d.ts
CHANGED
|
@@ -24525,12 +24525,9 @@ type RouterHooks = {
|
|
|
24525
24525
|
/**
|
|
24526
24526
|
* Internal router event
|
|
24527
24527
|
*/
|
|
24528
|
-
foundPathOptions: [
|
|
24529
|
-
|
|
24530
|
-
|
|
24531
|
-
pathOptions: PathOptionSerie[];
|
|
24532
|
-
}
|
|
24533
|
-
];
|
|
24528
|
+
foundPathOptions: [{
|
|
24529
|
+
creditAccount: Address;
|
|
24530
|
+
} & FindClosePathInput];
|
|
24534
24531
|
/**
|
|
24535
24532
|
* Internal router event
|
|
24536
24533
|
*/
|
package/dist/esm/sdk/index.d.mts
CHANGED
|
@@ -24525,12 +24525,9 @@ type RouterHooks = {
|
|
|
24525
24525
|
/**
|
|
24526
24526
|
* Internal router event
|
|
24527
24527
|
*/
|
|
24528
|
-
foundPathOptions: [
|
|
24529
|
-
|
|
24530
|
-
|
|
24531
|
-
pathOptions: PathOptionSerie[];
|
|
24532
|
-
}
|
|
24533
|
-
];
|
|
24528
|
+
foundPathOptions: [{
|
|
24529
|
+
creditAccount: Address;
|
|
24530
|
+
} & FindClosePathInput];
|
|
24534
24531
|
/**
|
|
24535
24532
|
* Internal router event
|
|
24536
24533
|
*/
|
package/dist/esm/sdk/index.mjs
CHANGED
|
@@ -22786,7 +22786,10 @@ var RouterV3Contract = class extends BaseContract {
|
|
|
22786
22786
|
const { pathOptions, expected, leftover, connectors } = this.getFindClosePathInput(ca, cm);
|
|
22787
22787
|
await this.#hooks.triggerHooks("foundPathOptions", {
|
|
22788
22788
|
creditAccount: ca.creditAccount,
|
|
22789
|
-
pathOptions
|
|
22789
|
+
pathOptions,
|
|
22790
|
+
expected,
|
|
22791
|
+
leftover,
|
|
22792
|
+
connectors
|
|
22790
22793
|
});
|
|
22791
22794
|
let results = [];
|
|
22792
22795
|
for (const po of pathOptions) {
|