@gearbox-protocol/sdk 3.0.0-vfour.367 → 3.0.0-vfour.368
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.
|
@@ -74,7 +74,7 @@ class PoolData_Legacy {
|
|
|
74
74
|
this.isPaused = payload.isPaused;
|
|
75
75
|
this.version = Number(payload.version);
|
|
76
76
|
this.poolQuotaKeeper = payload.poolQuotaKeeper.toLowerCase();
|
|
77
|
-
this.gauge = payload.gauge
|
|
77
|
+
this.gauge = payload.gauge?.toLowerCase();
|
|
78
78
|
this.name = payload.name;
|
|
79
79
|
this.symbol = payload.symbol;
|
|
80
80
|
this.marketConfigurator = payload.marketConfigurator.toLowerCase();
|
|
@@ -52,7 +52,7 @@ class PoolData_Legacy {
|
|
|
52
52
|
this.isPaused = payload.isPaused;
|
|
53
53
|
this.version = Number(payload.version);
|
|
54
54
|
this.poolQuotaKeeper = payload.poolQuotaKeeper.toLowerCase();
|
|
55
|
-
this.gauge = payload.gauge
|
|
55
|
+
this.gauge = payload.gauge?.toLowerCase();
|
|
56
56
|
this.name = payload.name;
|
|
57
57
|
this.symbol = payload.symbol;
|
|
58
58
|
this.marketConfigurator = payload.marketConfigurator.toLowerCase();
|
|
@@ -11,7 +11,7 @@ export declare class PoolData_Legacy {
|
|
|
11
11
|
readonly isPaused: boolean;
|
|
12
12
|
readonly version: number;
|
|
13
13
|
readonly poolQuotaKeeper: Address;
|
|
14
|
-
readonly gauge: Address;
|
|
14
|
+
readonly gauge: Address | undefined;
|
|
15
15
|
readonly name: string;
|
|
16
16
|
readonly symbol: string;
|
|
17
17
|
readonly marketConfigurator: Address;
|