@whisk/steakhouse 0.1.1 → 0.2.1
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/metadata/address-registry.d.ts +5 -4
- package/dist/metadata/address-registry.js +9 -4
- package/dist/metadata/address-registry.js.map +1 -1
- package/dist/metadata/generated/vaults.js +90 -56
- package/dist/metadata/generated/vaults.js.map +1 -1
- package/dist/metadata/index.d.ts +1 -1
- package/dist/metadata/index.js +2 -2
- package/dist/metadata/index.js.map +1 -1
- package/package.json +3 -3
- package/src/metadata/address-registry.ts +14 -5
- package/src/metadata/generated/VAULTS.md +51 -47
- package/src/metadata/generated/vaults.ts +90 -56
- package/src/metadata/index.ts +1 -1
- package/src/metadata/vaults/arbitrum/eth-prime-instant.md +1 -0
- package/src/metadata/vaults/arbitrum/usdc-high-yield-instant-v1.md +3 -1
- package/src/metadata/vaults/arbitrum/usdc-prime-instant.md +1 -0
- package/src/metadata/vaults/arbitrum/usdc-turbo.md +17 -0
- package/src/metadata/vaults/arbitrum/usdt0-high-yield-instant-v1.md +3 -1
- package/src/metadata/vaults/arbitrum/xaut0-turbo.md +17 -0
- package/src/metadata/vaults/base/eth-prime-instant-v2.md +15 -0
- package/src/metadata/vaults/base/eth-prime.md +12 -0
- package/src/metadata/vaults/base/eura-prime.md +1 -0
- package/src/metadata/vaults/base/eurc-prime-instant-v1.md +1 -1
- package/src/metadata/vaults/base/usdc-high-yield-instant-v1.md +3 -1
- package/src/metadata/vaults/base/usdc-high-yield-v1-1.md +1 -0
- package/src/metadata/vaults/base/usdc-prime-instant-v1-a.md +3 -1
- package/src/metadata/vaults/base/usdc-prime-instant-v1-b.md +2 -1
- package/src/metadata/vaults/base/usdc-prime-instant-v2-a.md +9 -0
- package/src/metadata/vaults/katana/ausd-high-yield-instant-v1.md +1 -1
- package/src/metadata/vaults/katana/usdc-high-yield-instant-v1.md +1 -1
- package/src/metadata/vaults/katana/usdc-prime-instant-v1.md +1 -1
- package/src/metadata/vaults/mainnet/ausd-high-yield-grove.md +1 -0
- package/src/metadata/vaults/mainnet/ausd-high-yield-instant-v1.md +2 -2
- package/src/metadata/vaults/mainnet/cbbtc-turbo.md +2 -2
- package/src/metadata/vaults/mainnet/eth-high-yield-smokehouse.md +1 -0
- package/src/metadata/vaults/mainnet/eth-prime-instant-v1.md +2 -2
- package/src/metadata/vaults/mainnet/ethena-usdtb-prime-instant-v1.md +1 -1
- package/src/metadata/vaults/mainnet/eurc-prime-instant-v2.md +1 -0
- package/src/metadata/vaults/mainnet/eurcv-prime-deblock.md +15 -0
- package/src/metadata/vaults/mainnet/usdc-high-yield-instant-v1.md +2 -2
- package/src/metadata/vaults/mainnet/usdc-prime-coinshift.md +1 -0
- package/src/metadata/vaults/mainnet/usdc-prime-instant-v1.md +2 -2
- package/src/metadata/vaults/mainnet/usdc-prime-reservoir-v2.md +1 -0
- package/src/metadata/vaults/mainnet/usdc-prime-rwa.md +1 -0
- package/src/metadata/vaults/mainnet/usdq-prime.md +1 -0
- package/src/metadata/vaults/mainnet/usdr-prime.md +1 -0
- package/src/metadata/vaults/mainnet/usdt-high-yield-instant-v1.md +2 -2
- package/src/metadata/vaults/mainnet/usdt-prime-instant-v1.md +2 -2
- package/src/metadata/vaults/mainnet/usdt-prime-lite.md +1 -0
- package/src/metadata/vaults/monad/ausd-high-yield-instant-v1.md +1 -1
- package/src/metadata/vaults/monad/ausd-high-yield-instant.md +1 -0
- package/src/metadata/vaults/monad/eth-prime-instant-v1.md +1 -1
- package/src/metadata/vaults/monad/eth-prime-instant.md +1 -0
- package/src/metadata/vaults/monad/usdc-high-yield-instant-v1.md +1 -1
- package/src/metadata/vaults/monad/usdc-high-yield-instant.md +1 -0
- package/src/metadata/vaults/monad/usdt0-high-yield-instant.md +1 -0
- package/src/metadata/vaults/polygon/usdc-high-yield-instant.md +1 -0
- package/src/metadata/vaults/base/usdc-prime-instant-v2-b.md +0 -6
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { Address } from './types.js';
|
|
1
|
+
import { Address, VaultConfig } from './types.js';
|
|
2
2
|
import '@whisk/graphql';
|
|
3
3
|
|
|
4
|
-
interface
|
|
4
|
+
interface ChainDeployments {
|
|
5
5
|
readonly boxFactory?: Address;
|
|
6
|
+
readonly vaults: readonly VaultConfig[];
|
|
6
7
|
}
|
|
7
|
-
declare function
|
|
8
|
+
declare function getChainDeployments(chainId: number): ChainDeployments;
|
|
8
9
|
|
|
9
|
-
export { type
|
|
10
|
+
export { type ChainDeployments, getChainDeployments };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getAddress } from "viem";
|
|
2
2
|
import { arbitrum, base, mainnet } from "viem/chains";
|
|
3
|
-
|
|
3
|
+
import { STEAKHOUSE_VAULTS } from "./generated/vaults.js";
|
|
4
|
+
const singletonContracts = {
|
|
4
5
|
[mainnet.id]: {
|
|
5
6
|
boxFactory: getAddress("0xcF23d316e7C415a70836Ec9E68568C3cD82EBFc4")
|
|
6
7
|
},
|
|
@@ -11,10 +12,14 @@ const addressesRegistry = {
|
|
|
11
12
|
boxFactory: getAddress("0x72576c537e25AeCb3026E5c8EF4B90436E22A333")
|
|
12
13
|
}
|
|
13
14
|
};
|
|
14
|
-
|
|
15
|
-
|
|
15
|
+
const vaultsByChain = Map.groupBy(STEAKHOUSE_VAULTS, (v) => v.chainId);
|
|
16
|
+
function getChainDeployments(chainId) {
|
|
17
|
+
return {
|
|
18
|
+
...singletonContracts[chainId] ?? {},
|
|
19
|
+
vaults: vaultsByChain.get(chainId) ?? []
|
|
20
|
+
};
|
|
16
21
|
}
|
|
17
22
|
export {
|
|
18
|
-
|
|
23
|
+
getChainDeployments
|
|
19
24
|
};
|
|
20
25
|
//# sourceMappingURL=address-registry.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/metadata/address-registry.ts"],"sourcesContent":["import { getAddress } from \"viem\"\nimport { arbitrum, base, mainnet } from \"viem/chains\"\nimport type { Address } from \"./types.js\"\n\nexport interface
|
|
1
|
+
{"version":3,"sources":["../../src/metadata/address-registry.ts"],"sourcesContent":["import { getAddress } from \"viem\"\nimport { arbitrum, base, mainnet } from \"viem/chains\"\nimport { STEAKHOUSE_VAULTS } from \"./generated/vaults.js\"\nimport type { Address, VaultConfig } from \"./types.js\"\n\nexport interface ChainDeployments {\n readonly boxFactory?: Address\n\n readonly vaults: readonly VaultConfig[]\n}\n\nconst singletonContracts: Record<number, Omit<ChainDeployments, \"vaults\">> = {\n [mainnet.id]: {\n boxFactory: getAddress(\"0xcF23d316e7C415a70836Ec9E68568C3cD82EBFc4\"),\n },\n [base.id]: {\n boxFactory: getAddress(\"0x846365F9A09aeB7005127C6060876C82F7F70c0b\"),\n },\n [arbitrum.id]: {\n boxFactory: getAddress(\"0x72576c537e25AeCb3026E5c8EF4B90436E22A333\"),\n },\n}\n\nconst vaultsByChain = Map.groupBy(STEAKHOUSE_VAULTS, (v) => v.chainId)\n\nexport function getChainDeployments(chainId: number): ChainDeployments {\n return {\n ...(singletonContracts[chainId] ?? {}),\n\n vaults: vaultsByChain.get(chainId) ?? [],\n }\n}\n"],"mappings":"AAAA,SAAS,kBAAkB;AAC3B,SAAS,UAAU,MAAM,eAAe;AACxC,SAAS,yBAAyB;AASlC,MAAM,qBAAuE;AAAA,EAC3E,CAAC,QAAQ,EAAE,GAAG;AAAA,IACZ,YAAY,WAAW,4CAA4C;AAAA,EACrE;AAAA,EACA,CAAC,KAAK,EAAE,GAAG;AAAA,IACT,YAAY,WAAW,4CAA4C;AAAA,EACrE;AAAA,EACA,CAAC,SAAS,EAAE,GAAG;AAAA,IACb,YAAY,WAAW,4CAA4C;AAAA,EACrE;AACF;AAEA,MAAM,gBAAgB,IAAI,QAAQ,mBAAmB,CAAC,MAAM,EAAE,OAAO;AAE9D,SAAS,oBAAoB,SAAmC;AACrE,SAAO;AAAA,IACL,GAAI,mBAAmB,OAAO,KAAK,CAAC;AAAA,IAEpC,QAAQ,cAAc,IAAI,OAAO,KAAK,CAAC;AAAA,EACzC;AACF;","names":[]}
|
|
@@ -4,16 +4,16 @@ const STEAKHOUSE_VAULTS = [
|
|
|
4
4
|
address: "0x0623a67D69bB2F59D266897A15dC1509d291D631",
|
|
5
5
|
protocol: "morpho_v1",
|
|
6
6
|
strategy: "Prime",
|
|
7
|
-
isListed:
|
|
7
|
+
isListed: false
|
|
8
8
|
},
|
|
9
9
|
{
|
|
10
10
|
chainId: 42161,
|
|
11
11
|
address: "0x5c0C306Aaa9F877de636f4d5822cA9F2E81563BA",
|
|
12
12
|
protocol: "morpho_v1",
|
|
13
|
-
name: "
|
|
14
|
-
description: "
|
|
13
|
+
name: "USDC High Yield Instant",
|
|
14
|
+
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse.financial/earn/42161/0xbeeff1d5de8f79ff37a151681100b039661da518)**\n\nAllocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nHigh Yield Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/high-yield-instant)) maximizes exposure to repo markets on a wide range of collateral.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of CC or higher to mitigate solvency risks. The aggregated target maturity is less than one day with concentration limits on risk-tiers for underlying collateral.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
15
15
|
strategy: "High Yield",
|
|
16
|
-
isListed:
|
|
16
|
+
isListed: false
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
19
|
chainId: 42161,
|
|
@@ -29,16 +29,25 @@ const STEAKHOUSE_VAULTS = [
|
|
|
29
29
|
address: "0x250CF7c82bAc7cB6cf899b6052979d4B5BA1f9ca",
|
|
30
30
|
protocol: "morpho_v1",
|
|
31
31
|
strategy: "Prime",
|
|
32
|
+
isListed: false
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
chainId: 42161,
|
|
36
|
+
address: "0xBEEFFF13dD098De415e07F033daE65205B31A894",
|
|
37
|
+
protocol: "morpho_v2",
|
|
38
|
+
name: "USDC Turbo",
|
|
39
|
+
description: "**High Leverage**\n\nTurbo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/turbo)) target a 10% liquidity rate held in repo and the remainder programmatically allocated to a simple leverage strategy.\n\nNAV accumulates when the cost of borrowing is persistently lower than the return on the underlying strategy. NAV decreases when the borrow cost is higher. The collateral selected fits our [risk framework](https://www.steakhouse.financial/docs/risk-management) to mitigate solvency risks.\n\nPositions are intended to be held for an extended period (>30 days) to avoid slippage from swapping into positions from diluting the NAV.\n\nUses [Steakhouse Box](https://www.steakhouse.financial/docs/products/infrastructure/box-vaults) custom adapters to extend the noncustodial features of Morpho v2 vaults to additional strategies beyond borrow/lend. As this vault does not use the Morpho adapter registry, it is not available on the Morpho frontend.",
|
|
40
|
+
strategy: "Turbo",
|
|
32
41
|
isListed: true
|
|
33
42
|
},
|
|
34
43
|
{
|
|
35
44
|
chainId: 42161,
|
|
36
45
|
address: "0x4739E2c293bDCD835829aA7c5d7fBdee93565D1a",
|
|
37
46
|
protocol: "morpho_v1",
|
|
38
|
-
name: "
|
|
39
|
-
description: "
|
|
47
|
+
name: "USDT0 High Yield Instant",
|
|
48
|
+
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse.financial/earn/42161/0xbeeff77ce5c059445714e6a3490e273fe7f2492f)**\n\nAllocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nHigh Yield Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/high-yield-instant)) maximizes exposure to repo markets on a wide range of collateral.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of CC or higher to mitigate solvency risks. The aggregated target maturity is less than one day with concentration limits on risk-tiers for underlying collateral.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
40
49
|
strategy: "High Yield",
|
|
41
|
-
isListed:
|
|
50
|
+
isListed: false
|
|
42
51
|
},
|
|
43
52
|
{
|
|
44
53
|
chainId: 42161,
|
|
@@ -49,10 +58,31 @@ const STEAKHOUSE_VAULTS = [
|
|
|
49
58
|
strategy: "High Yield",
|
|
50
59
|
isListed: true
|
|
51
60
|
},
|
|
61
|
+
{
|
|
62
|
+
chainId: 42161,
|
|
63
|
+
address: "0xBEEFFFFE0E9b26bBe3B5cE851539366991C3BF39",
|
|
64
|
+
protocol: "morpho_v2",
|
|
65
|
+
name: "XAUT0 Turbo",
|
|
66
|
+
description: "**Carry involves leverage**\n\nCarry vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/turbo)) involve borrowing against one collateral type to earn a higher yield in the loan asset.\n\nNAV accumulates when the cost of borrowing is persistently lower than the return on the underlying strategy. NAV decreases when the borrow cost is higher. The collateral selected fits our [risk framework](https://www.steakhouse.financial/docs/risk-management) to mitigate solvency risks.\n\nPositions are intended to be held for an extended period (>30 days) to avoid slippage from swapping into positions from diluting the NAV.\n\nUses [Steakhouse Box](https://www.steakhouse.financial/docs/products/infrastructure/box-vaults) custom adapters to extend the noncustodial features of Morpho v2 vaults to additional strategies beyond borrow/lend. As this vault does not use the Morpho adapter registry, it is not available on the Morpho frontend.",
|
|
67
|
+
strategy: "Turbo",
|
|
68
|
+
isListed: true
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
chainId: 8453,
|
|
72
|
+
address: "0xbeef00f0A818894a2Cf111644A5098421611100E",
|
|
73
|
+
protocol: "morpho_v2",
|
|
74
|
+
name: "ETH Prime Instant",
|
|
75
|
+
description: "Allocating only to Morpho borrow/lend.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
76
|
+
strategy: "Prime",
|
|
77
|
+
isListed: true
|
|
78
|
+
},
|
|
52
79
|
{
|
|
53
80
|
chainId: 8453,
|
|
54
81
|
address: "0xbEEf050a7485865A7a8d8Ca0CC5f7536b7a3443e",
|
|
55
82
|
protocol: "morpho_v1",
|
|
83
|
+
name: "ETH High Yield Instant",
|
|
84
|
+
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse.financial/earn/8453/0xbeef00f0A818894a2Cf111644A5098421611100E)**\n\nAllocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
85
|
+
strategy: "High Yield",
|
|
56
86
|
isListed: false
|
|
57
87
|
},
|
|
58
88
|
{
|
|
@@ -69,7 +99,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
69
99
|
address: "0xBEeFA28D5e56d41D35df760AB53B94D9FfD7051F",
|
|
70
100
|
protocol: "morpho_v1",
|
|
71
101
|
strategy: "Prime",
|
|
72
|
-
isListed:
|
|
102
|
+
isListed: false
|
|
73
103
|
},
|
|
74
104
|
{
|
|
75
105
|
chainId: 8453,
|
|
@@ -81,7 +111,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
81
111
|
chainId: 8453,
|
|
82
112
|
address: "0xBeEF086b8807Dc5E5A1740C5E3a7C4c366eA6ab5",
|
|
83
113
|
protocol: "morpho_v1",
|
|
84
|
-
name: "
|
|
114
|
+
name: "EURC Prime Instant",
|
|
85
115
|
description: "Allocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
86
116
|
strategy: "Prime",
|
|
87
117
|
isListed: true
|
|
@@ -105,8 +135,8 @@ const STEAKHOUSE_VAULTS = [
|
|
|
105
135
|
chainId: 8453,
|
|
106
136
|
address: "0xCBeeF01994E24a60f7DCB8De98e75AD8BD4Ad60d",
|
|
107
137
|
protocol: "morpho_v1",
|
|
108
|
-
name: "
|
|
109
|
-
description: "
|
|
138
|
+
name: "USDC High Yield Instant",
|
|
139
|
+
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse.financial/earn/8453/0xbeeff7ae5e00aae3db302e4b0d8c883810a58100)**\n\nAllocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nHigh Yield Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/high-yield-instant)) maximizes exposure to repo markets on a wide range of collateral.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of CC or higher to mitigate solvency risks. The aggregated target maturity is less than one day with concentration limits on risk-tiers for underlying collateral.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
110
140
|
strategy: "High Yield",
|
|
111
141
|
isListed: true
|
|
112
142
|
},
|
|
@@ -124,7 +154,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
124
154
|
address: "0xBEEFA7B88064FeEF0cEe02AAeBBd95D30df3878F",
|
|
125
155
|
protocol: "morpho_v1",
|
|
126
156
|
strategy: "High Yield",
|
|
127
|
-
isListed:
|
|
157
|
+
isListed: false
|
|
128
158
|
},
|
|
129
159
|
{
|
|
130
160
|
chainId: 8453,
|
|
@@ -142,8 +172,8 @@ const STEAKHOUSE_VAULTS = [
|
|
|
142
172
|
chainId: 8453,
|
|
143
173
|
address: "0xBEEFE94c8aD530842bfE7d8B397938fFc1cb83b2",
|
|
144
174
|
protocol: "morpho_v1",
|
|
145
|
-
name: "
|
|
146
|
-
description: "
|
|
175
|
+
name: "USDC Prime Instant",
|
|
176
|
+
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse.financial/earn/8453/0xbeef0e0834849aCC03f0089F01f4F1Eeb06873C9)**\n\nAllocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
147
177
|
strategy: "Prime",
|
|
148
178
|
isListed: true
|
|
149
179
|
},
|
|
@@ -151,22 +181,17 @@ const STEAKHOUSE_VAULTS = [
|
|
|
151
181
|
chainId: 8453,
|
|
152
182
|
address: "0xbeeF010f9cb27031ad51e3333f9aF9C6B1228183",
|
|
153
183
|
protocol: "morpho_v1",
|
|
154
|
-
name: "
|
|
184
|
+
name: "USDC Prime Instant",
|
|
155
185
|
description: "Allocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
156
186
|
strategy: "Prime",
|
|
157
|
-
isListed:
|
|
187
|
+
isListed: false
|
|
158
188
|
},
|
|
159
189
|
{
|
|
160
190
|
chainId: 8453,
|
|
161
191
|
address: "0xbeef0e0834849aCC03f0089F01f4F1Eeb06873C9",
|
|
162
192
|
protocol: "morpho_v2",
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
chainId: 8453,
|
|
168
|
-
address: "0xbeef00f0A818894a2Cf111644A5098421611100E",
|
|
169
|
-
protocol: "morpho_v2",
|
|
193
|
+
name: "USDC Prime Instant",
|
|
194
|
+
description: "Allocating only to Morpho borrow/lend.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
170
195
|
strategy: "Prime",
|
|
171
196
|
isListed: true
|
|
172
197
|
},
|
|
@@ -213,7 +238,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
213
238
|
chainId: 747474,
|
|
214
239
|
address: "0x82c4C641CCc38719ae1f0FBd16A64808d838fDfD",
|
|
215
240
|
protocol: "morpho_v1",
|
|
216
|
-
name: "
|
|
241
|
+
name: "AUSD High Yield Instant",
|
|
217
242
|
description: "Allocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nHigh Yield Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/high-yield-instant)) maximizes exposure to repo markets on a wide range of collateral.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of CC or higher to mitigate solvency risks. The aggregated target maturity is less than one day with concentration limits on risk-tiers for underlying collateral.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
218
243
|
strategy: "High Yield",
|
|
219
244
|
isListed: true
|
|
@@ -228,7 +253,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
228
253
|
chainId: 747474,
|
|
229
254
|
address: "0x1445A01a57D7B7663CfD7B4EE0a8Ec03B379aabD",
|
|
230
255
|
protocol: "morpho_v1",
|
|
231
|
-
name: "
|
|
256
|
+
name: "USDC High Yield Instant",
|
|
232
257
|
description: "Allocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nHigh Yield Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/high-yield-instant)) maximizes exposure to repo markets on a wide range of collateral.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of CC or higher to mitigate solvency risks. The aggregated target maturity is less than one day with concentration limits on risk-tiers for underlying collateral.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
233
258
|
strategy: "High Yield",
|
|
234
259
|
isListed: true
|
|
@@ -237,7 +262,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
237
262
|
chainId: 747474,
|
|
238
263
|
address: "0x61D4F9D3797BA4dA152238c53a6f93Fb665C3c1d",
|
|
239
264
|
protocol: "morpho_v1",
|
|
240
|
-
name: "
|
|
265
|
+
name: "USDC Prime Instant",
|
|
241
266
|
description: "Allocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
242
267
|
strategy: "Prime",
|
|
243
268
|
isListed: true
|
|
@@ -247,14 +272,14 @@ const STEAKHOUSE_VAULTS = [
|
|
|
247
272
|
address: "0xBEEfF0d672ab7F5018dFB614c93981045D4aA98a",
|
|
248
273
|
protocol: "morpho_v2",
|
|
249
274
|
strategy: "High Yield",
|
|
250
|
-
isListed:
|
|
275
|
+
isListed: false
|
|
251
276
|
},
|
|
252
277
|
{
|
|
253
278
|
chainId: 1,
|
|
254
279
|
address: "0xBEeff2b772fa2F443cbd1Dd6D33b0C4bebF4aeb7",
|
|
255
280
|
protocol: "morpho_v1",
|
|
256
|
-
name: "
|
|
257
|
-
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse
|
|
281
|
+
name: "AUSD High Yield Instant",
|
|
282
|
+
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse.financial/earn/1/0xbeeff89abb7815ccd5182bd1ff82c4a4f8fcb13d)**\n\nAllocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nHigh Yield Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/high-yield-instant)) maximizes exposure to repo markets on a wide range of collateral.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of CC or higher to mitigate solvency risks. The aggregated target maturity is less than one day with concentration limits on risk-tiers for underlying collateral.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
258
283
|
strategy: "High Yield",
|
|
259
284
|
isListed: true
|
|
260
285
|
},
|
|
@@ -272,7 +297,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
272
297
|
address: "0xBEEFFF506B52B3323c48aFE0Cb405A284F0f9cF2",
|
|
273
298
|
protocol: "morpho_v2",
|
|
274
299
|
name: "cbBTC Turbo",
|
|
275
|
-
description: "**
|
|
300
|
+
description: "**Carry involves leverage**\n\nCarry vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/turbo)) involve borrowing against one collateral type to earn a higher yield in the loan asset.\n\nNAV accumulates when the cost of borrowing is persistently lower than the return on the underlying strategy. NAV decreases when the borrow cost is higher. The collateral selected fits our [risk framework](https://www.steakhouse.financial/docs/risk-management) to mitigate solvency risks.\n\nPositions are intended to be held for an extended period (>30 days) to avoid slippage from swapping into positions from diluting the NAV.\n\nUses [Steakhouse Box](https://www.steakhouse.financial/docs/products/infrastructure/box-vaults) custom adapters to extend the noncustodial features of Morpho v2 vaults to additional strategies beyond borrow/lend. As this vault does not use the Morpho adapter registry, it is not available on the Morpho frontend.",
|
|
276
301
|
strategy: "Turbo",
|
|
277
302
|
isListed: true
|
|
278
303
|
},
|
|
@@ -287,14 +312,14 @@ const STEAKHOUSE_VAULTS = [
|
|
|
287
312
|
address: "0xbEEF36A5C1372F8D7d211527FCE9f83FE02d8A73",
|
|
288
313
|
protocol: "morpho_v1",
|
|
289
314
|
strategy: "High Yield",
|
|
290
|
-
isListed:
|
|
315
|
+
isListed: false
|
|
291
316
|
},
|
|
292
317
|
{
|
|
293
318
|
chainId: 1,
|
|
294
319
|
address: "0xBEEf050ecd6a16c4e7bfFbB52Ebba7846C4b8cD4",
|
|
295
320
|
protocol: "morpho_v1",
|
|
296
|
-
name: "
|
|
297
|
-
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse
|
|
321
|
+
name: "ETH Prime Instant",
|
|
322
|
+
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse.financial/earn/1/0xbeef0046fcab1de47e41fb75bb3dc4dfc94108e3)**\n\nAllocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
298
323
|
strategy: "Prime",
|
|
299
324
|
isListed: true
|
|
300
325
|
},
|
|
@@ -320,7 +345,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
320
345
|
chainId: 1,
|
|
321
346
|
address: "0xBeEFC1CDAfc5b4a649b54D07AFc6bF0f75C6F4E2",
|
|
322
347
|
protocol: "morpho_v1",
|
|
323
|
-
name: "
|
|
348
|
+
name: "Ethena USDtb Prime Instant",
|
|
324
349
|
description: "Allocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
325
350
|
strategy: "Prime",
|
|
326
351
|
isListed: true
|
|
@@ -330,6 +355,15 @@ const STEAKHOUSE_VAULTS = [
|
|
|
330
355
|
address: "0xbeef003E31546C7210687f1A7b40d096BE83ec58",
|
|
331
356
|
protocol: "morpho_v2",
|
|
332
357
|
strategy: "Prime",
|
|
358
|
+
isListed: false
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
chainId: 1,
|
|
362
|
+
address: "0xbEef00e64ceB8908B58025793fE46Ee2038c2315",
|
|
363
|
+
protocol: "morpho_v2",
|
|
364
|
+
name: "Deblock x EURCV Prime",
|
|
365
|
+
description: "Allocating only to Morpho borrow/lend.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
366
|
+
strategy: "Prime",
|
|
333
367
|
isListed: true
|
|
334
368
|
},
|
|
335
369
|
{
|
|
@@ -387,8 +421,8 @@ const STEAKHOUSE_VAULTS = [
|
|
|
387
421
|
chainId: 1,
|
|
388
422
|
address: "0xBEeFFF209270748ddd194831b3fa287a5386f5bC",
|
|
389
423
|
protocol: "morpho_v1",
|
|
390
|
-
name: "
|
|
391
|
-
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse
|
|
424
|
+
name: "USDC High Yield Instant",
|
|
425
|
+
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse.financial/earn/1/0xbeeff2c5bf38f90e3482a8b19f12e5a6d2fca757)**\n\nAllocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nHigh Yield Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/high-yield-instant)) maximizes exposure to repo markets on a wide range of collateral.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of CC or higher to mitigate solvency risks. The aggregated target maturity is less than one day with concentration limits on risk-tiers for underlying collateral.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
392
426
|
strategy: "High Yield",
|
|
393
427
|
isListed: true
|
|
394
428
|
},
|
|
@@ -430,7 +464,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
430
464
|
address: "0x7204B7Dbf9412567835633B6F00C3Edc3a8D6330",
|
|
431
465
|
protocol: "morpho_v1",
|
|
432
466
|
strategy: "Prime",
|
|
433
|
-
isListed:
|
|
467
|
+
isListed: false
|
|
434
468
|
},
|
|
435
469
|
{
|
|
436
470
|
chainId: 1,
|
|
@@ -454,8 +488,8 @@ const STEAKHOUSE_VAULTS = [
|
|
|
454
488
|
chainId: 1,
|
|
455
489
|
address: "0xBEEF01735c132Ada46AA9aA4c54623cAA92A64CB",
|
|
456
490
|
protocol: "morpho_v1",
|
|
457
|
-
name: "
|
|
458
|
-
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse
|
|
491
|
+
name: "USDC Prime Instant",
|
|
492
|
+
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse.financial/earn/1/0xbeef088055857739c12cd3765f20b7679def0f51)**\n\nAllocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
459
493
|
strategy: "Prime",
|
|
460
494
|
isListed: true
|
|
461
495
|
},
|
|
@@ -473,7 +507,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
473
507
|
address: "0xBEeFF047C03714965a54b671A37C18beF6b96210",
|
|
474
508
|
protocol: "morpho_v2",
|
|
475
509
|
strategy: "Prime",
|
|
476
|
-
isListed:
|
|
510
|
+
isListed: false
|
|
477
511
|
},
|
|
478
512
|
{
|
|
479
513
|
chainId: 1,
|
|
@@ -486,7 +520,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
486
520
|
address: "0x6D4e530B8431a52FFDA4516BA4Aadc0951897F8C",
|
|
487
521
|
protocol: "morpho_v1",
|
|
488
522
|
strategy: "Prime",
|
|
489
|
-
isListed:
|
|
523
|
+
isListed: false
|
|
490
524
|
},
|
|
491
525
|
{
|
|
492
526
|
chainId: 1,
|
|
@@ -514,21 +548,21 @@ const STEAKHOUSE_VAULTS = [
|
|
|
514
548
|
address: "0xA1b60d96e5C50dA627095B9381dc5a46AF1a9a42",
|
|
515
549
|
protocol: "morpho_v1",
|
|
516
550
|
strategy: "Prime",
|
|
517
|
-
isListed:
|
|
551
|
+
isListed: false
|
|
518
552
|
},
|
|
519
553
|
{
|
|
520
554
|
chainId: 1,
|
|
521
555
|
address: "0x30881Baa943777f92DC934d53D3bFdF33382cab3",
|
|
522
556
|
protocol: "morpho_v1",
|
|
523
557
|
strategy: "Prime",
|
|
524
|
-
isListed:
|
|
558
|
+
isListed: false
|
|
525
559
|
},
|
|
526
560
|
{
|
|
527
561
|
chainId: 1,
|
|
528
562
|
address: "0xA0804346780b4c2e3bE118ac957D1DB82F9d7484",
|
|
529
563
|
protocol: "morpho_v1",
|
|
530
|
-
name: "
|
|
531
|
-
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse
|
|
564
|
+
name: "USDT High Yield Instant",
|
|
565
|
+
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse.financial/earn/1/0xbeeff07d991c04cd640de9f15c08ba59c4fedeb7)**\n\nAllocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nHigh Yield Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/high-yield-instant)) maximizes exposure to repo markets on a wide range of collateral.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of CC or higher to mitigate solvency risks. The aggregated target maturity is less than one day with concentration limits on risk-tiers for underlying collateral.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
532
566
|
strategy: "High Yield",
|
|
533
567
|
isListed: true
|
|
534
568
|
},
|
|
@@ -551,8 +585,8 @@ const STEAKHOUSE_VAULTS = [
|
|
|
551
585
|
chainId: 1,
|
|
552
586
|
address: "0xbEef047a543E45807105E51A8BBEFCc5950fcfBa",
|
|
553
587
|
protocol: "morpho_v1",
|
|
554
|
-
name: "
|
|
555
|
-
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse
|
|
588
|
+
name: "USDT Prime Instant",
|
|
589
|
+
description: "**Consider switching to the [Morpho v2 equivalent](https://app.steakhouse.financial/earn/1/0xbeef003c68896c7d2c3c60d363e8d71a49ab2bf9)**\n\nAllocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
556
590
|
strategy: "Prime",
|
|
557
591
|
isListed: true
|
|
558
592
|
},
|
|
@@ -570,7 +604,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
570
604
|
address: "0x097FFEDb80d4b2Ca6105a07a4D90eB739C45A666",
|
|
571
605
|
protocol: "morpho_v1",
|
|
572
606
|
strategy: "Prime",
|
|
573
|
-
isListed:
|
|
607
|
+
isListed: false
|
|
574
608
|
},
|
|
575
609
|
{
|
|
576
610
|
chainId: 1,
|
|
@@ -594,7 +628,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
594
628
|
chainId: 143,
|
|
595
629
|
address: "0xBC03E505EE65f9fAa68a2D7e5A74452858C16D29",
|
|
596
630
|
protocol: "morpho_v1",
|
|
597
|
-
name: "
|
|
631
|
+
name: "AUSD High Yield Instant",
|
|
598
632
|
description: "Allocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nHigh Yield Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/high-yield-instant)) maximizes exposure to repo markets on a wide range of collateral.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of CC or higher to mitigate solvency risks. The aggregated target maturity is less than one day with concentration limits on risk-tiers for underlying collateral.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
599
633
|
strategy: "High Yield",
|
|
600
634
|
isListed: true
|
|
@@ -604,13 +638,13 @@ const STEAKHOUSE_VAULTS = [
|
|
|
604
638
|
address: "0xbeeffeA75cFC4128ebe10C8D7aE22016D215060D",
|
|
605
639
|
protocol: "morpho_v2",
|
|
606
640
|
strategy: "High Yield",
|
|
607
|
-
isListed:
|
|
641
|
+
isListed: false
|
|
608
642
|
},
|
|
609
643
|
{
|
|
610
644
|
chainId: 143,
|
|
611
645
|
address: "0xba8424EBBEd6C51bEa6d6D903B8815838E6a0322",
|
|
612
646
|
protocol: "morpho_v1",
|
|
613
|
-
name: "
|
|
647
|
+
name: "ETH Prime Instant",
|
|
614
648
|
description: "Allocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nPrime Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/prime-instant)) maximizes exposure to repo markets on a blue-chip collateral only.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of AA or higher to mitigate solvency risks. The aggregated target maturity is less than one day.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
615
649
|
strategy: "Prime",
|
|
616
650
|
isListed: true
|
|
@@ -620,13 +654,13 @@ const STEAKHOUSE_VAULTS = [
|
|
|
620
654
|
address: "0xbeef04b01e0275D4ac2e2986256BB14E3Ff6ef42",
|
|
621
655
|
protocol: "morpho_v2",
|
|
622
656
|
strategy: "Prime",
|
|
623
|
-
isListed:
|
|
657
|
+
isListed: false
|
|
624
658
|
},
|
|
625
659
|
{
|
|
626
660
|
chainId: 143,
|
|
627
661
|
address: "0x802c91d807A8DaCA257c4708ab264B6520964e44",
|
|
628
662
|
protocol: "morpho_v1",
|
|
629
|
-
name: "
|
|
663
|
+
name: "USDC High Yield Instant",
|
|
630
664
|
description: "Allocating only to Morpho borrow/lend. Consider upgrading to a Steakhouse Morpho v2 vault for additional rewards, if available.\n\nHigh Yield Instant Repo vaults ([docs](https://www.steakhouse.financial/docs/products/vault-products/current/high-yield-instant)) maximizes exposure to repo markets on a wide range of collateral.\n\nWe target a rating in our [risk framework](https://www.steakhouse.financial/docs/risk-management) of CC or higher to mitigate solvency risks. The aggregated target maturity is less than one day with concentration limits on risk-tiers for underlying collateral.\n\nUses the Morpho adapter registry, and is therefore available on the Morpho frontend.",
|
|
631
665
|
strategy: "High Yield",
|
|
632
666
|
isListed: true
|
|
@@ -636,14 +670,14 @@ const STEAKHOUSE_VAULTS = [
|
|
|
636
670
|
address: "0xbeEFf443C3CbA3E369DA795002243BeaC311aB83",
|
|
637
671
|
protocol: "morpho_v2",
|
|
638
672
|
strategy: "High Yield",
|
|
639
|
-
isListed:
|
|
673
|
+
isListed: false
|
|
640
674
|
},
|
|
641
675
|
{
|
|
642
676
|
chainId: 143,
|
|
643
677
|
address: "0xbeeff300E9A9caeC7beEA740ab8758D33b777509",
|
|
644
678
|
protocol: "morpho_v2",
|
|
645
679
|
strategy: "High Yield",
|
|
646
|
-
isListed:
|
|
680
|
+
isListed: false
|
|
647
681
|
},
|
|
648
682
|
{
|
|
649
683
|
chainId: 137,
|
|
@@ -657,7 +691,7 @@ const STEAKHOUSE_VAULTS = [
|
|
|
657
691
|
address: "0xAcB0DCe4b0FF400AD8F6917f3ca13E434C9ed6bC",
|
|
658
692
|
protocol: "morpho_v1",
|
|
659
693
|
strategy: "High Yield",
|
|
660
|
-
isListed:
|
|
694
|
+
isListed: false
|
|
661
695
|
},
|
|
662
696
|
{
|
|
663
697
|
chainId: 137,
|