Skip to content

Commit c0b2a65

Browse files
authored
add euler & morpho vaults (DefiLlama#17160)
1 parent f5a17b6 commit c0b2a65

File tree

1 file changed

+25
-4
lines changed

1 file changed

+25
-4
lines changed

projects/hyperithm/index.js

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,35 @@
11
const { getCuratorExport } = require("../helper/curators");
22

3-
const configs = {
3+
const vaultConfigs = {
44
methodology: 'Count all assets are deposited in all vaults curated by Hyperithm.',
55
blockchains: {
66
ethereum: {
77
morphoVaultOwners: [
8-
'0x16fa314141C76D4a0675f5e8e3CCBE4E0fA22C7c',
8+
'0xC56EA16EA06B0a6A7b3B03B2f48751e549bE40fD',
9+
'0x16fa314141C76D4a0675f5e8e3CCBE4E0fA22C7c'
910
],
11+
euler: [
12+
'0x3cd3718f8f047aA32F775E2cb4245A164E1C99fB',
13+
]
1014
},
15+
arbitrum: {
16+
morphoVaultOwners: [
17+
'0xC56EA16EA06B0a6A7b3B03B2f48751e549bE40fD',
18+
],
19+
},
20+
hyperliquid: {
21+
morphoVaultOwners: [
22+
'0x51afd54ff95c77A15E40E83DB020908f33557c97',
23+
],
24+
},
25+
plasma: {
26+
erc4626: [
27+
'0xb74760fd26400030620027dd29d19d74d514700e' // Gearbox Hyperithm USDT0
28+
]
29+
}
1130
}
12-
}
31+
};
32+
33+
const adapterExport = getCuratorExport(vaultConfigs);
1334

14-
module.exports = getCuratorExport(configs)
35+
module.exports = adapterExport;

0 commit comments

Comments
 (0)