Safutrendz is here with great strength & ability to help DEFI investors SAFU from RugPulls, with a unique SAFU techniques which TRENDZ across the Blockchain.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
SaFuTrendz.clearStuckBNB() (#982-984) sends eth to arbitrary user
Dangerous calls:
- address(marketingAddress).transfer(address(this).balance) (#983)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SaFuTrendz._transfer(address,address,uint256) (#646-690):
External calls:
- swapTokens(contractTokenBalance) (#669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
External calls sending eth:
- swapTokens(contractTokenBalance) (#669)
- recipient.transfer(amount) (#940)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#843)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#743)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#752)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#763)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#773)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#744)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#764)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#775)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _rTotal = _rTotal.sub(rFee) (#798)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#845)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#772)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#762)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#753)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#774)
Apply the check-effects-interactions pattern.
Additional information: link
SaFuTrendz.tradingActiveBlock (#442) is never initialized. It is used in:
- SaFuTrendz._transfer(address,address,uint256) (#646-690)
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
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.
SaFuTrendz._rTotal (#412) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SaFuTrendz._previousRewardFee (#420) is set pre-construction with a non-constant function or state variable:
- _rewardFee
SaFuTrendz._previousMarketingFee (#423) is set pre-construction with a non-constant function or state variable:
- _marketingFee
SaFuTrendz._maxTxAmount (#432) is set pre-construction with a non-constant function or state variable:
- (_tTotal * maxTxPercent) / maxTxDivisor
SaFuTrendz._maxTxAmountUI (#433) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
SaFuTrendz._previousMaxTxAmount (#434) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
SaFuTrendz.numTokensSellToAddToLiquidity (#436) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 2) / 100000
SaFuTrendz.pubTokensSellToAddToLiquidity (#437) is set pre-construction with a non-constant function or state variable:
- numTokensSellToAddToLiquidity
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
SaFuTrendz.allowance(address,address).owner (#526) shadows:
- Ownable.owner() (#163-165) (function)
SaFuTrendz._approve(address,address,uint256).owner (#638) shadows:
- Ownable.owner() (#163-165) (function)
Rename the local variables that shadow another component.
Additional information: link
SaFuTrendz.setSellFee(uint256,uint256) (#628-631) should emit an event for:
- _rewardFee = rewardFee (#629)
- _marketingFee = marketingFee (#630)
SaFuTrendz.setBuyFee(uint256,uint256) (#633-636) should emit an event for:
- _marketingFee = marketingFee (#634)
- _rewardFee = rewardFee (#635)
SaFuTrendz.SetSwapMinutes(uint256) (#907-909) should emit an event for:
- _intervalMinutesForSwap = newMinutes * 60 (#908)
SaFuTrendz.setRewardFeePercent(uint256) (#911-913) should emit an event for:
- _rewardFee = rewardFee (#912)
SaFuTrendz.setMarketingFeePercent(uint256) (#915-917) should emit an event for:
- _marketingFee = marketingFee (#916)
SaFuTrendz.setnumTokensSellToAddToLiquidity(uint256) (#919-922) should emit an event for:
- numTokensSellToAddToLiquidity = numTokens (#920)
SaFuTrendz.setMaxTxPercent(uint256) (#924-927) should emit an event for:
- _maxTxAmount = _tTotal.mul(_maxTxPercent).div(10 ** 1) (#925)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in SaFuTrendz._transfer(address,address,uint256) (#646-690):
External calls:
- swapTokens(contractTokenBalance) (#669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
External calls sending eth:
- swapTokens(contractTokenBalance) (#669)
- recipient.transfer(amount) (#940)
State variables written after the call(s):
- _marketingFee = 45 (#678)
- _marketingFee = _previousMarketingFee (#681)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _marketingFee = _previousMarketingFee (#872)
- _marketingFee = 0 (#867)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _previousMarketingFee = _marketingFee (#864)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _previousRewardFee = _rewardFee (#863)
- _rewardFee = 45 (#677)
- _rewardFee = _previousRewardFee (#680)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _rewardFee = _previousRewardFee (#871)
- _rewardFee = 0 (#866)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _tFeeTotal = _tFeeTotal.add(tFee) (#799)
Reentrancy in SaFuTrendz.changeRouterVersion(address) (#944-957):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#950-951)
State variables written after the call(s):
- uniswapV2Pair = _pair (#953)
- uniswapV2Router = _uniswapV2Router (#956)
Reentrancy in SaFuTrendz.constructor() (#469-487):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#477)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#481)
- _isExcludedFromFee[address(this)] = true (#482)
- _isExcludedFromMaxTx[owner()] = true (#483)
- _isExcludedFromMaxTx[address(this)] = true (#484)
- pairs.push(uniswapV2Pair) (#480)
- uniswapV2Router = _uniswapV2Router (#479)
Reentrancy in SaFuTrendz.transferFrom(address,address,uint256) (#535-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
External calls sending eth:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#940)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#540)
- _allowances[owner][spender] = amount (#642)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SaFuTrendz._transfer(address,address,uint256) (#646-690):
External calls:
- swapTokens(contractTokenBalance) (#669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
External calls sending eth:
- swapTokens(contractTokenBalance) (#669)
- recipient.transfer(amount) (#940)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#747)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- Transfer(sender,recipient,tTransferAmount) (#757)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- Transfer(sender,recipient,tTransferAmount) (#767)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- Transfer(sender,recipient,tTransferAmount) (#778)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
Reentrancy in SaFuTrendz.constructor() (#469-487):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#477)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#486)
Reentrancy in SaFuTrendz.swapTokens(uint256) (#692-700):
External calls:
- swapTokensForEth(contractTokenBalance) (#695)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
External calls sending eth:
- transferToAddressETH(marketingAddress,transferredBalance) (#699)
- recipient.transfer(amount) (#940)
Event emitted after the call(s):
- Transfer(msg.sender,recipient,amount) (#941)
- transferToAddressETH(marketingAddress,transferredBalance) (#699)
Reentrancy in SaFuTrendz.swapTokensForEth(uint256) (#703-721):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#720)
Reentrancy in SaFuTrendz.transferFrom(address,address,uint256) (#535-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
External calls sending eth:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#940)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#643)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#540)
Apply the check-effects-interactions pattern.
Additional information: link
SaFuTrendz._transfer(address,address,uint256) (#646-690) uses timestamp for comparisons
Dangerous comparisons:
- overMinimumTokenBalance && _startTimeForSwap + _intervalMinutesForSwap <= block.timestamp (#666)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#95-104) uses assembly
- INLINE ASM (#102)
Address._functionCallWithValue(address,bytes,uint256,string) (#132-149) uses assembly
- INLINE ASM (#141-144)
Do not use evm assembly.
Additional information: link
SaFuTrendz.transfer(address,uint256) (#518-524) compares to a boolean constant:
-Trade == true (#520)
SaFuTrendz.transfer(address,uint256) (#518-524) compares to a boolean constant:
-require(bool)(flag == true) (#521)
SaFuTrendz.transferFrom(address,address,uint256) (#535-542) compares to a boolean constant:
-Trade == true (#537)
SaFuTrendz.transferFrom(address,address,uint256) (#535-542) compares to a boolean constant:
-require(bool)(flag == true) (#538)
SaFuTrendz.blacklistSingleWallet(address) (#781-784) compares to a boolean constant:
-_isBlacklisted[addresses] == true (#782)
SaFuTrendz.unBlacklistSingleWallet(address) (#791-794) compares to a boolean constant:
-_isBlacklisted[addresses] == false (#792)
Remove the equality to the boolean constant.
Additional information: link
SaFuTrendz.includeInReward(address) (#614-626) has costly operations inside a loop:
- _excluded.pop() (#622)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#132-149) is never used and should be removed
Address.functionCall(address,bytes) (#115-117) is never used and should be removed
Address.functionCall(address,bytes,string) (#119-121) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#123-125) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#127-130) is never used and should be removed
Address.isContract(address) (#95-104) is never used and should be removed
Address.sendValue(address,uint256) (#106-112) is never used and should be removed
Context._msgData() (#20-23) is never used and should be removed
SafeMath.mod(uint256,uint256) (#83-85) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#87-90) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#106-112):
- (success) = recipient.call{value: amount}() (#110)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#132-149):
- (success,returndata) = target.call{value: weiValue}(data) (#135)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#220) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#221) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#237) is not in mixedCase
Function IUniswapV2Router01.WETH() (#258) is not in mixedCase
Function SaFuTrendz.TradingStatus() (#562-564) is not in mixedCase
Parameter SaFuTrendz.calculateRewardFee(uint256)._amount (#848) is not in mixedCase
Parameter SaFuTrendz.calculateMarketingFee(uint256)._amount (#854) is not in mixedCase
Parameter SaFuTrendz.setFeesOnNormalTransfers(bool)._enabled (#892) is not in mixedCase
Parameter SaFuTrendz.prepareForPresale(address,address).PresaleRouter (#896) is not in mixedCase
Function SaFuTrendz.GetSwapMinutes() (#903-905) is not in mixedCase
Function SaFuTrendz.SetSwapMinutes(uint256) (#907-909) is not in mixedCase
Parameter SaFuTrendz.setMaxTxPercent(uint256)._maxTxPercent (#924) is not in mixedCase
Parameter SaFuTrendz.setMarketingAddress(address)._marketingAddress (#929) is not in mixedCase
Parameter SaFuTrendz.setSwapAndLiquifyEnabled(bool)._enabled (#934) is not in mixedCase
Parameter SaFuTrendz.changeRouterVersion(address)._router (#944) is not in mixedCase
Parameter SaFuTrendz.enableTrading(bool)._tradeEnabled (#962) is not in mixedCase
Parameter SaFuTrendz.clearStuckTokens(address,address)._token (#991) is not in mixedCase
Parameter SaFuTrendz.clearStuckTokens(address,address)._to (#991) is not in mixedCase
Function SaFuTrendz.ChangeTradingStatus(bool) (#1000-1002) is not in mixedCase
Parameter SaFuTrendz.ChangeTradingStatus(bool)._status (#1000) is not in mixedCase
Variable SaFuTrendz._rewardFee (#419) is not in mixedCase
Variable SaFuTrendz._marketingFee (#422) is not in mixedCase
Variable SaFuTrendz._startTimeForSwap (#425) is not in mixedCase
Variable SaFuTrendz._intervalMinutesForSwap (#426) is not in mixedCase
Variable SaFuTrendz._balances (#428) is not in mixedCase
Variable SaFuTrendz._maxTxAmountUI (#433) is not in mixedCase
Variable SaFuTrendz.Trade (#959) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#21)" inContext (#15-24)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in SaFuTrendz._transfer(address,address,uint256) (#646-690):
External calls:
- swapTokens(contractTokenBalance) (#669)
- recipient.transfer(amount) (#940)
State variables written after the call(s):
- _marketingFee = 45 (#678)
- _marketingFee = _previousMarketingFee (#681)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _marketingFee = _previousMarketingFee (#872)
- _marketingFee = 0 (#867)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _previousMarketingFee = _marketingFee (#864)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _previousRewardFee = _rewardFee (#863)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#843)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#743)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#752)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#763)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#773)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#744)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#764)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#775)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _rTotal = _rTotal.sub(rFee) (#798)
- _rewardFee = 45 (#677)
- _rewardFee = _previousRewardFee (#680)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _rewardFee = _previousRewardFee (#871)
- _rewardFee = 0 (#866)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _tFeeTotal = _tFeeTotal.add(tFee) (#799)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#845)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#772)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#762)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#753)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#774)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#747)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- Transfer(sender,recipient,tTransferAmount) (#757)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- Transfer(sender,recipient,tTransferAmount) (#767)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
- Transfer(sender,recipient,tTransferAmount) (#778)
- _tokenTransfer(from,to,amount,feesOnNormalTransfers) (#689)
Reentrancy in SaFuTrendz.transferFrom(address,address,uint256) (#535-542):
External calls:
- _transfer(sender,recipient,amount) (#539)
- recipient.transfer(amount) (#940)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#540)
- _allowances[owner][spender] = amount (#642)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#643)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#540)
Reentrancy in SaFuTrendz.transferToAddressETH(address,uint256) (#939-942):
External calls:
- recipient.transfer(amount) (#940)
Event emitted after the call(s):
- Transfer(msg.sender,recipient,amount) (#941)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#263) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#264)
Variable SaFuTrendz.numTokensSellToAddToLiquidity (#436) is too similar to SaFuTrendz.pubTokensSellToAddToLiquidity (#437)
Variable SaFuTrendz._transferBothExcluded(address,address,uint256).rTransferAmount (#771) is too similar to SaFuTrendz._transferFromExcluded(address,address,uint256).tTransferAmount (#761)
Variable SaFuTrendz._transferToExcluded(address,address,uint256).rTransferAmount (#751) is too similar to SaFuTrendz._transferFromExcluded(address,address,uint256).tTransferAmount (#761)
Variable SaFuTrendz.reflectionFromToken(uint256,bool).rTransferAmount (#593) is too similar to SaFuTrendz._getValues(uint256).tTransferAmount (#803)
Variable SaFuTrendz._getValues(uint256).rTransferAmount (#804) is too similar to SaFuTrendz._transferFromExcluded(address,address,uint256).tTransferAmount (#761)
Variable SaFuTrendz._transferStandard(address,address,uint256).rTransferAmount (#742) is too similar to SaFuTrendz._transferFromExcluded(address,address,uint256).tTransferAmount (#761)
Variable SaFuTrendz._transferFromExcluded(address,address,uint256).rTransferAmount (#761) is too similar to SaFuTrendz._transferFromExcluded(address,address,uint256).tTransferAmount (#761)
Variable SaFuTrendz._transferToExcluded(address,address,uint256).rTransferAmount (#751) is too similar to SaFuTrendz._transferBothExcluded(address,address,uint256).tTransferAmount (#771)
Variable SaFuTrendz._transferBothExcluded(address,address,uint256).rTransferAmount (#771) is too similar to SaFuTrendz._transferBothExcluded(address,address,uint256).tTransferAmount (#771)
Variable SaFuTrendz._getValues(uint256).rTransferAmount (#804) is too similar to SaFuTrendz._transferBothExcluded(address,address,uint256).tTransferAmount (#771)
Variable SaFuTrendz._transferStandard(address,address,uint256).rTransferAmount (#742) is too similar to SaFuTrendz._transferBothExcluded(address,address,uint256).tTransferAmount (#771)
Variable SaFuTrendz._transferBothExcluded(address,address,uint256).rTransferAmount (#771) is too similar to SaFuTrendz._getTValues(uint256).tTransferAmount (#811)
Variable SaFuTrendz._transferToExcluded(address,address,uint256).rTransferAmount (#751) is too similar to SaFuTrendz._transferToExcluded(address,address,uint256).tTransferAmount (#751)
Variable SaFuTrendz._transferToExcluded(address,address,uint256).rTransferAmount (#751) is too similar to SaFuTrendz._getTValues(uint256).tTransferAmount (#811)
Variable SaFuTrendz._transferFromExcluded(address,address,uint256).rTransferAmount (#761) is too similar to SaFuTrendz._transferBothExcluded(address,address,uint256).tTransferAmount (#771)
Variable SaFuTrendz.reflectionFromToken(uint256,bool).rTransferAmount (#593) is too similar to SaFuTrendz._transferFromExcluded(address,address,uint256).tTransferAmount (#761)
Variable SaFuTrendz._transferBothExcluded(address,address,uint256).rTransferAmount (#771) is too similar to SaFuTrendz._getValues(uint256).tTransferAmount (#803)
Variable SaFuTrendz._transferToExcluded(address,address,uint256).rTransferAmount (#751) is too similar to SaFuTrendz._getValues(uint256).tTransferAmount (#803)
Variable SaFuTrendz._getValues(uint256).rTransferAmount (#804) is too similar to SaFuTrendz._getTValues(uint256).tTransferAmount (#811)
Variable SaFuTrendz._transferStandard(address,address,uint256).rTransferAmount (#742) is too similar to SaFuTrendz._getTValues(uint256).tTransferAmount (#811)
Variable SaFuTrendz._transferFromExcluded(address,address,uint256).rTransferAmount (#761) is too similar to SaFuTrendz._getTValues(uint256).tTransferAmount (#811)
Variable SaFuTrendz._getValues(uint256).rTransferAmount (#804) is too similar to SaFuTrendz._getValues(uint256).tTransferAmount (#803)
Variable SaFuTrendz._transferStandard(address,address,uint256).rTransferAmount (#742) is too similar to SaFuTrendz._getValues(uint256).tTransferAmount (#803)
Variable SaFuTrendz._transferToExcluded(address,address,uint256).rTransferAmount (#751) is too similar to SaFuTrendz._transferStandard(address,address,uint256).tTransferAmount (#742)
Variable SaFuTrendz.reflectionFromToken(uint256,bool).rTransferAmount (#593) is too similar to SaFuTrendz._transferBothExcluded(address,address,uint256).tTransferAmount (#771)
Variable SaFuTrendz._getValues(uint256).rTransferAmount (#804) is too similar to SaFuTrendz._transferStandard(address,address,uint256).tTransferAmount (#742)
Variable SaFuTrendz._transferFromExcluded(address,address,uint256).rTransferAmount (#761) is too similar to SaFuTrendz._getValues(uint256).tTransferAmount (#803)
Variable SaFuTrendz._transferStandard(address,address,uint256).rTransferAmount (#742) is too similar to SaFuTrendz._transferStandard(address,address,uint256).tTransferAmount (#742)
Variable SaFuTrendz.reflectionFromToken(uint256,bool).rTransferAmount (#593) is too similar to SaFuTrendz._getTValues(uint256).tTransferAmount (#811)
Variable SaFuTrendz._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#819) is too similar to SaFuTrendz._transferStandard(address,address,uint256).tTransferAmount (#742)
Variable SaFuTrendz._transferFromExcluded(address,address,uint256).rTransferAmount (#761) is too similar to SaFuTrendz._transferToExcluded(address,address,uint256).tTransferAmount (#751)
Variable SaFuTrendz._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#819) is too similar to SaFuTrendz._transferFromExcluded(address,address,uint256).tTransferAmount (#761)
Variable SaFuTrendz._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#819) is too similar to SaFuTrendz._getValues(uint256).tTransferAmount (#803)
Variable SaFuTrendz._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#819) is too similar to SaFuTrendz._transferBothExcluded(address,address,uint256).tTransferAmount (#771)
Variable SaFuTrendz._getValues(uint256).rTransferAmount (#804) is too similar to SaFuTrendz._transferToExcluded(address,address,uint256).tTransferAmount (#751)
Variable SaFuTrendz._transferBothExcluded(address,address,uint256).rTransferAmount (#771) is too similar to SaFuTrendz._transferToExcluded(address,address,uint256).tTransferAmount (#751)
Variable SaFuTrendz._transferFromExcluded(address,address,uint256).rTransferAmount (#761) is too similar to SaFuTrendz._transferStandard(address,address,uint256).tTransferAmount (#742)
Variable SaFuTrendz._transferBothExcluded(address,address,uint256).rTransferAmount (#771) is too similar to SaFuTrendz._transferStandard(address,address,uint256).tTransferAmount (#742)
Variable SaFuTrendz._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#819) is too similar to SaFuTrendz._getTValues(uint256).tTransferAmount (#811)
Variable SaFuTrendz.reflectionFromToken(uint256,bool).rTransferAmount (#593) is too similar to SaFuTrendz._transferToExcluded(address,address,uint256).tTransferAmount (#751)
Variable SaFuTrendz._transferStandard(address,address,uint256).rTransferAmount (#742) is too similar to SaFuTrendz._transferToExcluded(address,address,uint256).tTransferAmount (#751)
Variable SaFuTrendz.reflectionFromToken(uint256,bool).rTransferAmount (#593) is too similar to SaFuTrendz._transferStandard(address,address,uint256).tTransferAmount (#742)
Variable SaFuTrendz._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#819) is too similar to SaFuTrendz._transferToExcluded(address,address,uint256).tTransferAmount (#751)
Prevent variables from having similar names.
Additional information: link
SaFuTrendz.slitherConstructorVariables() (#393-1008) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#398)
SaFuTrendz.slitherConstructorVariables() (#393-1008) uses literals with too many digits:
- numTokensSellToAddToLiquidity = (_tTotal * 2) / 100000 (#436)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SaFuTrendz._balances (#428) is never used in SaFuTrendz (#393-1008)
SaFuTrendz._previousMaxTxAmount (#434) is never used in SaFuTrendz (#393-1008)
Remove unused state variables.
Additional information: link
SaFuTrendz._decimals (#417) should be constant
SaFuTrendz._name (#415) should be constant
SaFuTrendz._symbol (#416) should be constant
SaFuTrendz.deadBlockDelay (#448) should be constant
SaFuTrendz.maxTxDivisor (#431) should be constant
SaFuTrendz.maxTxPercent (#430) should be constant
SaFuTrendz.tradingActiveBlock (#442) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#172-175)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#177-181)
name() should be declared external:
- SaFuTrendz.name() (#489-491)
symbol() should be declared external:
- SaFuTrendz.symbol() (#493-495)
decimals() should be declared external:
- SaFuTrendz.decimals() (#497-499)
totalSupply() should be declared external:
- SaFuTrendz.totalSupply() (#501-503)
addPair(address) should be declared external:
- SaFuTrendz.addPair(address) (#505-507)
removeLastPair() should be declared external:
- SaFuTrendz.removeLastPair() (#509-511)
transfer(address,uint256) should be declared external:
- SaFuTrendz.transfer(address,uint256) (#518-524)
allowance(address,address) should be declared external:
- SaFuTrendz.allowance(address,address) (#526-528)
approve(address,uint256) should be declared external:
- SaFuTrendz.approve(address,uint256) (#530-533)
transferFrom(address,address,uint256) should be declared external:
- SaFuTrendz.transferFrom(address,address,uint256) (#535-542)
increaseAllowance(address,uint256) should be declared external:
- SaFuTrendz.increaseAllowance(address,uint256) (#544-547)
decreaseAllowance(address,uint256) should be declared external:
- SaFuTrendz.decreaseAllowance(address,uint256) (#549-552)
isExcludedFromReward(address) should be declared external:
- SaFuTrendz.isExcludedFromReward(address) (#554-556)
totalFees() should be declared external:
- SaFuTrendz.totalFees() (#558-560)
TradingStatus() should be declared external:
- SaFuTrendz.TradingStatus() (#562-564)
minimumTokensBeforeSwapAmount() should be declared external:
- SaFuTrendz.minimumTokensBeforeSwapAmount() (#566-568)
afterPresale() should be declared external:
- SaFuTrendz.afterPresale() (#570-572)
deliver(uint256) should be declared external:
- SaFuTrendz.deliver(uint256) (#574-581)
reflectionFromToken(uint256,bool) should be declared external:
- SaFuTrendz.reflectionFromToken(uint256,bool) (#587-596)
excludeFromReward(address) should be declared external:
- SaFuTrendz.excludeFromReward(address) (#604-612)
blacklistSingleWallet(address) should be declared external:
- SaFuTrendz.blacklistSingleWallet(address) (#781-784)
isBlacklisted(address) should be declared external:
- SaFuTrendz.isBlacklisted(address) (#787-789)
isExcludedFromFee(address) should be declared external:
- SaFuTrendz.isExcludedFromFee(address) (#875-877)
excludeFromFee(address) should be declared external:
- SaFuTrendz.excludeFromFee(address) (#879-881)
excludeFromMaxTx(address) should be declared external:
- SaFuTrendz.excludeFromMaxTx(address) (#883-885)
includeInFee(address) should be declared external:
- SaFuTrendz.includeInFee(address) (#887-889)
setFeesOnNormalTransfers(bool) should be declared external:
- SaFuTrendz.setFeesOnNormalTransfers(bool) (#892-894)
prepareForPresale(address,address) should be declared external:
- SaFuTrendz.prepareForPresale(address,address) (#896-901)
GetSwapMinutes() should be declared external:
- SaFuTrendz.GetSwapMinutes() (#903-905)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SaFuTrendz.setSwapAndLiquifyEnabled(bool) (#934-937)
changeRouterVersion(address) should be declared external:
- SaFuTrendz.changeRouterVersion(address) (#944-957)
ChangeTradingStatus(bool) should be declared external:
- SaFuTrendz.ChangeTradingStatus(bool) (#1000-1002)
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/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
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
Unable to find token on CoinHunt
Additional information: link
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
Young tokens have high risks of price dump / death
Twitter account has relatively few followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account