@gearbox-protocol/sdk 0.0.26 → 0.0.27

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.
@@ -24,7 +24,7 @@ export declare type PriceFeedData = {
24
24
  upperBound: BigNumber;
25
25
  } | {
26
26
  type: OracleType.CURVE_LP_ORACLE;
27
- assets: Array<string>;
27
+ assets: Array<SupportedTokens>;
28
28
  } | {
29
29
  type: OracleType.YEARN_CURVE_LP_ORACLE;
30
30
  curveSymbol: SupportedTokens;
@@ -353,7 +353,7 @@ exports.priceFeedsByNetwork = {
353
353
  crvPlain3andSUSD: {
354
354
  priceFeedUSD: {
355
355
  type: oracles_1.OracleType.CURVE_LP_ORACLE,
356
- assets: ["DAI", "USDC", "USDT", "SUSD"]
356
+ assets: ["DAI", "USDC", "USDT", "sUSD"]
357
357
  }
358
358
  },
359
359
  gusd3CRV: {
package/lib/core/token.js CHANGED
@@ -243,7 +243,7 @@ exports.tokenDataByNetwork = {
243
243
  yvDAI: "0xe5267045739E4d6FcA15BB4a79190012F146893b",
244
244
  yvUSDC: "0x980E4d8A22105c2a2fA2252B7685F32fc7564512",
245
245
  yvWETH: "0xB8f3CC38753db078b86e31647bE0A752cfd30A4b",
246
- yvWBTC: "0xF7Db34C42471958e732c4DD474bC904da7042518",
246
+ yvWBTC: "0x66359b29F7b142A3C7158e2F809aCD4407A6Ae75",
247
247
  // CURVE LP TOKENS
248
248
  "3Crv": "0x769C784D1e958672bDef04cf12Fd5399b3db0f27",
249
249
  steCRV: "0xF695d3aa358D5087A0C157DBb9449d4f0d8E534a",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "description": "Gearbox SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -30,7 +30,7 @@ export type PriceFeedData =
30
30
  }
31
31
  | {
32
32
  type: OracleType.CURVE_LP_ORACLE;
33
- assets: Array<string>;
33
+ assets: Array<SupportedTokens>;
34
34
  }
35
35
  | {
36
36
  type: OracleType.YEARN_CURVE_LP_ORACLE;
@@ -381,7 +381,7 @@ export const priceFeedsByNetwork: Record<SupportedTokens, TokenPriceFeedData> =
381
381
  crvPlain3andSUSD: {
382
382
  priceFeedUSD: {
383
383
  type: OracleType.CURVE_LP_ORACLE,
384
- assets: ["DAI", "USDC", "USDT", "SUSD"]
384
+ assets: ["DAI", "USDC", "USDT", "sUSD"]
385
385
  }
386
386
  },
387
387
 
package/src/core/token.ts CHANGED
@@ -301,7 +301,7 @@ export const tokenDataByNetwork: Record<
301
301
  yvDAI: "0xe5267045739E4d6FcA15BB4a79190012F146893b",
302
302
  yvUSDC: "0x980E4d8A22105c2a2fA2252B7685F32fc7564512",
303
303
  yvWETH: "0xB8f3CC38753db078b86e31647bE0A752cfd30A4b",
304
- yvWBTC: "0xF7Db34C42471958e732c4DD474bC904da7042518",
304
+ yvWBTC: "0x66359b29F7b142A3C7158e2F809aCD4407A6Ae75",
305
305
 
306
306
  // CURVE LP TOKENS
307
307
  "3Crv": "0x769C784D1e958672bDef04cf12Fd5399b3db0f27",