File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,19 @@ const KOM_STAKING_CONTRACT_POLYGON = [
77] ;
88const KOM_TOKEN_CONTRACT_ARBITRUM = '0xA58663FAEF461761e44066ea26c1FCddF2927B80' ;
99const KOM_STAKING_CONTRACT_ARBITRUM = [ "0x5b63bdb6051CcB9c387252D8bd2364D7A86eFC70" ] ;
10+ const KOM_TOKEN_CONTRACT_BSC = '0x3cd886be588685484528cbf6494729922e4e89c6' ;
11+ const KOM_STAKING_CONTRACT_BSC = [ "0x47fEAab70363fBE9eD3eb5E3037c18361FA7Bb74" ] ;
1012
1113module . exports = {
1214 polygon : {
1315 tvl : ( ) => ( { } ) ,
14- staking : stakings ( KOM_STAKING_CONTRACT_POLYGON , KOM_TOKEN_CONTRACT_POLYGON )
16+ staking : ( ) => ( { } ) , // old KOM token staking contract
1517 } ,
1618 arbitrum : {
1719 tvl : ( ) => ( { } ) ,
18- staking : stakings ( KOM_STAKING_CONTRACT_ARBITRUM , KOM_TOKEN_CONTRACT_ARBITRUM )
20+ staking : ( ) => ( { } ) , // old KOM token staking contract
1921 } ,
22+ bsc : {
23+ staking : stakings ( KOM_STAKING_CONTRACT_BSC , KOM_TOKEN_CONTRACT_BSC )
24+ }
2025} ;
You can’t perform that action at this time.
0 commit comments