@gearbox-protocol/sdk 3.0.0-next.75 → 3.0.0-next.76

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.
@@ -52,6 +52,7 @@ export declare class CreditManagerData {
52
52
  encodeUpdateQuotaV3(token: string, quotaChange: bigint, minQuota: bigint): MultiCall;
53
53
  encodeWithdrawCollateralV3(token: string, amount: bigint, to: string): MultiCall;
54
54
  static withdrawAllAndUnwrap_Convex(address: string, claim: boolean): MultiCall;
55
+ onDemandPriceUpdateV3(token: string, reserve: boolean, data: string): MultiCall;
55
56
  }
56
57
  export declare class ChartsCreditManagerData {
57
58
  readonly id: string;
@@ -206,6 +206,12 @@ class CreditManagerData {
206
206
  callData: types_1.IConvexV1BaseRewardPoolAdapter__factory.createInterface().encodeFunctionData("withdrawDiffAndUnwrap", [1, claim]),
207
207
  };
208
208
  }
209
+ onDemandPriceUpdateV3(token, reserve, data) {
210
+ return {
211
+ target: this.creditFacade,
212
+ callData: types_1.ICreditFacadeV3Multicall__factory.createInterface().encodeFunctionData("onDemandPriceUpdate", [token, reserve, data]),
213
+ };
214
+ }
209
215
  }
210
216
  exports.CreditManagerData = CreditManagerData;
211
217
  class ChartsCreditManagerData {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "3.0.0-next.75",
3
+ "version": "3.0.0-next.76",
4
4
  "description": "Gearbox SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",