Skip to content

Commit 76ef653

Browse files
Update Vest Exchange adapter (DefiLlama#11387)
* feat: add vest adapter * Refactor TVL calculation in Vest module * feat: add new addresses to Vest Exchange adapter --------- Co-authored-by: g1nt0ki <[email protected]>
1 parent bccc0b8 commit 76ef653

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

projects/vest/index.js

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,39 @@ module.exports = {
55
methodology: "Total USDC locked in the Vest Exchange.",
66
start: 1710709200,
77
era: {
8-
tvl: staking('0xf7483A1464DeF6b8d5A6Caca4A8ce7E5be8F1F68', ADDRESSES.era.USDC),
8+
tvl: staking([
9+
"0xf7483A1464DeF6b8d5A6Caca4A8ce7E5be8F1F68",
10+
"0x7ccF5BbeC69c790D27dA3b5398B9e0d6D6EeC9F3",
11+
], ADDRESSES.era.USDC),
12+
},
13+
base: {
14+
tvl: staking(
15+
"0xE80F92077131b9890599E418AE323de71cE1C35a",
16+
ADDRESSES.base.USDC
17+
),
18+
},
19+
optimism: {
20+
tvl: staking(
21+
"0xE80F92077131b9890599E418AE323de71cE1C35a",
22+
ADDRESSES.optimism.USDC_CIRCLE
23+
),
24+
},
25+
ethereum: {
26+
tvl: staking(
27+
"0xE80F92077131b9890599E418AE323de71cE1C35a",
28+
ADDRESSES.ethereum.USDC
29+
),
30+
},
31+
polygon: {
32+
tvl: staking(
33+
"0xE80F92077131b9890599E418AE323de71cE1C35a",
34+
ADDRESSES.polygon.USDC_CIRCLE
35+
),
36+
},
37+
arbitrum: {
38+
tvl: staking(
39+
"0x80C526d1c2fddADB3Cd39810cd7A79E07b0EDa00",
40+
ADDRESSES.arbitrum.USDC_CIRCLE
41+
),
942
},
1043
}

0 commit comments

Comments
 (0)