@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/dist/index.browser.global.js +846 -322
- package/dist/index.browser.mjs +770 -246
- package/dist/index.d.ts +1 -0
- package/dist/index.js +770 -246
- package/dist/index.mjs +770 -246
- package/package.json +1 -1
- package/src/interfaces/common.tsx +1 -0
- package/src/strategies/ekubo-cl-vault.tsx +2 -0
- package/src/strategies/universal-lst-muliplier-strategy.tsx +1317 -576
- package/src/strategies/universal-strategy.tsx +1 -1
package/package.json
CHANGED
|
@@ -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(
|