Life Token is a charity-orientated token on the Binance Smart Chain. Our goal is to aid Suicide Prevention charities all over the world, to help save lives. We are a BNB-redistribution deflationary token, empowering the long term holders with a 18% BNB reward on each transaction.
We have clear goals: make sure that everyone in the world can afford mental health care, and health-care in general. We are pursuing those goals by establishing the world-first, free and completely online, mental healthcare platform, with real doctors and experts. In addition, we aim to take-over the health insurance and life insurance world in general, with our upcoming decentralized healthcare plan.
LifeTokenV2.sendBNB(uint24,uint256) (LifeTokenV2.sol#618-662) sends eth to arbitrary user
Dangerous calls:
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
LifeTokenV2.addLiquidity(uint128,uint128) (LifeTokenV2.sol#666-687) sends eth to arbitrary user
Dangerous calls:
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in LifeTokenV2._transfer(address,address,uint128) (LifeTokenV2.sol#410-487):
External calls:
- sellTokensPlusAddLiquidity(minimumTokensForSell) (LifeTokenV2.sol#476)
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- PancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokensToSell,0,path,address(this),block.timestamp) (LifeTokenV2.sol#581-587)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
- finishTransfer(from,to,tokenFees,amount) (LifeTokenV2.sol#486)
- _dividends.setBalance(address(from),_balances[from]) (LifeTokenV2.sol#789)
- _dividends.setBalance(address(to),_balances[to]) (LifeTokenV2.sol#790)
- _dividends.process(gas) (LifeTokenV2.sol#795-810)
External calls sending eth:
- sellTokensPlusAddLiquidity(minimumTokensForSell) (LifeTokenV2.sol#476)
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
State variables written after the call(s):
- finishTransfer(from,to,tokenFees,amount) (LifeTokenV2.sol#486)
- _balances[from] -= uint128(amount) (LifeTokenV2.sol#783)
- _balances[to] += (uint128(amount) - tokenFees) (LifeTokenV2.sol#784)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (LifeTokenDividends.sol#203-219):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (LifeTokenDividends.sol#208)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (LifeTokenDividends.sol#211)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
DividendPayingToken._withdrawDividendOfUser(address) (LifeTokenDividends.sol#203-219) has external calls inside a loop: (success) = user.call{gas: 3000,value: _withdrawableDividend}() (LifeTokenDividends.sol#208)
Favor pull over push strategy for external calls.
Additional information: link
Address.isContract(address) (Address.sol#6-15) uses assembly
- INLINE ASM (Address.sol#13)
Address._functionCallWithValue(address,bytes,uint256,string) (Address.sol#42-59) uses assembly
- INLINE ASM (Address.sol#51-54)
Do not use evm assembly.
Additional information: link
Reentrancy in LifeTokenV2.setNewDividendsContract(address) (LifeTokenV2.sol#189-214):
External calls:
- newDividendsContract.excludeFromDividends(address(newDividendsContract)) (LifeTokenV2.sol#204-206)
- newDividendsContract.excludeFromDividends(address(this)) (LifeTokenV2.sol#207)
- newDividendsContract.excludeFromDividends(owner()) (LifeTokenV2.sol#208)
- newDividendsContract.excludeFromDividends(address(PancakeRouter)) (LifeTokenV2.sol#209)
State variables written after the call(s):
- _dividends = newDividendsContract (LifeTokenV2.sol#213)
Apply the check-effects-interactions pattern.
Additional information: link
LifeTokenV2._transfer(address,address,uint128).dividendsFee (LifeTokenV2.sol#444) is a local variable never initialized
LifeTokenV2.sellTokensAndSendBnb(uint128).liquidityFee (LifeTokenV2.sol#589) is a local variable never initialized
LifeTokenV2._transfer(address,address,uint128).liquidityFee (LifeTokenV2.sol#445) is a local variable never initialized
LifeTokenV2.getExtraLiquidation(uint128).charityFee (LifeTokenV2.sol#522) is a local variable never initialized
LifeTokenV2.finishTransfer(address,address,uint128,uint256).iterations (LifeTokenV2.sol#796) is a local variable never initialized
LifeTokenV2._transfer(address,address,uint128).buyBackFee (LifeTokenV2.sol#446) is a local variable never initialized
LifeTokenV2.getExtraLiquidation(uint128).marketingFee (LifeTokenV2.sol#523) is a local variable never initialized
LifeTokenV2._transfer(address,address,uint128).tokenFees (LifeTokenV2.sol#431) is a local variable never initialized
LifeTokenV2.finishTransfer(address,address,uint128,uint256).claims (LifeTokenV2.sol#797) is a local variable never initialized
LifeTokenV2.setTracker(uint8,uint8,uint128,bool).newValue (LifeTokenV2.sol#845) is a local variable never initialized
LifeTokenV2.getExtraLiquidation(uint128).dividendsFee (LifeTokenV2.sol#524) is a local variable never initialized
LifeTokenV2.finishTransfer(address,address,uint128,uint256).lastProcessedIndex (LifeTokenV2.sol#798) is a local variable never initialized
LifeTokenV2.getExtraLiquidation(uint128).liquidityFee (LifeTokenV2.sol#525) is a local variable never initialized
LifeTokenV2.getExtraLiquidation(uint128).buybackFee (LifeTokenV2.sol#526) is a local variable never initialized
LifeTokenV2._getTracker(uint8,uint8).value (LifeTokenV2.sol#884) is a local variable never initialized
LifeTokenV2.sellTokensPlusAddLiquidity(uint128).liquidityBnb (LifeTokenV2.sol#496) is a local variable never initialized
LifeTokenV2.setTracker(uint8,uint8,uint128,bool).tracker (LifeTokenV2.sol#831) is a local variable never initialized
LifeTokenV2._transfer(address,address,uint128).charityFee (LifeTokenV2.sol#442) is a local variable never initialized
LifeTokenV2._transfer(address,address,uint128).marketingFee (LifeTokenV2.sol#443) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
LifeTokenV2.claim() (LifeTokenV2.sol#312-314) ignores return value by _dividends.processAccount(_msgSender(),false) (LifeTokenV2.sol#313)
LifeTokenV2.addLiquidity(uint128,uint128) (LifeTokenV2.sol#666-687) ignores return value by PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
LifeTokenV2.finishTransfer(address,address,uint128,uint256) (LifeTokenV2.sol#775-812) ignores return value by _dividends.process(gas) (LifeTokenV2.sol#795-810)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(string,string)._name (LifeTokenDividends.sol#178) shadows:
- ERC20._name (ERC20.sol#26) (state variable)
DividendPayingToken.constructor(string,string)._symbol (LifeTokenDividends.sol#178) shadows:
- ERC20._symbol (ERC20.sol#27) (state variable)
LifeTokenV2._approve(address,address,uint256).owner (LifeTokenV2.sol#178) shadows:
- Ownable.owner() (Ownable.sol#20-22) (function)
LifeTokenV2.allowance(address,address).owner (LifeTokenV2.sol#349) shadows:
- Ownable.owner() (Ownable.sol#20-22) (function)
Rename the local variables that shadow another component.
Additional information: link
LifeTokenV2.setCharityAddress(address).newAddress (LifeTokenV2.sol#244) lacks a zero-check on :
- _charityAddress = address(newAddress) (LifeTokenV2.sol#245)
LifeTokenV2.setMarketingAddress(address).newAddress (LifeTokenV2.sol#248) lacks a zero-check on :
- _marketingAddress = address(newAddress) (LifeTokenV2.sol#249)
LifeTokenV2.setBuyBackAddress(address).newAddress (LifeTokenV2.sol#252) lacks a zero-check on :
- _buyBackAddress = address(newAddress) (LifeTokenV2.sol#253)
Check that the address is not zero.
Additional information: link
Variable 'LifeTokenV2.finishTransfer(address,address,uint128,uint256).iterations (LifeTokenV2.sol#796)' in LifeTokenV2.finishTransfer(address,address,uint128,uint256) (LifeTokenV2.sol#775-812) potentially used before declaration: ProcessedDividends(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (LifeTokenV2.sol#800-807)
Variable 'LifeTokenV2.finishTransfer(address,address,uint128,uint256).lastProcessedIndex (LifeTokenV2.sol#798)' in LifeTokenV2.finishTransfer(address,address,uint128,uint256) (LifeTokenV2.sol#775-812) potentially used before declaration: ProcessedDividends(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (LifeTokenV2.sol#800-807)
Variable 'LifeTokenV2.finishTransfer(address,address,uint128,uint256).claims (LifeTokenV2.sol#797)' in LifeTokenV2.finishTransfer(address,address,uint128,uint256) (LifeTokenV2.sol#775-812) potentially used before declaration: ProcessedDividends(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (LifeTokenV2.sol#800-807)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.
Additional information: link
Reentrancy in LifeTokenV2.constructor() (LifeTokenV2.sol#113-141):
External calls:
- _dividends.excludeFromDividends(address(_dividends)) (LifeTokenV2.sol#116)
- _dividends.excludeFromDividends(address(this)) (LifeTokenV2.sol#117)
- _dividends.excludeFromDividends(_charityAddress) (LifeTokenV2.sol#118)
- _dividends.excludeFromDividends(_marketingAddress) (LifeTokenV2.sol#119)
- _dividends.excludeFromDividends(_buyBackAddress) (LifeTokenV2.sol#120)
- _dividends.excludeFromDividends(owner()) (LifeTokenV2.sol#121)
- _dividends.excludeFromDividends(_burnAddress) (LifeTokenV2.sol#122)
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (LifeTokenV2.sol#128-129)
State variables written after the call(s):
- PancakePair = pancakePair (LifeTokenV2.sol#131)
- PancakeRouter = pancakeRouter (LifeTokenV2.sol#130)
Reentrancy in LifeTokenV2.constructor() (LifeTokenV2.sol#113-141):
External calls:
- _dividends.excludeFromDividends(address(_dividends)) (LifeTokenV2.sol#116)
- _dividends.excludeFromDividends(address(this)) (LifeTokenV2.sol#117)
- _dividends.excludeFromDividends(_charityAddress) (LifeTokenV2.sol#118)
- _dividends.excludeFromDividends(_marketingAddress) (LifeTokenV2.sol#119)
- _dividends.excludeFromDividends(_buyBackAddress) (LifeTokenV2.sol#120)
- _dividends.excludeFromDividends(owner()) (LifeTokenV2.sol#121)
- _dividends.excludeFromDividends(_burnAddress) (LifeTokenV2.sol#122)
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (LifeTokenV2.sol#128-129)
- _dividends.excludeFromDividends(PancakePair) (LifeTokenV2.sol#132)
State variables written after the call(s):
- _approve(address(this),address(PancakeRouter),_totalSupply) (LifeTokenV2.sol#139)
- _allowances[owner][spender] = amount (LifeTokenV2.sol#185)
- _balances[owner()] = _totalSupply (LifeTokenV2.sol#138)
- setTracker(3,0,500000,false) (LifeTokenV2.sol#133)
- _contractTrackerOne = tracker (LifeTokenV2.sol#865)
- setTracker(3,1,500000000 * (10 ** 18),false) (LifeTokenV2.sol#134)
- _contractTrackerOne = tracker (LifeTokenV2.sol#865)
- setTracker(3,0,500000,false) (LifeTokenV2.sol#133)
- _contractTrackerThree = tracker (LifeTokenV2.sol#869)
- setTracker(3,1,500000000 * (10 ** 18),false) (LifeTokenV2.sol#134)
- _contractTrackerThree = tracker (LifeTokenV2.sol#869)
- setTracker(3,0,500000,false) (LifeTokenV2.sol#133)
- _contractTrackerTwo = tracker (LifeTokenV2.sol#867)
- setTracker(3,1,500000000 * (10 ** 18),false) (LifeTokenV2.sol#134)
- _contractTrackerTwo = tracker (LifeTokenV2.sol#867)
- setTracker(3,0,500000,false) (LifeTokenV2.sol#133)
- _contractTrackerZero = tracker (LifeTokenV2.sol#863)
- setTracker(3,1,500000000 * (10 ** 18),false) (LifeTokenV2.sol#134)
- _contractTrackerZero = tracker (LifeTokenV2.sol#863)
- _isExcluded[owner()].fromFee = true (LifeTokenV2.sol#136)
- _isExcluded[address(this)].fromFee = true (LifeTokenV2.sol#137)
Reentrancy in LifeTokenDividends.processAccount(address,bool) (LifeTokenDividends.sol#479-489):
External calls:
- amount = _withdrawDividendOfUser(account) (LifeTokenDividends.sol#480)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (LifeTokenDividends.sol#208)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (LifeTokenDividends.sol#483)
Reentrancy in LifeTokenV2.sellTokensPlusAddLiquidity(uint128) (LifeTokenV2.sol#489-504):
External calls:
- liquidityBnb = sellTokensAndSendBnb(tokensToSell) (LifeTokenV2.sol#498)
- PancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokensToSell,0,path,address(this),block.timestamp) (LifeTokenV2.sol#581-587)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
- addLiquidity(tokensForLP,liquidityBnb) (LifeTokenV2.sol#502)
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
External calls sending eth:
- liquidityBnb = sellTokensAndSendBnb(tokensToSell) (LifeTokenV2.sol#498)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
- addLiquidity(tokensForLP,liquidityBnb) (LifeTokenV2.sol#502)
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
State variables written after the call(s):
- addLiquidity(tokensForLP,liquidityBnb) (LifeTokenV2.sol#502)
- _allowances[owner][spender] = amount (LifeTokenV2.sol#185)
Reentrancy in LifeTokenV2.transferFrom(address,address,uint256) (LifeTokenV2.sol#156-169):
External calls:
- _transfer(sender,recipient,uint128(amount)) (LifeTokenV2.sol#161)
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- PancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokensToSell,0,path,address(this),block.timestamp) (LifeTokenV2.sol#581-587)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
- _dividends.setBalance(address(from),_balances[from]) (LifeTokenV2.sol#789)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- _dividends.setBalance(address(to),_balances[to]) (LifeTokenV2.sol#790)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- _dividends.process(gas) (LifeTokenV2.sol#795-810)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
External calls sending eth:
- _transfer(sender,recipient,uint128(amount)) (LifeTokenV2.sol#161)
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (LifeTokenV2.sol#165)
- _allowances[owner][spender] = amount (LifeTokenV2.sol#185)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in LifeTokenV2._transfer(address,address,uint128) (LifeTokenV2.sol#410-487):
External calls:
- sellTokensPlusAddLiquidity(minimumTokensForSell) (LifeTokenV2.sol#476)
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- PancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokensToSell,0,path,address(this),block.timestamp) (LifeTokenV2.sol#581-587)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
- finishTransfer(from,to,tokenFees,amount) (LifeTokenV2.sol#486)
- _dividends.setBalance(address(from),_balances[from]) (LifeTokenV2.sol#789)
- _dividends.setBalance(address(to),_balances[to]) (LifeTokenV2.sol#790)
- _dividends.process(gas) (LifeTokenV2.sol#795-810)
External calls sending eth:
- sellTokensPlusAddLiquidity(minimumTokensForSell) (LifeTokenV2.sol#476)
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
Event emitted after the call(s):
- ProcessedDividends(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (LifeTokenV2.sol#800-807)
- finishTransfer(from,to,tokenFees,amount) (LifeTokenV2.sol#486)
- ProcessingDividendsError(msg.sender) (LifeTokenV2.sol#809)
- finishTransfer(from,to,tokenFees,amount) (LifeTokenV2.sol#486)
- Transfer(from,address(this),tokenFees) (LifeTokenV2.sol#786)
- finishTransfer(from,to,tokenFees,amount) (LifeTokenV2.sol#486)
- Transfer(from,to,amountMinusFees) (LifeTokenV2.sol#787)
- finishTransfer(from,to,tokenFees,amount) (LifeTokenV2.sol#486)
Reentrancy in LifeTokenV2.addLiquidity(uint128,uint128) (LifeTokenV2.sol#666-687):
External calls:
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
Event emitted after the call(s):
- AddLiquidity(tokenAmount,bnbAmount,PancakePair) (LifeTokenV2.sol#679)
Reentrancy in LifeTokenV2.addLiquidity(uint128,uint128) (LifeTokenV2.sol#666-687):
External calls:
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
Event emitted after the call(s):
- SendToWallet(Marketing,_buyBackAddress,buyBackBNB) (LifeTokenV2.sol#686)
Reentrancy in LifeTokenV2.constructor() (LifeTokenV2.sol#113-141):
External calls:
- _dividends.excludeFromDividends(address(_dividends)) (LifeTokenV2.sol#116)
- _dividends.excludeFromDividends(address(this)) (LifeTokenV2.sol#117)
- _dividends.excludeFromDividends(_charityAddress) (LifeTokenV2.sol#118)
- _dividends.excludeFromDividends(_marketingAddress) (LifeTokenV2.sol#119)
- _dividends.excludeFromDividends(_buyBackAddress) (LifeTokenV2.sol#120)
- _dividends.excludeFromDividends(owner()) (LifeTokenV2.sol#121)
- _dividends.excludeFromDividends(_burnAddress) (LifeTokenV2.sol#122)
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (LifeTokenV2.sol#128-129)
- _dividends.excludeFromDividends(PancakePair) (LifeTokenV2.sol#132)
Event emitted after the call(s):
- Approval(owner,spender,amount) (LifeTokenV2.sol#186)
- _approve(address(this),address(PancakeRouter),_totalSupply) (LifeTokenV2.sol#139)
- TrackerUpdated(tracker,oldValue,newValue,add) (LifeTokenV2.sol#872)
- setTracker(3,0,500000,false) (LifeTokenV2.sol#133)
- TrackerUpdated(tracker,oldValue,newValue,add) (LifeTokenV2.sol#872)
- setTracker(3,1,500000000 * (10 ** 18),false) (LifeTokenV2.sol#134)
- Transfer(address(0),owner(),_balances[owner()]) (LifeTokenV2.sol#140)
Reentrancy in LifeTokenV2.finishTransfer(address,address,uint128,uint256) (LifeTokenV2.sol#775-812):
External calls:
- _dividends.setBalance(address(from),_balances[from]) (LifeTokenV2.sol#789)
- _dividends.setBalance(address(to),_balances[to]) (LifeTokenV2.sol#790)
- _dividends.process(gas) (LifeTokenV2.sol#795-810)
Event emitted after the call(s):
- ProcessedDividends(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (LifeTokenV2.sol#800-807)
- ProcessingDividendsError(msg.sender) (LifeTokenV2.sol#809)
Reentrancy in LifeTokenDividends.processAccount(address,bool) (LifeTokenDividends.sol#479-489):
External calls:
- amount = _withdrawDividendOfUser(account) (LifeTokenDividends.sol#480)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (LifeTokenDividends.sol#208)
Event emitted after the call(s):
- Claim(account,amount,automatic) (LifeTokenDividends.sol#484)
Reentrancy in LifeTokenV2.processDividendTracker(uint256) (LifeTokenV2.sol#295-310):
External calls:
- (iterations,claims,lastProcessedIndex) = _dividends.process(gas) (LifeTokenV2.sol#296-300)
Event emitted after the call(s):
- ProcessedDividends(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (LifeTokenV2.sol#302-309)
Reentrancy in LifeTokenV2.sellTokensAndSendBnb(uint128) (LifeTokenV2.sol#568-616):
External calls:
- PancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokensToSell,0,path,address(this),block.timestamp) (LifeTokenV2.sol#581-587)
- sendBNB(commonRateDenominator,address(this).balance) (LifeTokenV2.sol#608)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
External calls sending eth:
- sendBNB(commonRateDenominator,address(this).balance) (LifeTokenV2.sol#608)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
Event emitted after the call(s):
- SendToWallet(Charity,_charityAddress,charityBNB) (LifeTokenV2.sol#638)
- sendBNB(commonRateDenominator,address(this).balance) (LifeTokenV2.sol#608)
- SendToWallet(Marketing,_marketingAddress,marketingBNB) (LifeTokenV2.sol#647)
- sendBNB(commonRateDenominator,address(this).balance) (LifeTokenV2.sol#608)
- SendToWallet(Dividends,address(_dividends),dividendsBNB) (LifeTokenV2.sol#656-660)
- sendBNB(commonRateDenominator,address(this).balance) (LifeTokenV2.sol#608)
- SwapTokensForBNB(tokensToSell,uint128(address(this).balance)) (LifeTokenV2.sol#610)
Reentrancy in LifeTokenV2.sellTokensPlusAddLiquidity(uint128) (LifeTokenV2.sol#489-504):
External calls:
- liquidityBnb = sellTokensAndSendBnb(tokensToSell) (LifeTokenV2.sol#498)
- PancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokensToSell,0,path,address(this),block.timestamp) (LifeTokenV2.sol#581-587)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
- addLiquidity(tokensForLP,liquidityBnb) (LifeTokenV2.sol#502)
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
External calls sending eth:
- liquidityBnb = sellTokensAndSendBnb(tokensToSell) (LifeTokenV2.sol#498)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
- addLiquidity(tokensForLP,liquidityBnb) (LifeTokenV2.sol#502)
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
Event emitted after the call(s):
- AddLiquidity(tokenAmount,bnbAmount,PancakePair) (LifeTokenV2.sol#679)
- addLiquidity(tokensForLP,liquidityBnb) (LifeTokenV2.sol#502)
- Approval(owner,spender,amount) (LifeTokenV2.sol#186)
- addLiquidity(tokensForLP,liquidityBnb) (LifeTokenV2.sol#502)
- SendToWallet(Marketing,_buyBackAddress,buyBackBNB) (LifeTokenV2.sol#686)
- addLiquidity(tokensForLP,liquidityBnb) (LifeTokenV2.sol#502)
Reentrancy in LifeTokenV2.sendBNB(uint24,uint256) (LifeTokenV2.sol#618-662):
External calls:
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
Event emitted after the call(s):
- SendToWallet(Charity,_charityAddress,charityBNB) (LifeTokenV2.sol#638)
Reentrancy in LifeTokenV2.sendBNB(uint24,uint256) (LifeTokenV2.sol#618-662):
External calls:
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
Event emitted after the call(s):
- SendToWallet(Marketing,_marketingAddress,marketingBNB) (LifeTokenV2.sol#647)
Reentrancy in LifeTokenV2.sendBNB(uint24,uint256) (LifeTokenV2.sol#618-662):
External calls:
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
Event emitted after the call(s):
- SendToWallet(Dividends,address(_dividends),dividendsBNB) (LifeTokenV2.sol#656-660)
Reentrancy in LifeTokenV2.setNewDividendsContract(address) (LifeTokenV2.sol#189-214):
External calls:
- newDividendsContract.excludeFromDividends(address(newDividendsContract)) (LifeTokenV2.sol#204-206)
- newDividendsContract.excludeFromDividends(address(this)) (LifeTokenV2.sol#207)
- newDividendsContract.excludeFromDividends(owner()) (LifeTokenV2.sol#208)
- newDividendsContract.excludeFromDividends(address(PancakeRouter)) (LifeTokenV2.sol#209)
Event emitted after the call(s):
- UpdateDividendsContract(address(_dividends),newAddress) (LifeTokenV2.sol#211)
Reentrancy in LifeTokenV2.transferFrom(address,address,uint256) (LifeTokenV2.sol#156-169):
External calls:
- _transfer(sender,recipient,uint128(amount)) (LifeTokenV2.sol#161)
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- PancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokensToSell,0,path,address(this),block.timestamp) (LifeTokenV2.sol#581-587)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
- _dividends.setBalance(address(from),_balances[from]) (LifeTokenV2.sol#789)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- _dividends.setBalance(address(to),_balances[to]) (LifeTokenV2.sol#790)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- _dividends.process(gas) (LifeTokenV2.sol#795-810)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
External calls sending eth:
- _transfer(sender,recipient,uint128(amount)) (LifeTokenV2.sol#161)
- PancakeRouter.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (LifeTokenV2.sol#670-677)
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
Event emitted after the call(s):
- Approval(owner,spender,amount) (LifeTokenV2.sol#186)
- _approve(sender,_msgSender(),currentAllowance - amount) (LifeTokenV2.sol#165)
Apply the check-effects-interactions pattern.
Additional information: link
LifeTokenDividends.getAccount(address) (LifeTokenDividends.sol#343-384) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (LifeTokenDividends.sol#381-383)
LifeTokenDividends.canAutoClaim(uint256) (LifeTokenDividends.sol#405-411) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (LifeTokenDividends.sol#406)
- block.timestamp.sub(lastClaimTime) >= claimWait (LifeTokenDividends.sol#410)
LifeTokenV2.getRates() (LifeTokenV2.sol#689-773) uses timestamp for comparisons
Dangerous comparisons:
- timepassed >= (_creationDate + 4233600) (LifeTokenV2.sol#719)
- timepassed >= (_creationDate + 3628800) (LifeTokenV2.sol#722)
- timepassed >= (_creationDate + 3024000) (LifeTokenV2.sol#725)
- timepassed >= (_creationDate + 2419200) (LifeTokenV2.sol#728)
- timepassed >= (_creationDate + 1814400) (LifeTokenV2.sol#731)
- timepassed >= (_creationDate + 1209600) (LifeTokenV2.sol#734)
- timepassed >= (_creationDate + 604800) (LifeTokenV2.sol#737)
- timepassed >= (_creationDate + 2419200) (LifeTokenV2.sol#747)
- timepassed >= (_creationDate + 1814400) (LifeTokenV2.sol#751)
- timepassed >= (_creationDate + 1209600) (LifeTokenV2.sol#755)
Ownable.unlock() (Ownable.sol#56-61) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (Ownable.sol#58)
Avoid relying on block.timestamp.
Additional information: link
Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.0', '>=0.6.2', '>=0.8.0', '^0.8.7']
- ^0.8.7 (Address.sol#3)
- ^0.8.7 (Context.sol#3)
- ^0.8.7 (ERC20.sol#3)
- ^0.8.7 (IERC20.sol#3)
- ^0.8.7 (IterableMapping.sol#3)
- ^0.8.7 (LifeTokenDividends.sol#3)
- ^0.8.7 (LifeTokenV2.sol#17)
- ^0.8.7 (Ownable.sol#3)
- >=0.8.0 (PancakeFactory.sol#3)
- >=0.5.0 (PancakeFactory.sol#50)
- >=0.6.0 (PancakeRouter.sol#3)
- >=0.6.2 (PancakeRouter.sol#101)
Use one Solidity version.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (Address.sol#42-59) is never used and should be removed
Address.functionCall(address,bytes) (Address.sol#25-27) is never used and should be removed
Address.functionCall(address,bytes,string) (Address.sol#29-31) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (Address.sol#33-35) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (Address.sol#37-40) is never used and should be removed
Address.isContract(address) (Address.sol#6-15) is never used and should be removed
Address.sendValue(address,uint256) (Address.sol#17-23) is never used and should be removed
Context._msgData() (Context.sol#10-13) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (LifeTokenDividends.sol#238-244) is never used and should be removed
ERC20._transfer(address,address,uint256) (ERC20.sol#99-119) is never used and should be removed
SafeMath.div(uint256,uint256) (LifeTokenDividends.sol#121-123) is never used and should be removed
SafeMath.div(uint256,uint256,string) (LifeTokenDividends.sol#140-149) is never used and should be removed
SafeMath.mod(uint256,uint256) (LifeTokenDividends.sol#125-127) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (LifeTokenDividends.sol#151-160) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (LifeTokenDividends.sol#129-138) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (LifeTokenDividends.sol#70-76) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (LifeTokenDividends.sol#95-100) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (LifeTokenDividends.sol#102-107) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (LifeTokenDividends.sol#85-93) is never used and should be removed
SafeMath.trySub(uint256,uint256) (LifeTokenDividends.sol#78-83) is never used and should be removed
SafeMathInt.div(int256,int256) (LifeTokenDividends.sol#43-48) is never used and should be removed
SafeMathInt.mul(int256,int256) (LifeTokenDividends.sol#34-41) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.8.0 (PancakeFactory.sol#3) allows old versions
Pragma version>=0.5.0 (PancakeFactory.sol#50) allows old versions
Pragma version>=0.6.0 (PancakeRouter.sol#3) allows old versions
Pragma version>=0.6.2 (PancakeRouter.sol#101) allows old versions
solc-0.8.8 is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address.sendValue(address,uint256) (Address.sol#17-23):
- (success) = recipient.call{value: amount}() (Address.sol#21)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (Address.sol#42-59):
- (success,returndata) = target.call{value: weiValue}(data) (Address.sol#45)
Low level call in DividendPayingToken._withdrawDividendOfUser(address) (LifeTokenDividends.sol#203-219):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (LifeTokenDividends.sol#208)
Low level call in LifeTokenV2.sendBNB(uint24,uint256) (LifeTokenV2.sol#618-662):
- (success,None) = _charityAddress.call{value: charityBNB}() (LifeTokenV2.sol#635)
- (success,None) = _marketingAddress.call{value: marketingBNB}() (LifeTokenV2.sol#644)
- (success,None) = address(_dividends).call{value: dividendsBNB}() (LifeTokenV2.sol#653)
Low level call in LifeTokenV2.addLiquidity(uint128,uint128) (LifeTokenV2.sol#666-687):
- (success,None) = _buyBackAddress.call{value: buyBackBNB}() (LifeTokenV2.sol#683)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
LifeTokenV2 (LifeTokenV2.sol#35-903) should inherit from IERC20Metadata (ERC20.sol#10-17)
Inherit from the missing interface or contract.
Additional information: link
Parameter DividendPayingToken.dividendOf(address)._owner (LifeTokenDividends.sol#221) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (LifeTokenDividends.sol#225) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (LifeTokenDividends.sol#229) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (LifeTokenDividends.sol#233) is not in mixedCase
Constant DividendPayingToken.magnitude (LifeTokenDividends.sol#169) is not in UPPER_CASE_WITH_UNDERSCORES
Event LifeTokenDividendsmUpdated(uint256,uint256) (LifeTokenDividends.sol#290) is not in CapWords
Parameter LifeTokenDividends.getAccount(address)._account (LifeTokenDividends.sol#343) is not in mixedCase
Variable LifeTokenV2._charityAddress (LifeTokenV2.sol#49-50) is not in mixedCase
Variable LifeTokenV2._marketingAddress (LifeTokenV2.sol#51-52) is not in mixedCase
Variable LifeTokenV2._buyBackAddress (LifeTokenV2.sol#53-54) is not in mixedCase
Variable LifeTokenV2._burnAddress (LifeTokenV2.sol#55) is not in mixedCase
Variable LifeTokenV2._dividends (LifeTokenV2.sol#60) is not in mixedCase
Variable LifeTokenV2.PancakeRouter (LifeTokenV2.sol#75) is not in mixedCase
Variable LifeTokenV2.PancakePair (LifeTokenV2.sol#76) is not in mixedCase
Modifier LifeTokenV2.LockSwap() (LifeTokenV2.sol#107-111) is not in mixedCase
Function IPancakeERC20.DOMAIN_SEPARATOR() (PancakeFactory.sol#37) is not in mixedCase
Function IPancakeERC20.PERMIT_TYPEHASH() (PancakeFactory.sol#38) is not in mixedCase
Function IPancakePair.DOMAIN_SEPARATOR() (PancakeFactory.sol#67) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (PancakeFactory.sol#68) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (PancakeFactory.sol#85) is not in mixedCase
Function IPancakeRouter01.WETH() (PancakeRouter.sol#7) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (Context.sol#11)" inContext (Context.sol#5-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (LifeTokenDividends.sol#204) is too similar to LifeTokenDividends.getAccount(address).withdrawableDividends (LifeTokenDividends.sol#347)
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (PancakeRouter.sol#12) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (PancakeRouter.sol#13)
Prevent variables from having similar names.
Additional information: link
LifeTokenDividends.constructor() (LifeTokenDividends.sol#296-299) uses literals with too many digits:
- minimumTokenBalanceForDividends = 300000000 * (10 ** decimals()) (LifeTokenDividends.sol#298)
LifeTokenDividends.getAccountAtIndex(uint256) (LifeTokenDividends.sol#386-403) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (LifeTokenDividends.sol#397)
LifeTokenV2.constructor() (LifeTokenV2.sol#113-141) uses literals with too many digits:
- setTracker(3,0,500000,false) (LifeTokenV2.sol#133)
LifeTokenV2.constructor() (LifeTokenV2.sol#113-141) uses literals with too many digits:
- setTracker(3,1,500000000 * (10 ** 18),false) (LifeTokenV2.sol#134)
LifeTokenV2.setGasForProcessingDividends(uint128) (LifeTokenV2.sol#217-232) uses literals with too many digits:
- require(bool,string)(gasAmount >= 200000 && gasAmount <= 1000000,Gas for processing must be between 200,000 and 1,000,000) (LifeTokenV2.sol#221-224)
LifeTokenV2.slitherConstructorVariables() (LifeTokenV2.sol#35-903) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (LifeTokenV2.sol#55)
LifeTokenV2.slitherConstructorConstantVariables() (LifeTokenV2.sol#35-903) uses literals with too many digits:
- DENOMINATOR = 100000 (LifeTokenV2.sol#66)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
LifeTokenV2._contractToggles (LifeTokenV2.sol#65) is never used in LifeTokenV2 (LifeTokenV2.sol#35-903)
Remove unused state variables.
Additional information: link
LifeTokenV2._contractToggles (LifeTokenV2.sol#65) should be constant
LifeTokenV2._totalSupply (LifeTokenV2.sol#68) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
name() should be declared external:
- ERC20.name() (ERC20.sol#34-36)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#38-40)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#54-57)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#59-61)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#63-66)
- LifeTokenV2.approve(address,uint256) (LifeTokenV2.sol#172-175)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#68-82)
- LifeTokenV2.transferFrom(address,address,uint256) (LifeTokenV2.sol#156-169)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#84-87)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#89-97)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (IterableMapping.sol#13-15)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (IterableMapping.sol#17-22)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (IterableMapping.sol#24-26)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (IterableMapping.sol#30-32)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (LifeTokenDividends.sol#199-201)
- LifeTokenDividends.withdrawDividend() (LifeTokenDividends.sol#305-307)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (LifeTokenDividends.sol#221-223)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (LifeTokenDividends.sol#229-231)
getAccountAtIndex(uint256) should be declared external:
- LifeTokenDividends.getAccountAtIndex(uint256) (LifeTokenDividends.sol#386-403)
process(uint256) should be declared external:
- LifeTokenDividends.process(uint256) (LifeTokenDividends.sol#432-477)
increaseAllowance(address,uint256) should be declared external:
- LifeTokenV2.increaseAllowance(address,uint256) (LifeTokenV2.sol#379-382)
decreaseAllowance(address,uint256) should be declared external:
- LifeTokenV2.decreaseAllowance(address,uint256) (LifeTokenV2.sol#384-392)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#29-32)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#34-38)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (Ownable.sol#40-42)
getTime() should be declared external:
- Ownable.getTime() (Ownable.sol#44-46)
unlock() should be declared external:
- Ownable.unlock() (Ownable.sol#56-61)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Alexa traffic rank is relatively low
Additional information: link
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Telegram account link seems to be invalid
Twitter account has relatively few followers
Last post in Twitter was more than 30 days ago
Twitter account has few posts