Name: Cash Grab
Ticker: $CASH
The World's first Burn2Earn dApp.
Website: https://cashgrab.app
Twitter: twitter.com/cashgrabapp
Telegram: @cashgrabapp
Reentrancy in CashGrab._transfer(address,address,uint256) (#978-1043):
External calls:
- swapAndLiquify(contractTokenBalance) (#1014)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1069-1075)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1014)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1027)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#938)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1118)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1110)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1111)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#813)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1128)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1129)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1120)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#815)
- _tokenTransfer(from,_fundWallet,_amountSentToOwner,takeFee) (#1035)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#938)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1118)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1110)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1111)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#813)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1128)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1129)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1120)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#815)
- _tokenTransfer(from,to,_remainingAmount,takeFee) (#1037)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#938)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1118)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1110)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1111)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#813)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1128)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1129)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1120)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#815)
- _tokenTransfer(from,to,amount,takeFee) (#1027)
- _rTotal = _rTotal.sub(rFee) (#898)
- _tokenTransfer(from,_fundWallet,_amountSentToOwner,takeFee) (#1035)
- _rTotal = _rTotal.sub(rFee) (#898)
- _tokenTransfer(from,to,_remainingAmount,takeFee) (#1037)
- _rTotal = _rTotal.sub(rFee) (#898)
- _tokenTransfer(from,to,amount,takeFee) (#1027)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#940)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1127)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#812)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1119)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#814)
- _tokenTransfer(from,_fundWallet,_amountSentToOwner,takeFee) (#1035)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#940)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1127)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#812)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1119)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#814)
- _tokenTransfer(from,to,_remainingAmount,takeFee) (#1037)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#940)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1127)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#812)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1119)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#814)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
CashGrab.addLiquidity(uint256,uint256) (#1077-1089) ignores return value by pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
Ensure that all the return values of the function calls are used.
Additional information: link
CashGrab.allowance(address,address).owner (#743) shadows:
- Ownable.owner() (#392-394) (function)
CashGrab._approve(address,address,uint256).owner (#972) shadows:
- Ownable.owner() (#392-394) (function)
Rename the local variables that shadow another component.
Additional information: link
CashGrab.setMaxTxPercent(uint256) (#860-864) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10000) (#861-863)
Emit an event for critical parameter changes.
Additional information: link
CashGrab.setOwnerTaxAccount(address)._account (#873) lacks a zero-check on :
- _fundWallet = _account (#875)
CashGrab.setPancakeSwapRouterAddress(address)._newRouterAddress (#1135) lacks a zero-check on :
- pancakeswapRouterAddress = _newRouterAddress (#1137)
Check that the address is not zero.
Additional information: link
Reentrancy in CashGrab._transfer(address,address,uint256) (#978-1043):
External calls:
- swapAndLiquify(contractTokenBalance) (#1014)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1069-1075)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1014)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1027)
- _liquidityFee = _previousLiquidityFee (#966)
- _liquidityFee = 0 (#961)
- _tokenTransfer(from,_fundWallet,_amountSentToOwner,takeFee) (#1035)
- _liquidityFee = _previousLiquidityFee (#966)
- _liquidityFee = 0 (#961)
- _tokenTransfer(from,to,_remainingAmount,takeFee) (#1037)
- _liquidityFee = _previousLiquidityFee (#966)
- _liquidityFee = 0 (#961)
- _tokenTransfer(from,to,amount,takeFee) (#1027)
- _previousLiquidityFee = _liquidityFee (#958)
- _tokenTransfer(from,_fundWallet,_amountSentToOwner,takeFee) (#1035)
- _previousLiquidityFee = _liquidityFee (#958)
- _tokenTransfer(from,to,_remainingAmount,takeFee) (#1037)
- _previousLiquidityFee = _liquidityFee (#958)
- _tokenTransfer(from,to,amount,takeFee) (#1027)
- _previousTaxFee = _shareFee (#957)
- _tokenTransfer(from,_fundWallet,_amountSentToOwner,takeFee) (#1035)
- _previousTaxFee = _shareFee (#957)
- _tokenTransfer(from,to,_remainingAmount,takeFee) (#1037)
- _previousTaxFee = _shareFee (#957)
- _tokenTransfer(from,to,amount,takeFee) (#1027)
- _shareFee = _previousTaxFee (#965)
- _shareFee = 0 (#960)
- _tokenTransfer(from,_fundWallet,_amountSentToOwner,takeFee) (#1035)
- _shareFee = _previousTaxFee (#965)
- _shareFee = 0 (#960)
- _tokenTransfer(from,to,_remainingAmount,takeFee) (#1037)
- _shareFee = _previousTaxFee (#965)
- _shareFee = 0 (#960)
- _tokenTransfer(from,to,amount,takeFee) (#1027)
- _tFeeTotal = _tFeeTotal.add(tFee) (#899)
- _tokenTransfer(from,_fundWallet,_amountSentToOwner,takeFee) (#1035)
- _tFeeTotal = _tFeeTotal.add(tFee) (#899)
- _tokenTransfer(from,to,_remainingAmount,takeFee) (#1037)
- _tFeeTotal = _tFeeTotal.add(tFee) (#899)
Reentrancy in CashGrab.constructor() (#700-722):
External calls:
- pancakeswapV2Pair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#708-709)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#714)
- _isExcludedFromFee[address(this)] = true (#715)
- _isExcludedFromFundFee[owner()] = true (#718)
- _isExcludedFromFundFee[address(this)] = true (#719)
- pancakeswapV2Router = _pancakeswapV2Router (#711)
Reentrancy in CashGrab.swapAndLiquify(uint256) (#1044-1061):
External calls:
- swapTokensForEth(half) (#1054)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1069-1075)
- addLiquidity(otherHalf,newBalance) (#1058)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1058)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1058)
- _allowances[owner][spender] = amount (#975)
Reentrancy in CashGrab.transferFrom(address,address,uint256) (#750-754):
External calls:
- _transfer(sender,recipient,amount) (#751)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1069-1075)
External calls sending eth:
- _transfer(sender,recipient,amount) (#751)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#752)
- _allowances[owner][spender] = amount (#975)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CashGrab._transfer(address,address,uint256) (#978-1043):
External calls:
- swapAndLiquify(contractTokenBalance) (#1014)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1069-1075)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1014)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1114)
- _tokenTransfer(from,to,amount,takeFee) (#1027)
- Transfer(sender,recipient,tTransferAmount) (#1114)
- _tokenTransfer(from,to,_remainingAmount,takeFee) (#1037)
- Transfer(sender,recipient,tTransferAmount) (#1114)
- _tokenTransfer(from,_fundWallet,_amountSentToOwner,takeFee) (#1035)
- Transfer(sender,recipient,tTransferAmount) (#1132)
- _tokenTransfer(from,_fundWallet,_amountSentToOwner,takeFee) (#1035)
- Transfer(sender,recipient,tTransferAmount) (#1123)
- _tokenTransfer(from,to,amount,takeFee) (#1027)
- Transfer(sender,recipient,tTransferAmount) (#1123)
- _tokenTransfer(from,_fundWallet,_amountSentToOwner,takeFee) (#1035)
- Transfer(sender,recipient,tTransferAmount) (#1132)
- _tokenTransfer(from,to,amount,takeFee) (#1027)
- Transfer(sender,recipient,tTransferAmount) (#1123)
- _tokenTransfer(from,to,_remainingAmount,takeFee) (#1037)
- Transfer(sender,recipient,tTransferAmount) (#1132)
- _tokenTransfer(from,to,_remainingAmount,takeFee) (#1037)
- Transfer(sender,recipient,tTransferAmount) (#818)
- _tokenTransfer(from,to,amount,takeFee) (#1027)
- Transfer(sender,recipient,tTransferAmount) (#818)
- _tokenTransfer(from,to,_remainingAmount,takeFee) (#1037)
- Transfer(sender,recipient,tTransferAmount) (#818)
- _tokenTransfer(from,_fundWallet,_amountSentToOwner,takeFee) (#1035)
Reentrancy in CashGrab.constructor() (#700-722):
External calls:
- pancakeswapV2Pair = IPancakeswapV2Factory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#708-709)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#721)
Reentrancy in CashGrab.swapAndLiquify(uint256) (#1044-1061):
External calls:
- swapTokensForEth(half) (#1054)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1069-1075)
- addLiquidity(otherHalf,newBalance) (#1058)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1058)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#976)
- addLiquidity(otherHalf,newBalance) (#1058)
- SwapAndLiquify(half,newBalance,otherHalf) (#1060)
Reentrancy in CashGrab.transferFrom(address,address,uint256) (#750-754):
External calls:
- _transfer(sender,recipient,amount) (#751)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1069-1075)
External calls sending eth:
- _transfer(sender,recipient,amount) (#751)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#976)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#752)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#437-442) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#439)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#257-266) uses assembly
- INLINE ASM (#264)
Address._functionCallWithValue(address,bytes,uint256,string) (#343-362) uses assembly
- INLINE ASM (#354-357)
Do not use evm assembly.
Additional information: link
CashGrab.includeInReward(address) (#796-809) has costly operations inside a loop:
- _excluded.pop() (#803)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#343-362) is never used and should be removed
Address.functionCall(address,bytes) (#307-309) is never used and should be removed
Address.functionCall(address,bytes,string) (#316-318) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#330-332) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#339-342) is never used and should be removed
Address.isContract(address) (#257-266) is never used and should be removed
Address.sendValue(address,uint256) (#283-288) is never used and should be removed
Context._msgData() (#231-234) is never used and should be removed
SafeMath.mod(uint256,uint256) (#207-209) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#222-225) is never used and should be removed
Remove unused functions.
Additional information: link
CashGrab._previousFundFee (#652) is set pre-construction with a non-constant function or state variable:
- _fundFee
CashGrab._fundWallet (#654) is set pre-construction with a non-constant function or state variable:
- _msgSender()
CashGrab._previousFundWallet (#655) is set pre-construction with a non-constant function or state variable:
- _fundWallet
CashGrab._previousTaxFee (#658) is set pre-construction with a non-constant function or state variable:
- _shareFee
CashGrab._previousLiquidityFee (#661) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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
Low level call in Address.sendValue(address,uint256) (#283-288):
- (success) = recipient.call{value: amount}() (#286)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#343-362):
- (success,returndata) = target.call{value: weiValue}(data) (#346)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeswapV2Pair.DOMAIN_SEPARATOR() (#469) is not in mixedCase
Function IPancakeswapV2Pair.PERMIT_TYPEHASH() (#470) is not in mixedCase
Function IPancakeswapV2Pair.MINIMUM_LIQUIDITY() (#484) is not in mixedCase
Function IPancakeswapV2Router01.WETH() (#502) is not in mixedCase
Event CashGrabnewPancakeswapRouterAddress(address) (#692) is not in CapWords
Parameter CashGrab.setFundFeePercent(uint256)._fundFeePercent (#866) is not in mixedCase
Parameter CashGrab.setOwnerTaxAccount(address)._account (#873) is not in mixedCase
Parameter CashGrab.setSwapAndLiquifyEnabled(bool)._enabled (#882) is not in mixedCase
Parameter CashGrab.calculateTaxFee(uint256)._amount (#943) is not in mixedCase
Parameter CashGrab.calculateLiquidityFee(uint256)._amount (#948) is not in mixedCase
Parameter CashGrab.setPancakeSwapRouterAddress(address)._newRouterAddress (#1135) is not in mixedCase
Constant CashGrab._tTotal (#644) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CashGrab._name (#647) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CashGrab._symbol (#648) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CashGrab._decimals (#649) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CashGrab._fundFee (#651) is not in mixedCase
Variable CashGrab._fundWallet (#654) is not in mixedCase
Variable CashGrab._previousFundWallet (#655) is not in mixedCase
Variable CashGrab._shareFee (#657) is not in mixedCase
Variable CashGrab._liquidityFee (#660) is not in mixedCase
Variable CashGrab._maxTxAmount (#669) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#232)" inContext (#227-235)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IPancakeswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#506) is too similar to IPancakeswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#507)
Variable CashGrab._transferBothExcluded(address,address,uint256).rTransferAmount (#811) is too similar to CashGrab._getValues(uint256).tTransferAmount (#902)
Variable CashGrab._transferToExcluded(address,address,uint256).rTransferAmount (#1117) is too similar to CashGrab._getValues(uint256).tTransferAmount (#902)
Variable CashGrab._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to CashGrab._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable CashGrab.reflectionFromToken(uint256,bool).rTransferAmount (#775) is too similar to CashGrab._getTValues(uint256).tTransferAmount (#909)
Variable CashGrab._transferFromExcluded(address,address,uint256).rTransferAmount (#1126) is too similar to CashGrab._transferToExcluded(address,address,uint256).tTransferAmount (#1117)
Variable CashGrab.reflectionFromToken(uint256,bool).rTransferAmount (#775) is too similar to CashGrab._getValues(uint256).tTransferAmount (#902)
Variable CashGrab._transferBothExcluded(address,address,uint256).rTransferAmount (#811) is too similar to CashGrab._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable CashGrab._transferToExcluded(address,address,uint256).rTransferAmount (#1117) is too similar to CashGrab._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable CashGrab._transferFromExcluded(address,address,uint256).rTransferAmount (#1126) is too similar to CashGrab._transferFromExcluded(address,address,uint256).tTransferAmount (#1126)
Variable CashGrab._getValues(uint256).rTransferAmount (#903) is too similar to CashGrab._getTValues(uint256).tTransferAmount (#909)
Variable CashGrab._getValues(uint256).rTransferAmount (#903) is too similar to CashGrab._getValues(uint256).tTransferAmount (#902)
Variable CashGrab._transferFromExcluded(address,address,uint256).rTransferAmount (#1126) is too similar to CashGrab._getTValues(uint256).tTransferAmount (#909)
Variable CashGrab._transferToExcluded(address,address,uint256).rTransferAmount (#1117) is too similar to CashGrab._transferToExcluded(address,address,uint256).tTransferAmount (#1117)
Variable CashGrab._transferFromExcluded(address,address,uint256).rTransferAmount (#1126) is too similar to CashGrab._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable CashGrab._transferBothExcluded(address,address,uint256).rTransferAmount (#811) is too similar to CashGrab._transferToExcluded(address,address,uint256).tTransferAmount (#1117)
Variable CashGrab._transferToExcluded(address,address,uint256).rTransferAmount (#1117) is too similar to CashGrab._transferFromExcluded(address,address,uint256).tTransferAmount (#1126)
Variable CashGrab._transferFromExcluded(address,address,uint256).rTransferAmount (#1126) is too similar to CashGrab._getValues(uint256).tTransferAmount (#902)
Variable CashGrab._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to CashGrab._getTValues(uint256).tTransferAmount (#909)
Variable CashGrab._transferFromExcluded(address,address,uint256).rTransferAmount (#1126) is too similar to CashGrab._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable CashGrab._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to CashGrab._getValues(uint256).tTransferAmount (#902)
Variable CashGrab._transferBothExcluded(address,address,uint256).rTransferAmount (#811) is too similar to CashGrab._getTValues(uint256).tTransferAmount (#909)
Variable CashGrab._transferToExcluded(address,address,uint256).rTransferAmount (#1117) is too similar to CashGrab._getTValues(uint256).tTransferAmount (#909)
Variable CashGrab._transferToExcluded(address,address,uint256).rTransferAmount (#1117) is too similar to CashGrab._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable CashGrab._transferBothExcluded(address,address,uint256).rTransferAmount (#811) is too similar to CashGrab._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable CashGrab.reflectionFromToken(uint256,bool).rTransferAmount (#775) is too similar to CashGrab._transferFromExcluded(address,address,uint256).tTransferAmount (#1126)
Variable CashGrab._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to CashGrab._transferFromExcluded(address,address,uint256).tTransferAmount (#1126)
Variable CashGrab._getValues(uint256).rTransferAmount (#903) is too similar to CashGrab._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable CashGrab._getValues(uint256).rTransferAmount (#903) is too similar to CashGrab._transferToExcluded(address,address,uint256).tTransferAmount (#1117)
Variable CashGrab._getValues(uint256).rTransferAmount (#903) is too similar to CashGrab._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable CashGrab._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to CashGrab._getTValues(uint256).tTransferAmount (#909)
Variable CashGrab._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to CashGrab._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable CashGrab.reflectionFromToken(uint256,bool).rTransferAmount (#775) is too similar to CashGrab._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable CashGrab._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to CashGrab._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable CashGrab._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to CashGrab._transferToExcluded(address,address,uint256).tTransferAmount (#1117)
Variable CashGrab._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to CashGrab._transferToExcluded(address,address,uint256).tTransferAmount (#1117)
Variable CashGrab.reflectionFromToken(uint256,bool).rTransferAmount (#775) is too similar to CashGrab._transferToExcluded(address,address,uint256).tTransferAmount (#1117)
Variable CashGrab._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to CashGrab._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable CashGrab.reflectionFromToken(uint256,bool).rTransferAmount (#775) is too similar to CashGrab._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable CashGrab._transferBothExcluded(address,address,uint256).rTransferAmount (#811) is too similar to CashGrab._transferFromExcluded(address,address,uint256).tTransferAmount (#1126)
Variable CashGrab._getValues(uint256).rTransferAmount (#903) is too similar to CashGrab._transferFromExcluded(address,address,uint256).tTransferAmount (#1126)
Variable CashGrab._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to CashGrab._getValues(uint256).tTransferAmount (#902)
Variable CashGrab._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to CashGrab._transferFromExcluded(address,address,uint256).tTransferAmount (#1126)
Prevent variables from having similar names.
Additional information: link
CashGrab.slitherConstructorVariables() (#631-1146) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 6 (#669)
CashGrab.slitherConstructorVariables() (#631-1146) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 2500000 * 10 ** 9 (#673)
CashGrab.slitherConstructorConstantVariables() (#631-1146) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 6 (#644)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CashGrab.numTokensSellToAddToLiquidity (#673) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to find audit link on the website
Unable to find whitepaper 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
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
Telegram account has less than 100 subscribers
Twitter account has relatively few followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts