@gearbox-protocol/sdk 0.0.53 → 0.0.54
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
package/lib/core/contracts.js
CHANGED
|
@@ -96,7 +96,8 @@ exports.contractParams = {
|
|
|
96
96
|
pool: {
|
|
97
97
|
Mainnet: "0xDC24316b9AE028F1497c275EB9192a3Ea0f67022",
|
|
98
98
|
Kovan: "0xF695d3aa358D5087A0C157DBb9449d4f0d8E534a"
|
|
99
|
-
}
|
|
99
|
+
},
|
|
100
|
+
lpToken: "steCRV"
|
|
100
101
|
},
|
|
101
102
|
CURVE_FRAX_POOL: {
|
|
102
103
|
protocol: protocols_1.Protocols.Curve,
|
package/package.json
CHANGED
package/src/core/contracts.ts
CHANGED
|
@@ -123,6 +123,7 @@ export interface CurveSteCRVPoolParams {
|
|
|
123
123
|
protocol: Protocols.Curve;
|
|
124
124
|
type: AdapterInterface.CURVE_V1_STECRV_POOL;
|
|
125
125
|
pool: Record<NetworkType, string>;
|
|
126
|
+
lpToken: "steCRV";
|
|
126
127
|
}
|
|
127
128
|
|
|
128
129
|
export interface LidoParams {
|
|
@@ -194,7 +195,8 @@ export const contractParams: Record<SupportedContract, ContractParams> = {
|
|
|
194
195
|
pool: {
|
|
195
196
|
Mainnet: "0xDC24316b9AE028F1497c275EB9192a3Ea0f67022",
|
|
196
197
|
Kovan: "0xF695d3aa358D5087A0C157DBb9449d4f0d8E534a"
|
|
197
|
-
}
|
|
198
|
+
},
|
|
199
|
+
lpToken: "steCRV"
|
|
198
200
|
},
|
|
199
201
|
CURVE_FRAX_POOL: {
|
|
200
202
|
protocol: Protocols.Curve,
|