Skip to content

Commit df3f47c

Browse files
dsarvaiyag1nt0ki
andauthored
TVL adapter for ZEEBU (DefiLlama#12867)
Co-authored-by: g1nt0ki <[email protected]>
1 parent 35066f1 commit df3f47c

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

projects/Zeebu/index.js

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
const { stakings } = require("../helper/staking");
2+
const { pool2s } = require("../helper/pool2");
3+
4+
const VOTING_ESCROW_ADDRESSES = {
5+
ethereum: '0x8e76Cdf3b14c540aB54aFa7f8492AC1d16Ecfb35',
6+
base: '0xcf08d1ec5d8e566d95299399307f75f98d6aea03',
7+
bsc: '0xd3e8cD2eDbf252860E02ffb245fD654b1ab30f30',
8+
};
9+
10+
const ZBU_ADDRESSES = {
11+
ethereum: '0xe77f6aCD24185e149e329C1C0F479201b9Ec2f4B',
12+
base: '0x2C8C89C442436CC6C0a77943E09c8Daf49Da3161',
13+
bsc: '0x4D3dc895a9EDb234DfA3e303A196c009dC918f84',
14+
};
15+
16+
const lpTokens = [
17+
'0xC3889F9764d68BDF2e16f237206746344172A147'
18+
];
19+
20+
const stackingcontract = [
21+
'0x45dd22aCe398002b34cB37b363B2F02C7dd47842'
22+
];
23+
24+
module.exports = {
25+
ethereum: {
26+
staking : stakings([VOTING_ESCROW_ADDRESSES["ethereum"]],ZBU_ADDRESSES["ethereum"]),
27+
tvl: () => ({})
28+
},
29+
base: {
30+
staking : stakings([VOTING_ESCROW_ADDRESSES["base"]],ZBU_ADDRESSES["base"]),
31+
pool2: pool2s(stackingcontract,lpTokens),
32+
},
33+
bsc: {
34+
staking : stakings([VOTING_ESCROW_ADDRESSES["bsc"]],ZBU_ADDRESSES["bsc"]),
35+
},
36+
methodology:
37+
'Counts ZBU tokens locked in Voting Escrow contracts across Ethereum, Base, and BSC.',
38+
};

0 commit comments

Comments
 (0)