File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,15 @@ const { sumTokens2 } = require('../helper/unwrapLPs')
44// B-Lucky Protocol Contracts on BSC
55const HOUSE_FUNDING_CONTRACT = '0xA7f03BeAF428801476b1eBB226A5AD434dCFBA50' ;
66const LOTTERY_CONTRACT = '0xe18EAD45d0B0c04293Ad90Fa4E27C561e935AD5E' ;
7+ const LOTTERY_CONTRACT_V2 = '0x98207bb96E5FAE18E930dE1c2AAa27a5A72263CB' ;
78const STAKING_CONTRACT = '0xbB3BFfaCe9C9bf7FeD9ECBB93c0DCF4449e878fe' ;
89const LUCKY_TOKEN = '0x67b47971426bb2180453b3993FF2ec319e704444' ;
910
1011// TVL calculation: BNB and WBNB deposited in House Funding and Lottery contracts
1112async function tvl ( api ) {
1213 // Get BNB and WBNB balance in House Funding and Lottery contracts
1314 return api . sumTokens ( {
14- owners : [ HOUSE_FUNDING_CONTRACT , LOTTERY_CONTRACT ] ,
15+ owners : [ HOUSE_FUNDING_CONTRACT , LOTTERY_CONTRACT , LOTTERY_CONTRACT_V2 ] ,
1516 tokens : [ ADDRESSES . null , ADDRESSES . bsc . WBNB ]
1617 } ) ;
1718}
You can’t perform that action at this time.
0 commit comments