mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
45 lines
1010 B
JavaScript
45 lines
1010 B
JavaScript
const { getCuratorExport } = require("../helper/curators");
|
|
|
|
const configs = {
|
|
methodology: 'Count all assets are deposited in all vaults curated by Clearstar.',
|
|
blockchains: {
|
|
base: {
|
|
morphoVaultOwners: [
|
|
'0x30988479C2E6a03E7fB65138b94762D41a733458',
|
|
],
|
|
},
|
|
ethereum: {
|
|
morphoVaultOwners: [
|
|
'0x30988479C2E6a03E7fB65138b94762D41a733458',
|
|
],
|
|
},
|
|
polygon: {
|
|
morphoVaultOwners: [
|
|
'0x30988479C2E6a03E7fB65138b94762D41a733458',
|
|
],
|
|
},
|
|
unichain: {
|
|
morphoVaultOwners: [
|
|
'0x30988479C2E6a03E7fB65138b94762D41a733458',
|
|
],
|
|
},
|
|
katana: {
|
|
morphoVaultOwners: [
|
|
'0x30988479C2E6a03E7fB65138b94762D41a733458',
|
|
],
|
|
},
|
|
arbitrum: {
|
|
morphoVaultOwners: [
|
|
'0x30988479C2E6a03E7fB65138b94762D41a733458',
|
|
],
|
|
},
|
|
hemi: {
|
|
morphoVaultOwners: [
|
|
'0x30988479C2E6a03E7fB65138b94762D41a733458'
|
|
],
|
|
},
|
|
}
|
|
}
|
|
|
|
module.exports = getCuratorExport(configs)
|