@strkfarm/sdk 2.0.0-staging.23 → 2.0.0-staging.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strkfarm/sdk",
3
- "version": "2.0.0-staging.23",
3
+ "version": "2.0.0-staging.25",
4
4
  "description": "STRKFarm TS SDK (Meant for our internal use, but feel free to use it)",
5
5
  "typings": "dist/index.d.ts",
6
6
  "types": "dist/index.d.ts",
@@ -186,6 +186,7 @@ export interface IStrategyMetadata<T> {
186
186
  notARisks: RiskType[];
187
187
  };
188
188
  apyMethodology?: string;
189
+ realizedAPYMethodology?: string;
189
190
  additionalInfo: T;
190
191
  contractDetails: {
191
192
  address: ContractAddr;
@@ -2369,6 +2369,7 @@ const xSTRKSTRK: IStrategyMetadata<CLVaultStrategySettings> = {
2369
2369
  },
2370
2370
  apyMethodology:
2371
2371
  "APY based on 30-day historical performance, including fees and rewards.",
2372
+ realizedAPYMethodology: "The realizedAPY is based on past 14 days performance by the vault",
2372
2373
  additionalInfo: {
2373
2374
  newBounds: {
2374
2375
  lower: -1,
@@ -2552,6 +2553,7 @@ const createLSTStrategy = (params: {
2552
2553
  )!,
2553
2554
  Global.getDefaultTokens().find((t) => t.symbol === params.depositToken1Symbol)!
2554
2555
  ],
2556
+ realizedAPYMethodology: "The realizedAPY is based on past 14 days performance by the vault",
2555
2557
  additionalInfo: {
2556
2558
  ...xSTRKSTRK.additionalInfo,
2557
2559
  quoteAsset: Global.getDefaultTokens().find(