Skip to content

Commit

Permalink
fix zebbu (#12901)
Browse files Browse the repository at this point in the history
  • Loading branch information
Define101 authored Dec 28, 2024
1 parent 17d0f4d commit 661c475
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions projects/zeebu/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,26 @@ const ZBU_ADDRESSES = {
bsc: '0x4D3dc895a9EDb234DfA3e303A196c009dC918f84',
};

const lpTokens = [
'0xC3889F9764d68BDF2e16f237206746344172A147'
];

Object.keys(VOTING_ESCROW_ADDRESSES).forEach(chain => {
module.exports[chain] = {
tvl: () => ({}),
staking: staking(VOTING_ESCROW_ADDRESSES[chain], ZBU_ADDRESSES[chain])
}
})
const stackingcontract = [
'0x45dd22aCe398002b34cB37b363B2F02C7dd47842'
];

module.exports.base.pool2 = staking('0x45dd22aCe398002b34cB37b363B2F02C7dd47842', '0xC3889F9764d68BDF2e16f237206746344172A147')
module.exports = {
ethereum: {
staking: stakings([VOTING_ESCROW_ADDRESSES["ethereum"]], ZBU_ADDRESSES["ethereum"]),
tvl: () => ({})
},
base: {
staking: stakings([VOTING_ESCROW_ADDRESSES["base"]], ZBU_ADDRESSES["base"]),
pool2: pool2s(stackingcontract, lpTokens),
},
bsc: {
staking: stakings([VOTING_ESCROW_ADDRESSES["bsc"]], ZBU_ADDRESSES["bsc"]),
},
methodology:
'Counts ZBU tokens locked in Voting Escrow contracts across Ethereum, Base, and BSC.',
};

0 comments on commit 661c475

Please sign in to comment.