Skip to content

Commit 6920538

Browse files
authored
popcorn: add veVCX staking (DefiLlama#8659)
1 parent d1bbeff commit 6920538

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

projects/popcorn/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
const { ADDRESSES } = require("./constants");
22
const { addVaultToTVL } = require("./vault");
33
const { addFraxVaultToTVL } = require("./fraxVault");
4+
const { staking } = require("../helper/staking");
45

56
function getTVL(chain = undefined) {
67
return async (timestamp, block, chainBlocks, { api }) => {
@@ -16,11 +17,15 @@ function getTVL(chain = undefined) {
1617
}
1718
}
1819

20+
const veVCX = "0x0aB4bC35Ef33089B9082Ca7BB8657D7c4E819a1A";
21+
const WETH_VCX_BAL_LP_TOKEN = "0x577A7f7EE659Aa14Dc16FD384B3F8078E23F1920";
22+
1923
module.exports = {
2024
timetravel: true,
2125
methodology: ``,
2226
ethereum: {
2327
start: 12237585,
28+
staking: staking(veVCX, WETH_VCX_BAL_LP_TOKEN),
2429
tvl: getTVL('ethereum'),
2530
},
2631
bsc: {

0 commit comments

Comments
 (0)