@gearbox-protocol/sdk 0.0.64 → 0.0.65
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.
package/lib/core/contracts.d.ts
CHANGED
|
@@ -52,7 +52,6 @@ declare type ConvexPoolParams = {
|
|
|
52
52
|
export declare type LidoParams = {
|
|
53
53
|
protocol: Protocols.Lido;
|
|
54
54
|
type: AdapterInterface.LIDO_V1;
|
|
55
|
-
contract: Record<NetworkType, string>;
|
|
56
55
|
lpToken: "steCRV";
|
|
57
56
|
} & BaseContractParams;
|
|
58
57
|
export declare type ContractParams = UniswapV2Params | UniswapV3Params | CurveParams | CurveSteCRVPoolParams | YearnParams | ConvexParams | ConvexPoolParams | LidoParams;
|
package/lib/core/contracts.js
CHANGED
|
@@ -114,7 +114,7 @@ exports.contractParams = {
|
|
|
114
114
|
type: adapters_1.AdapterInterface.CURVE_V1_STECRV_POOL,
|
|
115
115
|
pool: {
|
|
116
116
|
Mainnet: "0xDC24316b9AE028F1497c275EB9192a3Ea0f67022",
|
|
117
|
-
Kovan: "
|
|
117
|
+
Kovan: "0x39311C60F6EC014b2c954aD469CE61946A3Ee460"
|
|
118
118
|
},
|
|
119
119
|
lpToken: "steCRV"
|
|
120
120
|
},
|
|
@@ -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
|
-
contract: {
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
},
|
|
232
|
+
// contract: {
|
|
233
|
+
// Mainnet: "0xae7ab96520de3a18e5e111b5eaab095312d7fe84",
|
|
234
|
+
// Kovan: ""
|
|
235
|
+
// },
|
|
236
236
|
lpToken: "steCRV"
|
|
237
237
|
}
|
|
238
238
|
};
|
package/package.json
CHANGED
package/src/core/contracts.ts
CHANGED
|
@@ -181,7 +181,7 @@ type ConvexPoolParams = {
|
|
|
181
181
|
export type LidoParams = {
|
|
182
182
|
protocol: Protocols.Lido;
|
|
183
183
|
type: AdapterInterface.LIDO_V1;
|
|
184
|
-
contract: Record<NetworkType, string>;
|
|
184
|
+
// contract: Record<NetworkType, string>;
|
|
185
185
|
lpToken: "steCRV";
|
|
186
186
|
} & BaseContractParams;
|
|
187
187
|
|
|
@@ -227,7 +227,7 @@ export const contractParams: Record<SupportedContract, ContractParams> = {
|
|
|
227
227
|
type: AdapterInterface.CURVE_V1_STECRV_POOL,
|
|
228
228
|
pool: {
|
|
229
229
|
Mainnet: "0xDC24316b9AE028F1497c275EB9192a3Ea0f67022",
|
|
230
|
-
Kovan: "
|
|
230
|
+
Kovan: "0x39311C60F6EC014b2c954aD469CE61946A3Ee460"
|
|
231
231
|
},
|
|
232
232
|
lpToken: "steCRV"
|
|
233
233
|
},
|
|
@@ -347,10 +347,10 @@ export const contractParams: Record<SupportedContract, ContractParams> = {
|
|
|
347
347
|
name: "Lido STETH",
|
|
348
348
|
protocol: Protocols.Lido,
|
|
349
349
|
type: AdapterInterface.LIDO_V1,
|
|
350
|
-
contract: {
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
},
|
|
350
|
+
// contract: {
|
|
351
|
+
// Mainnet: "0xae7ab96520de3a18e5e111b5eaab095312d7fe84",
|
|
352
|
+
// Kovan: ""
|
|
353
|
+
// },
|
|
354
354
|
lpToken: "steCRV"
|
|
355
355
|
}
|
|
356
356
|
};
|