@gearbox-protocol/sdk 3.0.0-next.115 → 3.0.0-next.116

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.
@@ -73,6 +73,7 @@ interface LiquidationPriceProps {
73
73
  }
74
74
  export declare class CreditAccountData {
75
75
  readonly isSuccessful: boolean;
76
+ readonly priceFeedsNeeded: string[];
76
77
  readonly addr: string;
77
78
  readonly borrower: string;
78
79
  readonly creditManager: string;
@@ -8,6 +8,7 @@ const price_1 = require("../utils/price");
8
8
  const MAX_UINT16 = 65535;
9
9
  class CreditAccountData {
10
10
  isSuccessful;
11
+ priceFeedsNeeded;
11
12
  addr;
12
13
  borrower;
13
14
  creditManager;
@@ -40,6 +41,7 @@ class CreditAccountData {
40
41
  quotedTokens = {};
41
42
  constructor(payload) {
42
43
  this.isSuccessful = payload.isSuccessful;
44
+ this.priceFeedsNeeded = payload.priceFeedsNeeded;
43
45
  this.addr = payload.addr.toLowerCase();
44
46
  this.borrower = payload.borrower.toLowerCase();
45
47
  this.creditManager = payload.creditManager.toLowerCase();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "3.0.0-next.115",
3
+ "version": "3.0.0-next.116",
4
4
  "description": "Gearbox SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",