Skip to content

Commit 2c2ecb1

Browse files
authored
etherfuse (#17337)
1 parent 0b1aec8 commit 2c2ecb1

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

projects/etherfuse/index.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
const { sumTokens2, } = require("../helper/solana")
2+
3+
const owners = [
4+
'2cbUAqNoySYkG5R7edjm1WLXgtty6PeCRDVJ7zZbodQm', // usdc deposit on mint
5+
'4Lgz21ZmgtgtGikoQy5ZpuCuBCwTZoLx364rHiQwngsH', // usdc-cetes vault
6+
'ETkRSHbbWrzyqt4fFNu7bP29WCDL9kfmatnaMV2EgZGE', // usdc-eurob vault
7+
'H6Fqdwz9Z4dk8hotxLwN3LFx1sMZNZiCyoLWnQjfPzkf', // usdc-gilts vault
8+
'3bYZCXv6rWpbT3zizsTArUdZ4SEmDRMCWtjzasz8nVpK', // usdc-tesouro vault
9+
'HhqQYBYbb3MHT8fiAidoxzH3eE5GvStgrEzkvk9ci9uF' //usdc-ustry vault
10+
]
11+
12+
async function tvl() {
13+
return sumTokens2({ owners });
14+
}
15+
16+
module.exports = {
17+
timetravel: false,
18+
solana: {
19+
tvl,
20+
},
21+
};

0 commit comments

Comments
 (0)