This Could Be 1000x
We Are Driven By A Singular Focus, Innovation In A Space Which Is Ready For Change.
We Want To Change The World. There Are No Monoliths Here. We Can Shape This Future In A Way That Is Both Lucrative And Fair.
Utility Is Greater Than Hype. Our Products Are Designed To Provide Real World Use.
Distribution
50% - presale
30% - Liquidity for PCS
9% - Private Placements
11% - Locked for 180 Days
Tokenomics
3% - Distribute BNB for token holders
2% - Marketing
2% - Liquidity
LIKE1000X.addLiquidity(uint256,uint256) (Like1000x.sol#335-350) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
LIKE1000X.swapEthForCustomToken(uint256) (Like1000x.sol#390-402) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: tokenAmount}(0,path,deadWallet,block.timestamp) (Like1000x.sol#396-401)
LIKE1000X.sendDividends(uint256) (Like1000x.sol#404-410) sends eth to arbitrary user
Dangerous calls:
- (success) = address(dividendTracker).call{gas: 3000,value: tokens}() (Like1000x.sol#406)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in LIKE1000X._transfer(address,address,uint256) (Like1000x.sol#257-333):
External calls:
- swapTokensForBNB(contractTokenBalance.sub(lpTokenAmount)) (Like1000x.sol#292)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Like1000x.sol#381-387)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
- sendDividends(bnbForRewards) (Like1000x.sol#300)
- (success) = address(dividendTracker).call{gas: 3000,value: tokens}() (Like1000x.sol#406)
- dividendTracker.distributeBNBDividends(tokens) (Like1000x.sol#408)
External calls sending eth:
- address(_marketingWallet).transfer(bnbForMarket) (Like1000x.sol#296)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
- sendDividends(bnbForRewards) (Like1000x.sol#300)
- (success) = address(dividendTracker).call{gas: 3000,value: tokens}() (Like1000x.sol#406)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (Like1000x.sol#315)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (Like1000x.sol#318)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (Like1000x.sol#302)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#73-94):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (DividendPayingToken.sol#79)
- (success,None) = user.call{gas: 6000,value: _withdrawableDividend}() (DividendPayingToken.sol#82)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (DividendPayingToken.sol#86)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
LIKE1000X._transfer(address,address,uint256) (Like1000x.sol#257-333) uses a dangerous strict equality:
- startBlock == 0 && isMarketPair[to] (Like1000x.sol#271)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
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.
Contract ownership is not renounced (belongs to a wallet)
Reentrancy in LIKE1000X.updateDividendTracker(address) (Like1000x.sol#118-132):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (Like1000x.sol#125)
- newDividendTracker.excludeFromDividends(address(this)) (Like1000x.sol#126)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (Like1000x.sol#127)
State variables written after the call(s):
- dividendTracker = newDividendTracker (Like1000x.sol#131)
Apply the check-effects-interactions pattern.
Additional information: link
LIKE1000X._transfer(address,address,uint256).claims (Like1000x.sol#326) is a local variable never initialized
LIKE1000X._transfer(address,address,uint256).iterations (Like1000x.sol#326) is a local variable never initialized
LIKE1000X._transfer(address,address,uint256).lastProcessedIndex (Like1000x.sol#326) 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
LIKE1000X.claim() (Like1000x.sol#245-247) ignores return value by dividendTracker.processAccount(msg.sender,false) (Like1000x.sol#246)
LIKE1000X._transfer(address,address,uint256) (Like1000x.sol#257-333) ignores return value by dividendTracker.process(gas) (Like1000x.sol#326-331)
LIKE1000X.addLiquidity(uint256,uint256) (Like1000x.sol#335-350) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(string,string)._name (DividendPayingToken.sol#47) shadows:
- ERC20._name (ERC20.sol#43) (state variable)
DividendPayingToken.constructor(string,string)._symbol (DividendPayingToken.sol#47) shadows:
- ERC20._symbol (ERC20.sol#44) (state variable)
DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#99) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#106) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#113) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#123) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.
Additional information: link
LIKE1000X.updateUniswapV2Router(address)._uniswapV2Pair (Like1000x.sol#138-139) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (Like1000x.sol#140)
LIKE1000X.setMarketingWallet(address).account (Like1000x.sol#210) lacks a zero-check on :
- _marketingWallet = account (Like1000x.sol#211)
Check that the address is not zero.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#73-94) has external calls inside a loop: (success) = user.call{gas: 3000,value: _withdrawableDividend}() (DividendPayingToken.sol#79)
DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#73-94) has external calls inside a loop: (success,None) = user.call{gas: 6000,value: _withdrawableDividend}() (DividendPayingToken.sol#82)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'LIKE1000X._transfer(address,address,uint256).claims (Like1000x.sol#326)' in LIKE1000X._transfer(address,address,uint256) (Like1000x.sol#257-333) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (Like1000x.sol#327)
Variable 'LIKE1000X._transfer(address,address,uint256).lastProcessedIndex (Like1000x.sol#326)' in LIKE1000X._transfer(address,address,uint256) (Like1000x.sol#257-333) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (Like1000x.sol#327)
Variable 'LIKE1000X._transfer(address,address,uint256).iterations (Like1000x.sol#326)' in LIKE1000X._transfer(address,address,uint256) (Like1000x.sol#257-333) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (Like1000x.sol#327)
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 LIKE1000X._transfer(address,address,uint256) (Like1000x.sol#257-333):
External calls:
- swapTokensForBNB(contractTokenBalance.sub(lpTokenAmount)) (Like1000x.sol#292)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Like1000x.sol#381-387)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
External calls sending eth:
- address(_marketingWallet).transfer(bnbForMarket) (Like1000x.sol#296)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
State variables written after the call(s):
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in LIKE1000X.constructor() (Like1000x.sol#81-112):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (Like1000x.sol#87-88)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (Like1000x.sol#91)
- uniswapV2Router = _uniswapV2Router (Like1000x.sol#90)
Reentrancy in LIKE1000X.constructor() (Like1000x.sol#81-112):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (Like1000x.sol#87-88)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (Like1000x.sol#93)
- dividendTracker.excludeFromDividends(pair) (Like1000x.sol#168)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (Like1000x.sol#96)
- dividendTracker.excludeFromDividends(address(this)) (Like1000x.sol#97)
- dividendTracker.excludeFromDividends(deadWallet) (Like1000x.sol#98)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (Like1000x.sol#99)
State variables written after the call(s):
- _mint(owner(),1000000000 * (10 ** 18)) (Like1000x.sol#111)
- _balances[account] = _balances[account].add(amount) (ERC20.sol#241)
- excludeFromFees(owner(),true) (Like1000x.sol#102)
- _isExcludedFromFees[account] = excluded (Like1000x.sol#144)
- excludeFromFees(_marketingWallet,true) (Like1000x.sol#103)
- _isExcludedFromFees[account] = excluded (Like1000x.sol#144)
- excludeFromFees(_lpWallet,true) (Like1000x.sol#104)
- _isExcludedFromFees[account] = excluded (Like1000x.sol#144)
- excludeFromFees(address(this),true) (Like1000x.sol#105)
- _isExcludedFromFees[account] = excluded (Like1000x.sol#144)
- _mint(owner(),1000000000 * (10 ** 18)) (Like1000x.sol#111)
- _totalSupply = _totalSupply.add(amount) (ERC20.sol#240)
Reentrancy in LIKE1000XDividendTracker.processAccount(address,bool) (Like1000x.sol#607-617):
External calls:
- amount = _withdrawDividendOfUser(account) (Like1000x.sol#608)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (DividendPayingToken.sol#79)
- (success,None) = user.call{gas: 6000,value: _withdrawableDividend}() (DividendPayingToken.sol#82)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (Like1000x.sol#611)
Reentrancy in LIKE1000X.updateUniswapV2Router(address) (Like1000x.sol#134-141):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (Like1000x.sol#138-139)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (Like1000x.sol#140)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in LIKE1000X._setAutomatedMarketMakerPair(address,bool) (Like1000x.sol#163-172):
External calls:
- dividendTracker.excludeFromDividends(pair) (Like1000x.sol#168)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (Like1000x.sol#171)
Reentrancy in LIKE1000X._transfer(address,address,uint256) (Like1000x.sol#257-333):
External calls:
- swapTokensForBNB(contractTokenBalance.sub(lpTokenAmount)) (Like1000x.sol#292)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Like1000x.sol#381-387)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
External calls sending eth:
- address(_marketingWallet).transfer(bnbForMarket) (Like1000x.sol#296)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
Reentrancy in LIKE1000X._transfer(address,address,uint256) (Like1000x.sol#257-333):
External calls:
- swapTokensForBNB(contractTokenBalance.sub(lpTokenAmount)) (Like1000x.sol#292)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Like1000x.sol#381-387)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
- sendDividends(bnbForRewards) (Like1000x.sol#300)
- (success) = address(dividendTracker).call{gas: 3000,value: tokens}() (Like1000x.sol#406)
- dividendTracker.distributeBNBDividends(tokens) (Like1000x.sol#408)
External calls sending eth:
- address(_marketingWallet).transfer(bnbForMarket) (Like1000x.sol#296)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
- sendDividends(bnbForRewards) (Like1000x.sol#300)
- (success) = address(dividendTracker).call{gas: 3000,value: tokens}() (Like1000x.sol#406)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,address(this),fees) (Like1000x.sol#315)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,to,amount) (Like1000x.sol#318)
Reentrancy in LIKE1000X._transfer(address,address,uint256) (Like1000x.sol#257-333):
External calls:
- swapTokensForBNB(contractTokenBalance.sub(lpTokenAmount)) (Like1000x.sol#292)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Like1000x.sol#381-387)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
- sendDividends(bnbForRewards) (Like1000x.sol#300)
- (success) = address(dividendTracker).call{gas: 3000,value: tokens}() (Like1000x.sol#406)
- dividendTracker.distributeBNBDividends(tokens) (Like1000x.sol#408)
- dividendTracker.setBalance(address(from),balanceOf(from)) (Like1000x.sol#320)
- dividendTracker.setBalance(address(to),balanceOf(to)) (Like1000x.sol#321)
- dividendTracker.process(gas) (Like1000x.sol#326-331)
External calls sending eth:
- address(_marketingWallet).transfer(bnbForMarket) (Like1000x.sol#296)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
- sendDividends(bnbForRewards) (Like1000x.sol#300)
- (success) = address(dividendTracker).call{gas: 3000,value: tokens}() (Like1000x.sol#406)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (Like1000x.sol#327)
Reentrancy in LIKE1000X.constructor() (Like1000x.sol#81-112):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (Like1000x.sol#87-88)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (Like1000x.sol#93)
- dividendTracker.excludeFromDividends(pair) (Like1000x.sol#168)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (Like1000x.sol#171)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (Like1000x.sol#93)
Reentrancy in LIKE1000X.constructor() (Like1000x.sol#81-112):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (Like1000x.sol#87-88)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (Like1000x.sol#93)
- dividendTracker.excludeFromDividends(pair) (Like1000x.sol#168)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (Like1000x.sol#96)
- dividendTracker.excludeFromDividends(address(this)) (Like1000x.sol#97)
- dividendTracker.excludeFromDividends(deadWallet) (Like1000x.sol#98)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (Like1000x.sol#99)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (Like1000x.sol#146)
- excludeFromFees(owner(),true) (Like1000x.sol#102)
- ExcludeFromFees(account,excluded) (Like1000x.sol#146)
- excludeFromFees(address(this),true) (Like1000x.sol#105)
- ExcludeFromFees(account,excluded) (Like1000x.sol#146)
- excludeFromFees(_lpWallet,true) (Like1000x.sol#104)
- ExcludeFromFees(account,excluded) (Like1000x.sol#146)
- excludeFromFees(_marketingWallet,true) (Like1000x.sol#103)
- Transfer(address(0),account,amount) (ERC20.sol#242)
- _mint(owner(),1000000000 * (10 ** 18)) (Like1000x.sol#111)
Reentrancy in LIKE1000XDividendTracker.processAccount(address,bool) (Like1000x.sol#607-617):
External calls:
- amount = _withdrawDividendOfUser(account) (Like1000x.sol#608)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (DividendPayingToken.sol#79)
- (success,None) = user.call{gas: 6000,value: _withdrawableDividend}() (DividendPayingToken.sol#82)
Event emitted after the call(s):
- Claim(account,amount,automatic) (Like1000x.sol#612)
Reentrancy in LIKE1000X.processDividendTracker(uint256) (Like1000x.sol#240-243):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (Like1000x.sol#241)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (Like1000x.sol#242)
Reentrancy in LIKE1000X.updateDividendTracker(address) (Like1000x.sol#118-132):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (Like1000x.sol#125)
- newDividendTracker.excludeFromDividends(address(this)) (Like1000x.sol#126)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (Like1000x.sol#127)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (Like1000x.sol#129)
Apply the check-effects-interactions pattern.
Additional information: link
LIKE1000XDividendTracker.getAccount(address) (Like1000x.sol#471-514) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (Like1000x.sol#511-513)
LIKE1000XDividendTracker.canAutoClaim(uint256) (Like1000x.sol#535-541) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (Like1000x.sol#536)
- block.timestamp.sub(lastClaimTime) >= claimWait (Like1000x.sol#540)
Avoid relying on block.timestamp.
Additional information: link
Context._msgData() (Context.sol#20-23) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (DividendPayingToken.sol#133-139) is never used and should be removed
LIKE1000X.swapEthForCustomToken(uint256) (Like1000x.sol#390-402) is never used and should be removed
LIKE1000X.swapTokensForEth(uint256) (Like1000x.sol#352-370) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#126-128) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#142-145) is never used and should be removed
SafeMathInt.abs(int256) (SafeMathInt.sol#82-85) is never used and should be removed
SafeMathInt.div(int256,int256) (SafeMathInt.sol#53-59) is never used and should be removed
SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.
Additional information: link
LIKE1000X.totalFees (Like1000x.sol#32) is set pre-construction with a non-constant function or state variable:
- marketingFee.add(lpFee).add(BNBRewardsFee)
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Pragma version^0.6.2 (Context.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingToken.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenInterface.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenOptionalInterface.sol#3) allows old versions
Pragma version^0.6.2 (ERC20.sol#3) allows old versions
Pragma version^0.6.2 (IERC20.sol#3) allows old versions
Pragma version^0.6.2 (IERC20Metadata.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Factory.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Pair.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Router.sol#3) allows old versions
Pragma version^0.6.2 (IterableMapping.sol#2) allows old versions
Pragma version^0.6.2 (Like1000x.sol#3) allows old versions
Pragma version^0.6.2 (Ownable.sol#1) allows old versions
Pragma version^0.6.2 (SafeMath.sol#3) allows old versions
Pragma version^0.6.2 (SafeMathInt.sol#28) allows old versions
Pragma version^0.6.2 (SafeMathUint.sol#3) allows old versions
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 DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#73-94):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (DividendPayingToken.sol#79)
- (success,None) = user.call{gas: 6000,value: _withdrawableDividend}() (DividendPayingToken.sol#82)
Low level call in LIKE1000X.sendDividends(uint256) (Like1000x.sol#404-410):
- (success) = address(dividendTracker).call{gas: 3000,value: tokens}() (Like1000x.sol#406)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#99) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#106) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#113) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#123) is not in mixedCase
Constant DividendPayingToken.magnitude (DividendPayingToken.sol#27) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (IUniswapV2Pair.sol#20) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (IUniswapV2Pair.sol#21) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (IUniswapV2Pair.sol#38) is not in mixedCase
Function IUniswapV2Router01.WETH() (IUniswapV2Router.sol#7) is not in mixedCase
Variable LIKE1000X.BNBRewardsFee (Like1000x.sol#29) is not in mixedCase
Variable LIKE1000X._marketingWallet (Like1000x.sol#34) is not in mixedCase
Parameter LIKE1000XDividendTracker.getAccount(address)._account (Like1000x.sol#471) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in LIKE1000X._transfer(address,address,uint256) (Like1000x.sol#257-333):
External calls:
- address(_marketingWallet).transfer(bnbForMarket) (Like1000x.sol#296)
External calls sending eth:
- address(_marketingWallet).transfer(bnbForMarket) (Like1000x.sol#296)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
State variables written after the call(s):
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
Reentrancy in LIKE1000X._transfer(address,address,uint256) (Like1000x.sol#257-333):
External calls:
- address(_marketingWallet).transfer(bnbForMarket) (Like1000x.sol#296)
External calls sending eth:
- address(_marketingWallet).transfer(bnbForMarket) (Like1000x.sol#296)
- addLiquidity(lpTokenAmount,bnbForLP) (Like1000x.sol#298)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_lpWallet,block.timestamp) (Like1000x.sol#341-348)
- sendDividends(bnbForRewards) (Like1000x.sol#300)
- (success) = address(dividendTracker).call{gas: 3000,value: tokens}() (Like1000x.sol#406)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (Like1000x.sol#315)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (Like1000x.sol#318)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (Like1000x.sol#302)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (Like1000x.sol#327)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,address(this),fees) (Like1000x.sol#315)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,to,amount) (Like1000x.sol#318)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (IUniswapV2Router.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (IUniswapV2Router.sol#13)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#74) is too similar to LIKE1000XDividendTracker.getAccount(address).withdrawableDividends (Like1000x.sol#476)
Prevent variables from having similar names.
Additional information: link
LIKE1000X.constructor() (Like1000x.sol#81-112) uses literals with too many digits:
- _mint(owner(),1000000000 * (10 ** 18)) (Like1000x.sol#111)
LIKE1000X.updateGasForProcessing(uint256) (Like1000x.sol#175-180) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,LIKE1000X: gasForProcessing must be between 200,000 and 500,000) (Like1000x.sol#176)
LIKE1000X.slitherConstructorVariables() (Like1000x.sol#14-411) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (Like1000x.sol#24)
LIKE1000X.slitherConstructorVariables() (Like1000x.sol#14-411) uses literals with too many digits:
- gasForProcessing = 300000 (Like1000x.sol#38)
LIKE1000XDividendTracker.getAccountAtIndex(uint256) (Like1000x.sol#516-533) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (Like1000x.sol#527)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-92)
Remove unused state variables.
Additional information: link
LIKE1000X.BNBRewardsFee (Like1000x.sol#29) should be constant
LIKE1000X._lpWallet (Like1000x.sol#35) should be constant
LIKE1000X.deadWallet (Like1000x.sol#24) should be constant
LIKE1000X.lpFee (Like1000x.sol#30) should be constant
LIKE1000X.marketingFee (Like1000x.sol#28) should be constant
LIKE1000X.swapTokensAtAmount (Like1000x.sol#26) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
distributeBNBDividends(uint256) should be declared external:
- DividendPayingToken.distributeBNBDividends(uint256) (DividendPayingToken.sol#52-63)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (DividendPayingToken.sol#67-69)
- LIKE1000XDividendTracker.withdrawDividend() (Like1000x.sol#442-444)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (DividendPayingToken.sol#99-101)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (DividendPayingToken.sol#113-115)
name() should be declared external:
- ERC20.name() (ERC20.sol#63-65)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#71-73)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#88-90)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#114-117)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#122-124)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#133-136)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#151-159)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#173-176)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#192-195)
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)
updateDividendTracker(address) should be declared external:
- LIKE1000X.updateDividendTracker(address) (Like1000x.sol#118-132)
updateUniswapV2Router(address) should be declared external:
- LIKE1000X.updateUniswapV2Router(address) (Like1000x.sol#134-141)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- LIKE1000X.excludeMultipleAccountsFromFees(address[],bool) (Like1000x.sol#149-155)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- LIKE1000X.setAutomatedMarketMakerPair(address,bool) (Like1000x.sol#157-161)
updateGasForProcessing(uint256) should be declared external:
- LIKE1000X.updateGasForProcessing(uint256) (Like1000x.sol#175-180)
isExcludedFromFees(address) should be declared external:
- LIKE1000X.isExcludedFromFees(address) (Like1000x.sol#194-196)
withdrawableDividendOf(address) should be declared external:
- LIKE1000X.withdrawableDividendOf(address) (Like1000x.sol#198-200)
dividendTokenBalanceOf(address) should be declared external:
- LIKE1000X.dividendTokenBalanceOf(address) (Like1000x.sol#202-204)
getAccountAtIndex(uint256) should be declared external:
- LIKE1000XDividendTracker.getAccountAtIndex(uint256) (Like1000x.sol#516-533)
process(uint256) should be declared external:
- LIKE1000XDividendTracker.process(uint256) (Like1000x.sol#560-605)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#43-46)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to find audit link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Unable to verify token contract address on the website
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account