@gearbox-protocol/sdk 3.0.0-next.272 → 3.0.0-next.274

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.
@@ -1,5 +1,5 @@
1
1
  import { LPTokens, PartialRecord, SupportedToken } from "@gearbox-protocol/sdk-gov";
2
- type ExtraFarmTokens = Extract<SupportedToken, "STETH" | "rETH" | "osETH" | "cbETH" | "wstETH" | "weETH" | "ezETH" | "sfrxETH" | "USDe" | "rsETH" | "rswETH" | "pufETH" | "pzETH" | "rstETH" | "steakLRT" | "amphrETH" | "LBTC" | "Re7LRT" | "PT_ezETH_26DEC2024" | "PT_eETH_26DEC2024" | "PT_sUSDe_26DEC2024" | "PT_eBTC_26DEC2024" | "PT_LBTC_27MAR2025" | "eBTC" | "PT_cornLBTC_26DEC2024" | "PT_corn_eBTC_27MAR2025" | "PT_corn_pumpBTC_26DEC2024" | "pumpBTC" | "PT_sUSDe_27MAR2025" | "DVstETH">;
2
+ type ExtraFarmTokens = Extract<SupportedToken, "STETH" | "rETH" | "osETH" | "cbETH" | "wstETH" | "weETH" | "ezETH" | "sfrxETH" | "USDe" | "rsETH" | "rswETH" | "pufETH" | "pzETH" | "rstETH" | "steakLRT" | "amphrETH" | "LBTC" | "Re7LRT" | "PT_ezETH_26DEC2024" | "PT_eETH_26DEC2024" | "PT_sUSDe_26DEC2024" | "PT_eBTC_26DEC2024" | "PT_LBTC_27MAR2025" | "eBTC" | "PT_cornLBTC_26DEC2024" | "PT_corn_eBTC_27MAR2025" | "PT_corn_pumpBTC_26DEC2024" | "pumpBTC" | "PT_sUSDe_27MAR2025" | "DVstETH" | "beraSTONE">;
3
3
  type ExtraTokensWithAPY = Extract<ExtraFarmTokens, "STETH" | "rETH" | "osETH" | "cbETH" | "wstETH" | "sfrxETH" | "pzETH" | "ezETH" | "Re7LRT" | "rsETH" | "weETH" | "rswETH" | "rstETH" | "steakLRT" | "amphrETH" | "pufETH" | "PT_ezETH_26DEC2024" | "PT_eETH_26DEC2024" | "PT_sUSDe_26DEC2024" | "PT_eBTC_26DEC2024" | "PT_LBTC_27MAR2025" | "PT_cornLBTC_26DEC2024" | "PT_corn_eBTC_27MAR2025" | "PT_corn_pumpBTC_26DEC2024" | "PT_sUSDe_27MAR2025" | "DVstETH">;
4
4
  type LRTAndLSTTokens = Exclude<ExtraFarmTokens, "USDe">;
5
5
  export declare const isExtraFarmToken: (t: unknown) => t is ExtraFarmTokens;
package/lib/apy/index.js CHANGED
@@ -33,6 +33,7 @@ const EXTRA_FARM_TOKENS = {
33
33
  pumpBTC: true,
34
34
  PT_sUSDe_27MAR2025: true,
35
35
  DVstETH: true,
36
+ beraSTONE: true,
36
37
  };
37
38
  const isExtraFarmToken = (t) => {
38
39
  if (typeof t !== "string")
@@ -3,7 +3,7 @@ interface ProtocolData {
3
3
  name: string;
4
4
  icon: string;
5
5
  }
6
- export type ExtendedProtocols = keyof typeof Protocols | "Stakewise" | "Etherfi" | "Rocketpool" | "Renzo" | "Coinbase" | "Kelp" | "Swell" | "Puffer" | "Mellow" | "Lombard" | "pumpBTC";
6
+ export type ExtendedProtocols = keyof typeof Protocols | "Stakewise" | "Etherfi" | "Rocketpool" | "Renzo" | "Coinbase" | "Kelp" | "Swell" | "Puffer" | "Mellow" | "Lombard" | "pumpBTC" | "Stakestone";
7
7
  export declare const isExtendedProtocol: (t: unknown) => t is ExtendedProtocols;
8
8
  export declare function getProtocolData(t: string): ProtocolData;
9
9
  export {};
@@ -142,6 +142,10 @@ const PROTOCOL_DATA = {
142
142
  name: "Equalizer",
143
143
  icon: "/protocols/equalizer.svg",
144
144
  },
145
+ Stakestone: {
146
+ name: "Stakestone",
147
+ icon: "/protocols/stakestone.svg",
148
+ },
145
149
  };
146
150
  const isExtendedProtocol = (t) => typeof t === "string" && !!PROTOCOL_DATA[t];
147
151
  exports.isExtendedProtocol = isExtendedProtocol;
@@ -33,6 +33,7 @@ export declare class RedstoneApi {
33
33
  main: RedstonePriceFeeds;
34
34
  reserve: RedstonePriceFeeds;
35
35
  allReserve: Record<`0x${string}`, `0x${string}`[]>;
36
+ allMain_Root: Record<`0x${string}`, `0x${string}`>;
36
37
  }>;
37
38
  private static unwrapSecondStage;
38
39
  private static unwrapThirdStage;
@@ -281,10 +281,19 @@ class RedstoneApi {
281
281
  acc[token].push(pf);
282
282
  return acc;
283
283
  }, {});
284
+ const allMain_Root = st1_MainFeedsUnsafe.reduce((acc, p, index) => {
285
+ const token = allTokens[index][1];
286
+ if (!p.error && typeof p.result === "object" && p.result[4] === false) {
287
+ const [priceFeed] = p.result;
288
+ acc[token] = priceFeed;
289
+ }
290
+ return acc;
291
+ }, {});
284
292
  return {
285
293
  main: mainPFData,
286
294
  reserve: reservePFData,
287
295
  allReserve,
296
+ allMain_Root,
288
297
  };
289
298
  };
290
299
  static unwrapSecondStage(priceFeeds, feedsTypeResponse, priceFeedResponse) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "3.0.0-next.272",
3
+ "version": "3.0.0-next.274",
4
4
  "description": "Gearbox SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -28,7 +28,7 @@
28
28
  "test": "npx mocha -r ts-node/register -r dotenv/config 'src/**/*.spec.ts'"
29
29
  },
30
30
  "dependencies": {
31
- "@gearbox-protocol/sdk-gov": "v2.34.0-next.13",
31
+ "@gearbox-protocol/sdk-gov": "v2.34.0-next.20",
32
32
  "@wagmi/cli": "^2.1.13",
33
33
  "axios": "^1.2.6",
34
34
  "decimal.js-light": "^2.5.1",