@gearbox-protocol/sdk 0.0.79 → 0.0.80
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 @@ declare type ConvexPoolParams = {
|
|
|
52
52
|
export declare type LidoParams = {
|
|
53
53
|
protocol: Protocols.Lido;
|
|
54
54
|
type: AdapterInterface.LIDO_V1;
|
|
55
|
+
oracle: Record<NetworkType, string>;
|
|
55
56
|
lpToken: "steCRV";
|
|
56
57
|
} & BaseContractParams;
|
|
57
58
|
export declare type ContractParams = UniswapV2Params | UniswapV3Params | CurveParams | CurveSteCRVPoolParams | YearnParams | ConvexParams | ConvexPoolParams | LidoParams;
|
|
@@ -229,10 +229,10 @@ exports.contractParams = {
|
|
|
229
229
|
name: "Lido STETH",
|
|
230
230
|
protocol: protocols_1.Protocols.Lido,
|
|
231
231
|
type: adapters_1.AdapterInterface.LIDO_V1,
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
232
|
+
oracle: {
|
|
233
|
+
Mainnet: "0x442af784A788A5bd6F42A01Ebe9F287a871243fb",
|
|
234
|
+
Kovan: ""
|
|
235
|
+
},
|
|
236
236
|
lpToken: "steCRV"
|
|
237
237
|
}
|
|
238
238
|
};
|
package/package.json
CHANGED
|
@@ -179,7 +179,7 @@ type ConvexPoolParams = {
|
|
|
179
179
|
export type LidoParams = {
|
|
180
180
|
protocol: Protocols.Lido;
|
|
181
181
|
type: AdapterInterface.LIDO_V1;
|
|
182
|
-
|
|
182
|
+
oracle: Record<NetworkType, string>;
|
|
183
183
|
lpToken: "steCRV";
|
|
184
184
|
} & BaseContractParams;
|
|
185
185
|
|
|
@@ -345,10 +345,10 @@ export const contractParams: Record<SupportedContract, ContractParams> = {
|
|
|
345
345
|
name: "Lido STETH",
|
|
346
346
|
protocol: Protocols.Lido,
|
|
347
347
|
type: AdapterInterface.LIDO_V1,
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
348
|
+
oracle: {
|
|
349
|
+
Mainnet: "0x442af784A788A5bd6F42A01Ebe9F287a871243fb",
|
|
350
|
+
Kovan: ""
|
|
351
|
+
},
|
|
352
352
|
lpToken: "steCRV"
|
|
353
353
|
}
|
|
354
354
|
};
|