@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
|
@@ -1098,7 +1098,6 @@ export default function MetaVaultDescription(allowedSources: AllowedSources[]) {
|
|
|
1098
1098
|
const containerStyle = {
|
|
1099
1099
|
maxWidth: "800px",
|
|
1100
1100
|
margin: "0 auto",
|
|
1101
|
-
backgroundColor: "#111",
|
|
1102
1101
|
color: "#eee",
|
|
1103
1102
|
fontFamily: "Arial, sans-serif",
|
|
1104
1103
|
borderRadius: "12px",
|
|
@@ -1338,6 +1337,7 @@ const createUniversalStrategy = (params: {
|
|
|
1338
1337
|
risk: getUniversalRisk(),
|
|
1339
1338
|
auditUrl: AUDIT_URL,
|
|
1340
1339
|
protocols: [Protocols.VESU],
|
|
1340
|
+
realizedAPYMethodology: "The realizedAPY is based on past 14 days performance by the vault",
|
|
1341
1341
|
curator: {
|
|
1342
1342
|
name: "Unwrap Labs",
|
|
1343
1343
|
logo: "https://assets.troves.fi/integrations/unwraplabs/white.png"
|