@gearbox-protocol/sdk 1.27.10 → 1.27.11
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,7 @@ contract PriceFeedDataLive {
|
|
|
59
59
|
mapping(uint16 => ChainlinkPriceFeedData[]) chainlinkPriceFeedsByNetwork;
|
|
60
60
|
SingeTokenPriceFeedData[] zeroPriceFeeds;
|
|
61
61
|
CurvePriceFeedData[] curvePriceFeeds;
|
|
62
|
+
CurvePriceFeedData[] curveCryptoPriceFeeds;
|
|
62
63
|
TheSamePriceFeedData[] theSamePriceFeeds;
|
|
63
64
|
SingeTokenPriceFeedData[] yearnPriceFeeds;
|
|
64
65
|
mapping(uint16 => BoundedPriceFeedData[]) boundedPriceFeedsByNetwork;
|
|
@@ -254,6 +255,41 @@ contract PriceFeedDataLive {
|
|
|
254
255
|
pool: Contracts.CURVE_MIM_POOL
|
|
255
256
|
})
|
|
256
257
|
);
|
|
258
|
+
curveCryptoPriceFeeds.push(
|
|
259
|
+
CurvePriceFeedData({
|
|
260
|
+
lpToken: Tokens.OHMFRAXBP,
|
|
261
|
+
assets: TokensLib.arrayOf(Tokens.OHM, Tokens.crvFRAX),
|
|
262
|
+
pool: Contracts.CURVE_OHMFRAXBP_POOL
|
|
263
|
+
})
|
|
264
|
+
);
|
|
265
|
+
curveCryptoPriceFeeds.push(
|
|
266
|
+
CurvePriceFeedData({
|
|
267
|
+
lpToken: Tokens.crvCRVETH,
|
|
268
|
+
assets: TokensLib.arrayOf(Tokens.WETH, Tokens.CRV),
|
|
269
|
+
pool: Contracts.CURVE_CRVETH_POOL
|
|
270
|
+
})
|
|
271
|
+
);
|
|
272
|
+
curveCryptoPriceFeeds.push(
|
|
273
|
+
CurvePriceFeedData({
|
|
274
|
+
lpToken: Tokens.crvCVXETH,
|
|
275
|
+
assets: TokensLib.arrayOf(Tokens.WETH, Tokens.CVX),
|
|
276
|
+
pool: Contracts.CURVE_CVXETH_POOL
|
|
277
|
+
})
|
|
278
|
+
);
|
|
279
|
+
curveCryptoPriceFeeds.push(
|
|
280
|
+
CurvePriceFeedData({
|
|
281
|
+
lpToken: Tokens.crvUSDTWBTCWETH,
|
|
282
|
+
assets: TokensLib.arrayOf(Tokens.USDT, Tokens.WBTC, Tokens.WETH),
|
|
283
|
+
pool: Contracts.CURVE_3CRYPTO_POOL
|
|
284
|
+
})
|
|
285
|
+
);
|
|
286
|
+
curveCryptoPriceFeeds.push(
|
|
287
|
+
CurvePriceFeedData({
|
|
288
|
+
lpToken: Tokens.LDOETH,
|
|
289
|
+
assets: TokensLib.arrayOf(Tokens.LDO, Tokens.WETH),
|
|
290
|
+
pool: Contracts.CURVE_LDOETH_POOL
|
|
291
|
+
})
|
|
292
|
+
);
|
|
257
293
|
theSamePriceFeeds.push(TheSamePriceFeedData({token: Tokens.cvx3Crv, tokenHasSamePriceFeed: Tokens._3Crv}));
|
|
258
294
|
theSamePriceFeeds.push(TheSamePriceFeedData({token: Tokens.cvxcrvFRAX, tokenHasSamePriceFeed: Tokens.crvFRAX}));
|
|
259
295
|
theSamePriceFeeds.push(TheSamePriceFeedData({token: Tokens.cvxsteCRV, tokenHasSamePriceFeed: Tokens.steCRV}));
|