@strkfarm/sdk 2.0.0-staging.12 → 2.0.0-staging.13
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 +21 -16
- package/dist/index.browser.mjs +21 -16
- package/dist/index.d.ts +4 -1
- package/dist/index.js +21 -16
- package/dist/index.mjs +21 -16
- package/package.json +1 -1
- package/src/interfaces/common.tsx +4 -1
- package/src/strategies/ekubo-cl-vault.tsx +9 -6
- package/src/strategies/sensei.ts +2 -2
- package/src/strategies/universal-lst-muliplier-strategy.tsx +2 -2
- package/src/strategies/universal-strategy.tsx +2 -2
- package/src/strategies/vesu-rebalance.tsx +3 -3
|
@@ -90524,7 +90524,10 @@ spurious results.`);
|
|
|
90524
90524
|
return StrategyTag3;
|
|
90525
90525
|
})(StrategyTag || {});
|
|
90526
90526
|
var VaultType = /* @__PURE__ */ ((VaultType2) => {
|
|
90527
|
-
VaultType2["
|
|
90527
|
+
VaultType2["LOOPING"] = "Looping";
|
|
90528
|
+
VaultType2["META_VAULT"] = "Meta Vault";
|
|
90529
|
+
VaultType2["DELTA_NEUTRAL"] = "Delta Neutral";
|
|
90530
|
+
VaultType2["AUTOMATED_LP"] = "Automated LP";
|
|
90528
90531
|
return VaultType2;
|
|
90529
90532
|
})(VaultType || {});
|
|
90530
90533
|
var AuditStatus = /* @__PURE__ */ ((AuditStatus2) => {
|
|
@@ -98561,7 +98564,7 @@ spurious results.`);
|
|
|
98561
98564
|
return {
|
|
98562
98565
|
maxTVL: Web3Number.fromWei("0", depositToken.decimals),
|
|
98563
98566
|
isPaused: false,
|
|
98564
|
-
liveStatus: "
|
|
98567
|
+
liveStatus: "Deprecated" /* DEPRECATED */,
|
|
98565
98568
|
isAudited: true,
|
|
98566
98569
|
isInstantWithdrawal: true,
|
|
98567
98570
|
quoteToken: depositToken,
|
|
@@ -98576,8 +98579,8 @@ spurious results.`);
|
|
|
98576
98579
|
launchBlock: 0,
|
|
98577
98580
|
type: "ERC4626",
|
|
98578
98581
|
vaultType: {
|
|
98579
|
-
type: "
|
|
98580
|
-
description: "
|
|
98582
|
+
type: "Meta Vault" /* META_VAULT */,
|
|
98583
|
+
description: "Automatically diversify {{TOKEN}} holdings into different Vesu pools while reducing risk and maximizing yield. Defi spring STRK Rewards are auto-compounded as well."
|
|
98581
98584
|
},
|
|
98582
98585
|
depositTokens: [
|
|
98583
98586
|
Global.getDefaultTokens().find((t) => t.symbol === tokenSymbol)
|
|
@@ -105254,6 +105257,8 @@ spurious results.`);
|
|
|
105254
105257
|
}
|
|
105255
105258
|
];
|
|
105256
105259
|
}
|
|
105260
|
+
var vaultTypeDescription = "Automatically collects fees and rebalances positions on Ekubo to optimize yield";
|
|
105261
|
+
var vaultType = "Automated LP" /* AUTOMATED_LP */;
|
|
105257
105262
|
var xSTRKSTRK = {
|
|
105258
105263
|
id: "ekubo_cl_xstrkstrk",
|
|
105259
105264
|
name: "Ekubo xSTRK/STRK",
|
|
@@ -105264,8 +105269,8 @@ spurious results.`);
|
|
|
105264
105269
|
launchBlock: 1209881,
|
|
105265
105270
|
type: "Other",
|
|
105266
105271
|
vaultType: {
|
|
105267
|
-
type:
|
|
105268
|
-
description:
|
|
105272
|
+
type: vaultType,
|
|
105273
|
+
description: vaultTypeDescription
|
|
105269
105274
|
},
|
|
105270
105275
|
// must be same order as poolKey token0 and token1
|
|
105271
105276
|
depositTokens: [
|
|
@@ -105423,8 +105428,8 @@ spurious results.`);
|
|
|
105423
105428
|
address: ContractAddr.from(params.address),
|
|
105424
105429
|
launchBlock: params.launchBlock,
|
|
105425
105430
|
vaultType: {
|
|
105426
|
-
type:
|
|
105427
|
-
description:
|
|
105431
|
+
type: vaultType,
|
|
105432
|
+
description: vaultTypeDescription
|
|
105428
105433
|
},
|
|
105429
105434
|
depositTokens: [
|
|
105430
105435
|
Global.getDefaultTokens().find(
|
|
@@ -105561,8 +105566,8 @@ spurious results.`);
|
|
|
105561
105566
|
address: ContractAddr.from(address),
|
|
105562
105567
|
launchBlock,
|
|
105563
105568
|
vaultType: {
|
|
105564
|
-
type:
|
|
105565
|
-
description:
|
|
105569
|
+
type: vaultType,
|
|
105570
|
+
description: vaultTypeDescription
|
|
105566
105571
|
},
|
|
105567
105572
|
depositTokens: [
|
|
105568
105573
|
Global.getDefaultTokens().find(
|
|
@@ -115767,8 +115772,8 @@ spurious results.`);
|
|
|
115767
115772
|
logo: "https://assets.troves.fi/integrations/unwraplabs/white.png"
|
|
115768
115773
|
},
|
|
115769
115774
|
vaultType: {
|
|
115770
|
-
type: "
|
|
115771
|
-
description: "
|
|
115775
|
+
type: "Looping" /* LOOPING */,
|
|
115776
|
+
description: "Creates leveraged looping position on xSTRK by borrowing STRK to increase yield"
|
|
115772
115777
|
},
|
|
115773
115778
|
depositTokens: [
|
|
115774
115779
|
Global.getDefaultTokens().find((t) => t.symbol === "STRK")
|
|
@@ -119237,8 +119242,8 @@ spurious results.`);
|
|
|
119237
119242
|
launchBlock: 0,
|
|
119238
119243
|
type: "ERC4626",
|
|
119239
119244
|
vaultType: {
|
|
119240
|
-
type: "
|
|
119241
|
-
description: "
|
|
119245
|
+
type: "Meta Vault" /* META_VAULT */,
|
|
119246
|
+
description: "Automatically allocates funds to the best available yield source in the ecosystem"
|
|
119242
119247
|
},
|
|
119243
119248
|
depositTokens: [
|
|
119244
119249
|
Global.getDefaultTokens().find((token) => token.symbol === params.tokenSymbol)
|
|
@@ -120321,8 +120326,8 @@ spurious results.`);
|
|
|
120321
120326
|
launchBlock: 0,
|
|
120322
120327
|
type: "Other",
|
|
120323
120328
|
vaultType: {
|
|
120324
|
-
type: "
|
|
120325
|
-
description:
|
|
120329
|
+
type: "Looping" /* LOOPING */,
|
|
120330
|
+
description: `Creates leveraged looping position on ${lstSymbol} by borrowing ${underlyingSymbol} to increase yield`
|
|
120326
120331
|
},
|
|
120327
120332
|
depositTokens: [
|
|
120328
120333
|
Global.getDefaultTokens().find(
|
package/dist/index.browser.mjs
CHANGED
|
@@ -3098,7 +3098,10 @@ var StrategyTag = /* @__PURE__ */ ((StrategyTag3) => {
|
|
|
3098
3098
|
return StrategyTag3;
|
|
3099
3099
|
})(StrategyTag || {});
|
|
3100
3100
|
var VaultType = /* @__PURE__ */ ((VaultType2) => {
|
|
3101
|
-
VaultType2["
|
|
3101
|
+
VaultType2["LOOPING"] = "Looping";
|
|
3102
|
+
VaultType2["META_VAULT"] = "Meta Vault";
|
|
3103
|
+
VaultType2["DELTA_NEUTRAL"] = "Delta Neutral";
|
|
3104
|
+
VaultType2["AUTOMATED_LP"] = "Automated LP";
|
|
3102
3105
|
return VaultType2;
|
|
3103
3106
|
})(VaultType || {});
|
|
3104
3107
|
var AuditStatus = /* @__PURE__ */ ((AuditStatus2) => {
|
|
@@ -11141,7 +11144,7 @@ var createVesuRebalanceSettings = (tokenSymbol) => {
|
|
|
11141
11144
|
return {
|
|
11142
11145
|
maxTVL: Web3Number.fromWei("0", depositToken.decimals),
|
|
11143
11146
|
isPaused: false,
|
|
11144
|
-
liveStatus: "
|
|
11147
|
+
liveStatus: "Deprecated" /* DEPRECATED */,
|
|
11145
11148
|
isAudited: true,
|
|
11146
11149
|
isInstantWithdrawal: true,
|
|
11147
11150
|
quoteToken: depositToken,
|
|
@@ -11156,8 +11159,8 @@ var createVesuRebalanceStrategy = (idSymbol, name, tokenSymbol, address) => ({
|
|
|
11156
11159
|
launchBlock: 0,
|
|
11157
11160
|
type: "ERC4626",
|
|
11158
11161
|
vaultType: {
|
|
11159
|
-
type: "
|
|
11160
|
-
description: "
|
|
11162
|
+
type: "Meta Vault" /* META_VAULT */,
|
|
11163
|
+
description: "Automatically diversify {{TOKEN}} holdings into different Vesu pools while reducing risk and maximizing yield. Defi spring STRK Rewards are auto-compounded as well."
|
|
11161
11164
|
},
|
|
11162
11165
|
depositTokens: [
|
|
11163
11166
|
Global.getDefaultTokens().find((t) => t.symbol === tokenSymbol)
|
|
@@ -17845,6 +17848,8 @@ function getLSTFAQs(lstSymbol) {
|
|
|
17845
17848
|
}
|
|
17846
17849
|
];
|
|
17847
17850
|
}
|
|
17851
|
+
var vaultTypeDescription = "Automatically collects fees and rebalances positions on Ekubo to optimize yield";
|
|
17852
|
+
var vaultType = "Automated LP" /* AUTOMATED_LP */;
|
|
17848
17853
|
var xSTRKSTRK = {
|
|
17849
17854
|
id: "ekubo_cl_xstrkstrk",
|
|
17850
17855
|
name: "Ekubo xSTRK/STRK",
|
|
@@ -17855,8 +17860,8 @@ var xSTRKSTRK = {
|
|
|
17855
17860
|
launchBlock: 1209881,
|
|
17856
17861
|
type: "Other",
|
|
17857
17862
|
vaultType: {
|
|
17858
|
-
type:
|
|
17859
|
-
description:
|
|
17863
|
+
type: vaultType,
|
|
17864
|
+
description: vaultTypeDescription
|
|
17860
17865
|
},
|
|
17861
17866
|
// must be same order as poolKey token0 and token1
|
|
17862
17867
|
depositTokens: [
|
|
@@ -18014,8 +18019,8 @@ var createLSTStrategy = (params) => ({
|
|
|
18014
18019
|
address: ContractAddr.from(params.address),
|
|
18015
18020
|
launchBlock: params.launchBlock,
|
|
18016
18021
|
vaultType: {
|
|
18017
|
-
type:
|
|
18018
|
-
description:
|
|
18022
|
+
type: vaultType,
|
|
18023
|
+
description: vaultTypeDescription
|
|
18019
18024
|
},
|
|
18020
18025
|
depositTokens: [
|
|
18021
18026
|
Global.getDefaultTokens().find(
|
|
@@ -18152,8 +18157,8 @@ var createRe7Strategy = (id, name, address, launchBlock, depositToken0Symbol, de
|
|
|
18152
18157
|
address: ContractAddr.from(address),
|
|
18153
18158
|
launchBlock,
|
|
18154
18159
|
vaultType: {
|
|
18155
|
-
type:
|
|
18156
|
-
description:
|
|
18160
|
+
type: vaultType,
|
|
18161
|
+
description: vaultTypeDescription
|
|
18157
18162
|
},
|
|
18158
18163
|
depositTokens: [
|
|
18159
18164
|
Global.getDefaultTokens().find(
|
|
@@ -28365,8 +28370,8 @@ var SenseiStrategies = [
|
|
|
28365
28370
|
logo: "https://assets.troves.fi/integrations/unwraplabs/white.png"
|
|
28366
28371
|
},
|
|
28367
28372
|
vaultType: {
|
|
28368
|
-
type: "
|
|
28369
|
-
description: "
|
|
28373
|
+
type: "Looping" /* LOOPING */,
|
|
28374
|
+
description: "Creates leveraged looping position on xSTRK by borrowing STRK to increase yield"
|
|
28370
28375
|
},
|
|
28371
28376
|
depositTokens: [
|
|
28372
28377
|
Global.getDefaultTokens().find((t) => t.symbol === "STRK")
|
|
@@ -31839,8 +31844,8 @@ var createUniversalStrategy = (params) => ({
|
|
|
31839
31844
|
launchBlock: 0,
|
|
31840
31845
|
type: "ERC4626",
|
|
31841
31846
|
vaultType: {
|
|
31842
|
-
type: "
|
|
31843
|
-
description: "
|
|
31847
|
+
type: "Meta Vault" /* META_VAULT */,
|
|
31848
|
+
description: "Automatically allocates funds to the best available yield source in the ecosystem"
|
|
31844
31849
|
},
|
|
31845
31850
|
depositTokens: [
|
|
31846
31851
|
Global.getDefaultTokens().find((token) => token.symbol === params.tokenSymbol)
|
|
@@ -32926,8 +32931,8 @@ function getStrategySettings(lstSymbol, underlyingSymbol, addresses, isPreview =
|
|
|
32926
32931
|
launchBlock: 0,
|
|
32927
32932
|
type: "Other",
|
|
32928
32933
|
vaultType: {
|
|
32929
|
-
type: "
|
|
32930
|
-
description:
|
|
32934
|
+
type: "Looping" /* LOOPING */,
|
|
32935
|
+
description: `Creates leveraged looping position on ${lstSymbol} by borrowing ${underlyingSymbol} to increase yield`
|
|
32931
32936
|
},
|
|
32932
32937
|
depositTokens: [
|
|
32933
32938
|
Global.getDefaultTokens().find(
|
package/dist/index.d.ts
CHANGED
|
@@ -130,7 +130,10 @@ declare enum StrategyTag {
|
|
|
130
130
|
BTC = "BTC"
|
|
131
131
|
}
|
|
132
132
|
declare enum VaultType {
|
|
133
|
-
|
|
133
|
+
LOOPING = "Looping",
|
|
134
|
+
META_VAULT = "Meta Vault",
|
|
135
|
+
DELTA_NEUTRAL = "Delta Neutral",
|
|
136
|
+
AUTOMATED_LP = "Automated LP"
|
|
134
137
|
}
|
|
135
138
|
declare enum AuditStatus {
|
|
136
139
|
AUDITED = "Audited",
|
package/dist/index.js
CHANGED
|
@@ -3133,7 +3133,10 @@ var StrategyTag = /* @__PURE__ */ ((StrategyTag3) => {
|
|
|
3133
3133
|
return StrategyTag3;
|
|
3134
3134
|
})(StrategyTag || {});
|
|
3135
3135
|
var VaultType = /* @__PURE__ */ ((VaultType2) => {
|
|
3136
|
-
VaultType2["
|
|
3136
|
+
VaultType2["LOOPING"] = "Looping";
|
|
3137
|
+
VaultType2["META_VAULT"] = "Meta Vault";
|
|
3138
|
+
VaultType2["DELTA_NEUTRAL"] = "Delta Neutral";
|
|
3139
|
+
VaultType2["AUTOMATED_LP"] = "Automated LP";
|
|
3137
3140
|
return VaultType2;
|
|
3138
3141
|
})(VaultType || {});
|
|
3139
3142
|
var AuditStatus = /* @__PURE__ */ ((AuditStatus2) => {
|
|
@@ -11176,7 +11179,7 @@ var createVesuRebalanceSettings = (tokenSymbol) => {
|
|
|
11176
11179
|
return {
|
|
11177
11180
|
maxTVL: Web3Number.fromWei("0", depositToken.decimals),
|
|
11178
11181
|
isPaused: false,
|
|
11179
|
-
liveStatus: "
|
|
11182
|
+
liveStatus: "Deprecated" /* DEPRECATED */,
|
|
11180
11183
|
isAudited: true,
|
|
11181
11184
|
isInstantWithdrawal: true,
|
|
11182
11185
|
quoteToken: depositToken,
|
|
@@ -11191,8 +11194,8 @@ var createVesuRebalanceStrategy = (idSymbol, name, tokenSymbol, address) => ({
|
|
|
11191
11194
|
launchBlock: 0,
|
|
11192
11195
|
type: "ERC4626",
|
|
11193
11196
|
vaultType: {
|
|
11194
|
-
type: "
|
|
11195
|
-
description: "
|
|
11197
|
+
type: "Meta Vault" /* META_VAULT */,
|
|
11198
|
+
description: "Automatically diversify {{TOKEN}} holdings into different Vesu pools while reducing risk and maximizing yield. Defi spring STRK Rewards are auto-compounded as well."
|
|
11196
11199
|
},
|
|
11197
11200
|
depositTokens: [
|
|
11198
11201
|
Global.getDefaultTokens().find((t) => t.symbol === tokenSymbol)
|
|
@@ -17876,6 +17879,8 @@ function getLSTFAQs(lstSymbol) {
|
|
|
17876
17879
|
}
|
|
17877
17880
|
];
|
|
17878
17881
|
}
|
|
17882
|
+
var vaultTypeDescription = "Automatically collects fees and rebalances positions on Ekubo to optimize yield";
|
|
17883
|
+
var vaultType = "Automated LP" /* AUTOMATED_LP */;
|
|
17879
17884
|
var xSTRKSTRK = {
|
|
17880
17885
|
id: "ekubo_cl_xstrkstrk",
|
|
17881
17886
|
name: "Ekubo xSTRK/STRK",
|
|
@@ -17886,8 +17891,8 @@ var xSTRKSTRK = {
|
|
|
17886
17891
|
launchBlock: 1209881,
|
|
17887
17892
|
type: "Other",
|
|
17888
17893
|
vaultType: {
|
|
17889
|
-
type:
|
|
17890
|
-
description:
|
|
17894
|
+
type: vaultType,
|
|
17895
|
+
description: vaultTypeDescription
|
|
17891
17896
|
},
|
|
17892
17897
|
// must be same order as poolKey token0 and token1
|
|
17893
17898
|
depositTokens: [
|
|
@@ -18045,8 +18050,8 @@ var createLSTStrategy = (params) => ({
|
|
|
18045
18050
|
address: ContractAddr.from(params.address),
|
|
18046
18051
|
launchBlock: params.launchBlock,
|
|
18047
18052
|
vaultType: {
|
|
18048
|
-
type:
|
|
18049
|
-
description:
|
|
18053
|
+
type: vaultType,
|
|
18054
|
+
description: vaultTypeDescription
|
|
18050
18055
|
},
|
|
18051
18056
|
depositTokens: [
|
|
18052
18057
|
Global.getDefaultTokens().find(
|
|
@@ -18183,8 +18188,8 @@ var createRe7Strategy = (id, name, address, launchBlock, depositToken0Symbol, de
|
|
|
18183
18188
|
address: ContractAddr.from(address),
|
|
18184
18189
|
launchBlock,
|
|
18185
18190
|
vaultType: {
|
|
18186
|
-
type:
|
|
18187
|
-
description:
|
|
18191
|
+
type: vaultType,
|
|
18192
|
+
description: vaultTypeDescription
|
|
18188
18193
|
},
|
|
18189
18194
|
depositTokens: [
|
|
18190
18195
|
Global.getDefaultTokens().find(
|
|
@@ -28497,8 +28502,8 @@ var SenseiStrategies = [
|
|
|
28497
28502
|
logo: "https://assets.troves.fi/integrations/unwraplabs/white.png"
|
|
28498
28503
|
},
|
|
28499
28504
|
vaultType: {
|
|
28500
|
-
type: "
|
|
28501
|
-
description: "
|
|
28505
|
+
type: "Looping" /* LOOPING */,
|
|
28506
|
+
description: "Creates leveraged looping position on xSTRK by borrowing STRK to increase yield"
|
|
28502
28507
|
},
|
|
28503
28508
|
depositTokens: [
|
|
28504
28509
|
Global.getDefaultTokens().find((t) => t.symbol === "STRK")
|
|
@@ -31971,8 +31976,8 @@ var createUniversalStrategy = (params) => ({
|
|
|
31971
31976
|
launchBlock: 0,
|
|
31972
31977
|
type: "ERC4626",
|
|
31973
31978
|
vaultType: {
|
|
31974
|
-
type: "
|
|
31975
|
-
description: "
|
|
31979
|
+
type: "Meta Vault" /* META_VAULT */,
|
|
31980
|
+
description: "Automatically allocates funds to the best available yield source in the ecosystem"
|
|
31976
31981
|
},
|
|
31977
31982
|
depositTokens: [
|
|
31978
31983
|
Global.getDefaultTokens().find((token) => token.symbol === params.tokenSymbol)
|
|
@@ -33058,8 +33063,8 @@ function getStrategySettings(lstSymbol, underlyingSymbol, addresses, isPreview =
|
|
|
33058
33063
|
launchBlock: 0,
|
|
33059
33064
|
type: "Other",
|
|
33060
33065
|
vaultType: {
|
|
33061
|
-
type: "
|
|
33062
|
-
description:
|
|
33066
|
+
type: "Looping" /* LOOPING */,
|
|
33067
|
+
description: `Creates leveraged looping position on ${lstSymbol} by borrowing ${underlyingSymbol} to increase yield`
|
|
33063
33068
|
},
|
|
33064
33069
|
depositTokens: [
|
|
33065
33070
|
Global.getDefaultTokens().find(
|
package/dist/index.mjs
CHANGED
|
@@ -3000,7 +3000,10 @@ var StrategyTag = /* @__PURE__ */ ((StrategyTag3) => {
|
|
|
3000
3000
|
return StrategyTag3;
|
|
3001
3001
|
})(StrategyTag || {});
|
|
3002
3002
|
var VaultType = /* @__PURE__ */ ((VaultType2) => {
|
|
3003
|
-
VaultType2["
|
|
3003
|
+
VaultType2["LOOPING"] = "Looping";
|
|
3004
|
+
VaultType2["META_VAULT"] = "Meta Vault";
|
|
3005
|
+
VaultType2["DELTA_NEUTRAL"] = "Delta Neutral";
|
|
3006
|
+
VaultType2["AUTOMATED_LP"] = "Automated LP";
|
|
3004
3007
|
return VaultType2;
|
|
3005
3008
|
})(VaultType || {});
|
|
3006
3009
|
var AuditStatus = /* @__PURE__ */ ((AuditStatus2) => {
|
|
@@ -11043,7 +11046,7 @@ var createVesuRebalanceSettings = (tokenSymbol) => {
|
|
|
11043
11046
|
return {
|
|
11044
11047
|
maxTVL: Web3Number.fromWei("0", depositToken.decimals),
|
|
11045
11048
|
isPaused: false,
|
|
11046
|
-
liveStatus: "
|
|
11049
|
+
liveStatus: "Deprecated" /* DEPRECATED */,
|
|
11047
11050
|
isAudited: true,
|
|
11048
11051
|
isInstantWithdrawal: true,
|
|
11049
11052
|
quoteToken: depositToken,
|
|
@@ -11058,8 +11061,8 @@ var createVesuRebalanceStrategy = (idSymbol, name, tokenSymbol, address) => ({
|
|
|
11058
11061
|
launchBlock: 0,
|
|
11059
11062
|
type: "ERC4626",
|
|
11060
11063
|
vaultType: {
|
|
11061
|
-
type: "
|
|
11062
|
-
description: "
|
|
11064
|
+
type: "Meta Vault" /* META_VAULT */,
|
|
11065
|
+
description: "Automatically diversify {{TOKEN}} holdings into different Vesu pools while reducing risk and maximizing yield. Defi spring STRK Rewards are auto-compounded as well."
|
|
11063
11066
|
},
|
|
11064
11067
|
depositTokens: [
|
|
11065
11068
|
Global.getDefaultTokens().find((t) => t.symbol === tokenSymbol)
|
|
@@ -17747,6 +17750,8 @@ function getLSTFAQs(lstSymbol) {
|
|
|
17747
17750
|
}
|
|
17748
17751
|
];
|
|
17749
17752
|
}
|
|
17753
|
+
var vaultTypeDescription = "Automatically collects fees and rebalances positions on Ekubo to optimize yield";
|
|
17754
|
+
var vaultType = "Automated LP" /* AUTOMATED_LP */;
|
|
17750
17755
|
var xSTRKSTRK = {
|
|
17751
17756
|
id: "ekubo_cl_xstrkstrk",
|
|
17752
17757
|
name: "Ekubo xSTRK/STRK",
|
|
@@ -17757,8 +17762,8 @@ var xSTRKSTRK = {
|
|
|
17757
17762
|
launchBlock: 1209881,
|
|
17758
17763
|
type: "Other",
|
|
17759
17764
|
vaultType: {
|
|
17760
|
-
type:
|
|
17761
|
-
description:
|
|
17765
|
+
type: vaultType,
|
|
17766
|
+
description: vaultTypeDescription
|
|
17762
17767
|
},
|
|
17763
17768
|
// must be same order as poolKey token0 and token1
|
|
17764
17769
|
depositTokens: [
|
|
@@ -17916,8 +17921,8 @@ var createLSTStrategy = (params) => ({
|
|
|
17916
17921
|
address: ContractAddr.from(params.address),
|
|
17917
17922
|
launchBlock: params.launchBlock,
|
|
17918
17923
|
vaultType: {
|
|
17919
|
-
type:
|
|
17920
|
-
description:
|
|
17924
|
+
type: vaultType,
|
|
17925
|
+
description: vaultTypeDescription
|
|
17921
17926
|
},
|
|
17922
17927
|
depositTokens: [
|
|
17923
17928
|
Global.getDefaultTokens().find(
|
|
@@ -18054,8 +18059,8 @@ var createRe7Strategy = (id, name, address, launchBlock, depositToken0Symbol, de
|
|
|
18054
18059
|
address: ContractAddr.from(address),
|
|
18055
18060
|
launchBlock,
|
|
18056
18061
|
vaultType: {
|
|
18057
|
-
type:
|
|
18058
|
-
description:
|
|
18062
|
+
type: vaultType,
|
|
18063
|
+
description: vaultTypeDescription
|
|
18059
18064
|
},
|
|
18060
18065
|
depositTokens: [
|
|
18061
18066
|
Global.getDefaultTokens().find(
|
|
@@ -28368,8 +28373,8 @@ var SenseiStrategies = [
|
|
|
28368
28373
|
logo: "https://assets.troves.fi/integrations/unwraplabs/white.png"
|
|
28369
28374
|
},
|
|
28370
28375
|
vaultType: {
|
|
28371
|
-
type: "
|
|
28372
|
-
description: "
|
|
28376
|
+
type: "Looping" /* LOOPING */,
|
|
28377
|
+
description: "Creates leveraged looping position on xSTRK by borrowing STRK to increase yield"
|
|
28373
28378
|
},
|
|
28374
28379
|
depositTokens: [
|
|
28375
28380
|
Global.getDefaultTokens().find((t) => t.symbol === "STRK")
|
|
@@ -31842,8 +31847,8 @@ var createUniversalStrategy = (params) => ({
|
|
|
31842
31847
|
launchBlock: 0,
|
|
31843
31848
|
type: "ERC4626",
|
|
31844
31849
|
vaultType: {
|
|
31845
|
-
type: "
|
|
31846
|
-
description: "
|
|
31850
|
+
type: "Meta Vault" /* META_VAULT */,
|
|
31851
|
+
description: "Automatically allocates funds to the best available yield source in the ecosystem"
|
|
31847
31852
|
},
|
|
31848
31853
|
depositTokens: [
|
|
31849
31854
|
Global.getDefaultTokens().find((token) => token.symbol === params.tokenSymbol)
|
|
@@ -32929,8 +32934,8 @@ function getStrategySettings(lstSymbol, underlyingSymbol, addresses, isPreview =
|
|
|
32929
32934
|
launchBlock: 0,
|
|
32930
32935
|
type: "Other",
|
|
32931
32936
|
vaultType: {
|
|
32932
|
-
type: "
|
|
32933
|
-
description:
|
|
32937
|
+
type: "Looping" /* LOOPING */,
|
|
32938
|
+
description: `Creates leveraged looping position on ${lstSymbol} by borrowing ${underlyingSymbol} to increase yield`
|
|
32934
32939
|
},
|
|
32935
32940
|
depositTokens: [
|
|
32936
32941
|
Global.getDefaultTokens().find(
|
package/package.json
CHANGED
|
@@ -2310,6 +2310,9 @@ function getLSTFAQs(lstSymbol: string): FAQ[] {
|
|
|
2310
2310
|
]
|
|
2311
2311
|
}
|
|
2312
2312
|
|
|
2313
|
+
const vaultTypeDescription = 'Automatically collects fees and rebalances positions on Ekubo to optimize yield';
|
|
2314
|
+
const vaultType = VaultType.AUTOMATED_LP;
|
|
2315
|
+
|
|
2313
2316
|
const xSTRKSTRK: IStrategyMetadata<CLVaultStrategySettings> = {
|
|
2314
2317
|
id: "ekubo_cl_xstrkstrk",
|
|
2315
2318
|
name: "Ekubo xSTRK/STRK",
|
|
@@ -2320,8 +2323,8 @@ const xSTRKSTRK: IStrategyMetadata<CLVaultStrategySettings> = {
|
|
|
2320
2323
|
launchBlock: 1209881,
|
|
2321
2324
|
type: "Other",
|
|
2322
2325
|
vaultType: {
|
|
2323
|
-
type:
|
|
2324
|
-
description:
|
|
2326
|
+
type: vaultType,
|
|
2327
|
+
description: vaultTypeDescription
|
|
2325
2328
|
},
|
|
2326
2329
|
// must be same order as poolKey token0 and token1
|
|
2327
2330
|
depositTokens: [
|
|
@@ -2513,8 +2516,8 @@ const createLSTStrategy = (params: {
|
|
|
2513
2516
|
address: ContractAddr.from(params.address),
|
|
2514
2517
|
launchBlock: params.launchBlock,
|
|
2515
2518
|
vaultType: {
|
|
2516
|
-
type:
|
|
2517
|
-
description:
|
|
2519
|
+
type: vaultType,
|
|
2520
|
+
description: vaultTypeDescription
|
|
2518
2521
|
},
|
|
2519
2522
|
depositTokens: [
|
|
2520
2523
|
Global.getDefaultTokens().find(
|
|
@@ -2693,8 +2696,8 @@ const createRe7Strategy = (
|
|
|
2693
2696
|
address: ContractAddr.from(address),
|
|
2694
2697
|
launchBlock,
|
|
2695
2698
|
vaultType: {
|
|
2696
|
-
type:
|
|
2697
|
-
description:
|
|
2699
|
+
type: vaultType,
|
|
2700
|
+
description: vaultTypeDescription
|
|
2698
2701
|
},
|
|
2699
2702
|
depositTokens: [
|
|
2700
2703
|
Global.getDefaultTokens().find(
|
package/src/strategies/sensei.ts
CHANGED
|
@@ -579,8 +579,8 @@ export const SenseiStrategies: IStrategyMetadata<SenseiVaultSettings>[] =
|
|
|
579
579
|
logo: "https://assets.troves.fi/integrations/unwraplabs/white.png"
|
|
580
580
|
},
|
|
581
581
|
vaultType: {
|
|
582
|
-
type: VaultType.
|
|
583
|
-
description: "
|
|
582
|
+
type: VaultType.LOOPING,
|
|
583
|
+
description: "Creates leveraged looping position on xSTRK by borrowing STRK to increase yield"
|
|
584
584
|
},
|
|
585
585
|
depositTokens: [
|
|
586
586
|
Global.getDefaultTokens().find((t) => t.symbol === "STRK")!
|
|
@@ -1269,8 +1269,8 @@ function getStrategySettings(
|
|
|
1269
1269
|
launchBlock: 0,
|
|
1270
1270
|
type: "Other",
|
|
1271
1271
|
vaultType: {
|
|
1272
|
-
type: VaultType.
|
|
1273
|
-
description:
|
|
1272
|
+
type: VaultType.LOOPING,
|
|
1273
|
+
description: `Creates leveraged looping position on ${lstSymbol} by borrowing ${underlyingSymbol} to increase yield`
|
|
1274
1274
|
},
|
|
1275
1275
|
depositTokens: [
|
|
1276
1276
|
Global.getDefaultTokens().find(
|
|
@@ -1312,8 +1312,8 @@ const createUniversalStrategy = (params: {
|
|
|
1312
1312
|
launchBlock: 0,
|
|
1313
1313
|
type: "ERC4626" as const,
|
|
1314
1314
|
vaultType: {
|
|
1315
|
-
type: VaultType.
|
|
1316
|
-
description: "
|
|
1315
|
+
type: VaultType.META_VAULT,
|
|
1316
|
+
description: "Automatically allocates funds to the best available yield source in the ecosystem"
|
|
1317
1317
|
},
|
|
1318
1318
|
depositTokens: [
|
|
1319
1319
|
Global.getDefaultTokens().find((token) => token.symbol === params.tokenSymbol)!
|
|
@@ -1033,7 +1033,7 @@ const createVesuRebalanceSettings = (tokenSymbol: string): StrategySettings => {
|
|
|
1033
1033
|
return {
|
|
1034
1034
|
maxTVL: Web3Number.fromWei("0", depositToken.decimals),
|
|
1035
1035
|
isPaused: false,
|
|
1036
|
-
liveStatus: StrategyLiveStatus.
|
|
1036
|
+
liveStatus: StrategyLiveStatus.DEPRECATED,
|
|
1037
1037
|
isAudited: true,
|
|
1038
1038
|
isInstantWithdrawal: true,
|
|
1039
1039
|
quoteToken: depositToken,
|
|
@@ -1055,8 +1055,8 @@ const createVesuRebalanceStrategy = (
|
|
|
1055
1055
|
launchBlock: 0,
|
|
1056
1056
|
type: "ERC4626" as const,
|
|
1057
1057
|
vaultType: {
|
|
1058
|
-
type: VaultType.
|
|
1059
|
-
description: "
|
|
1058
|
+
type: VaultType.META_VAULT,
|
|
1059
|
+
description: "Automatically diversify {{TOKEN}} holdings into different Vesu pools while reducing risk and maximizing yield. Defi spring STRK Rewards are auto-compounded as well."
|
|
1060
1060
|
},
|
|
1061
1061
|
depositTokens: [
|
|
1062
1062
|
Global.getDefaultTokens().find((t) => t.symbol === tokenSymbol)!
|