@gearbox-protocol/sdk 3.0.0-next.97 → 3.0.0-next.98
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.
|
@@ -59,6 +59,8 @@ export declare class CreditManagerData {
|
|
|
59
59
|
export declare class ChartsCreditManagerData {
|
|
60
60
|
readonly address: string;
|
|
61
61
|
readonly underlyingToken: string;
|
|
62
|
+
readonly configurator: string;
|
|
63
|
+
readonly creditFacade: string;
|
|
62
64
|
readonly pool: string;
|
|
63
65
|
readonly version: number;
|
|
64
66
|
readonly name: string;
|
|
@@ -229,6 +229,8 @@ exports.CreditManagerData = CreditManagerData;
|
|
|
229
229
|
class ChartsCreditManagerData {
|
|
230
230
|
address;
|
|
231
231
|
underlyingToken;
|
|
232
|
+
configurator;
|
|
233
|
+
creditFacade;
|
|
232
234
|
pool;
|
|
233
235
|
version;
|
|
234
236
|
name;
|
|
@@ -269,6 +271,8 @@ class ChartsCreditManagerData {
|
|
|
269
271
|
constructor(payload) {
|
|
270
272
|
this.address = (payload.addr || "").toLowerCase();
|
|
271
273
|
this.underlyingToken = (payload.underlyingToken || "").toLowerCase();
|
|
274
|
+
this.configurator = (payload.configurator || "").toLowerCase();
|
|
275
|
+
this.creditFacade = (payload.creditFacade || "").toLowerCase();
|
|
272
276
|
this.pool = (payload.poolAddress || "").toLowerCase();
|
|
273
277
|
this.version = payload.version || 2;
|
|
274
278
|
this.name = payload.name || "";
|
|
@@ -14,6 +14,8 @@ export type CreditManagerDataPayload = ExcludeArrayProps<CreditManagerDataStruct
|
|
|
14
14
|
export interface ChartsCreditManagerPayload {
|
|
15
15
|
addr: string;
|
|
16
16
|
underlyingToken: string;
|
|
17
|
+
configurator: string;
|
|
18
|
+
creditFacade: string;
|
|
17
19
|
isWeth: boolean;
|
|
18
20
|
poolAddress: string;
|
|
19
21
|
name: string;
|