@gearbox-protocol/sdk 2.0.0 → 2.0.1

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.
@@ -64,7 +64,7 @@ contract PriceFeedDataLive {
64
64
  SingeTokenPriceFeedData[] yearnPriceFeeds;
65
65
  mapping(uint16 => BoundedPriceFeedData[]) boundedPriceFeedsByNetwork;
66
66
  mapping(uint16 => CompositePriceFeedData[]) compositePriceFeedsByNetwork;
67
- SingeTokenPriceFeedData wstethPriceFeed;
67
+ mapping(uint16 => SingeTokenPriceFeedData) wstethPriceFeed;
68
68
  GenericLPPriceFeedData[] wrappedAaveV2PriceFeeds;
69
69
  GenericLPPriceFeedData[] compoundV2PriceFeeds;
70
70
  GenericLPPriceFeedData[] erc4626PriceFeeds;
@@ -209,7 +209,7 @@ contract PriceFeedDataLive {
209
209
  );
210
210
 
211
211
  // ------------------------ wstETH ------------------------
212
- wstethPriceFeed = SingeTokenPriceFeedData({token: Tokens.wstETH});
212
+ wstethPriceFeed[1] = SingeTokenPriceFeedData({token: Tokens.wstETH});
213
213
 
214
214
  // ------------------------ CVX ------------------------
215
215
  chainlinkPriceFeedsByNetwork[1].push(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Gearbox SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",