Skip to content

Commit

Permalink
refactor white protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
g1nt0ki committed Feb 21, 2024
1 parent a9a7c22 commit d6e3ef9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions projects/white-protocol/index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
const { staking } = require("../helper/staking");
const { sumTokensExport } = require("../helper/unknownTokens");
const { nullAddress } = require("../helper/unwrapLPs");


const stakingContractAddress = '0xefC170513C4026771279D453EF57cEEb66881929';
const whiteTokenAddress = '0x39B44F9C6e3ed4F1b4F7b01B9176B1F440195a2f';

const LP = '0x177f0bcEF458cb379581A9B8e67E02abfe4a3d08'

module.exports = {
misrepresentedTokens: true,
op_bnb: {
tvl: () => 0,
staking: staking([stakingContractAddress],[whiteTokenAddress, nullAddress]),
tvl: sumTokensExport({ owner: stakingContractAddress, tokens: [nullAddress]}),
staking: sumTokensExport({ owner: stakingContractAddress, tokens: [whiteTokenAddress],lps: [LP]}),
pool2: sumTokensExport({ owner: '0xdB9320dDE030cEF08C615E7547cee98848Bd297e', tokens: [LP]}),
},
};

0 comments on commit d6e3ef9

Please sign in to comment.