SAFUInvest provides a decentralized financial asset that rewards users with a sustainable 8% USDT reward model through the use of its unique SIAR protocol. Safu Invest delivers the industry’s highest rewards and a simple buy-hold-earn system that grows your $USDT portfolio in your wallet at a lightning-fast pace.
Reentrancy in SafuInvest._transfer(address,address,uint256) (#657-695):
External calls:
- swapTokens(contractTokenBalance) (#675)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#726-732)
- buyBackTokens(balance.div(100)) (#683)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
External calls sending eth:
- swapTokens(contractTokenBalance) (#675)
- recipient.transfer(amount) (#979)
- buyBackTokens(balance.div(100)) (#683)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _liquidityFee = _previousLiquidityFee (#906)
- _liquidityFee = 0 (#899)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#873)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#789)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#798)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#790)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#809)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#819)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#800)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#810)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#821)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _rTotal = _rTotal.sub(rFee) (#828)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#875)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#808)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#818)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#799)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#820)
- buyBackTokens(balance.div(100)) (#683)
- inSwapAndLiquify = true (#484)
- inSwapAndLiquify = false (#486)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- marketingFee = previousMarketingFee (#908)
- marketingFee = 0 (#901)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
SafuInvest.constructor(string,string,uint8,uint256,uint256,uint256,uint256,address) (#489-530) performs a multiplication on the result of a division:
-_maxTxAmount = _tTotal.div(1000).mul(3) (#511)
SafuInvest.constructor(string,string,uint8,uint256,uint256,uint256,uint256,address) (#489-530) performs a multiplication on the result of a division:
-minimumTokensBeforeSwap = _tTotal.div(10000).mul(2) (#513)
SafuInvest.swapTokens(uint256) (#697-708) performs a multiplication on the result of a division:
-transferToAddressETH(dappbuilderAddress,transferredBalance.div(_liquidityFee).mul(dappbuilderFee)) (#705)
SafuInvest.swapTokens(uint256) (#697-708) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingFee.sub(dappbuilderFee))) (#706)
Consider ordering multiplication before division.
Additional information: link
SafuInvest.addLiquidity(uint256,uint256) (#754-767) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#759-766)
Ensure that all the return values of the function calls are used.
Additional information: link
SafuInvest.allowance(address,address).owner (#558) shadows:
- Ownable.owner() (#157-159) (function)
SafuInvest._approve(address,address,uint256).owner (#649) shadows:
- Ownable.owner() (#157-159) (function)
Rename the local variables that shadow another component.
Additional information: link
SafuInvest.setTaxFee(uint256) (#923-925) should emit an event for:
- _taxFee = taxFee (#924)
SafuInvest.setBuybackFee(uint256) (#927-930) should emit an event for:
- buybackFee = _buybackFee (#928)
- _liquidityFee = buybackFee.add(marketingFee) (#929)
SafuInvest.setMaxTxAmount(uint256) (#932-934) should emit an event for:
- _maxTxAmount = maxTxAmount (#933)
SafuInvest.setMarketingFee(uint256) (#936-940) should emit an event for:
- marketingFee = _marketingFee (#938)
- _liquidityFee = buybackFee.add(marketingFee) (#939)
SafuInvest.setNumTokensSellToAddToLiquidity(uint256) (#942-944) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#943)
SafuInvest.setBuybackUpperLimit(uint256) (#946-948) should emit an event for:
- buyBackUpperLimit = buyBackLimit (#947)
Emit an event for critical parameter changes.
Additional information: link
SafuInvest.constructor(string,string,uint8,uint256,uint256,uint256,uint256,address)._ma (#489) lacks a zero-check on :
- marketingAddress = address(_ma) (#499)
SafuInvest.setMarketingAddress(address)._marketingAddress (#950) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#951)
Check that the address is not zero.
Additional information: link
Reentrancy in SafuInvest._transfer(address,address,uint256) (#657-695):
External calls:
- swapTokens(contractTokenBalance) (#675)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#726-732)
- buyBackTokens(balance.div(100)) (#683)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
External calls sending eth:
- swapTokens(contractTokenBalance) (#675)
- recipient.transfer(amount) (#979)
- buyBackTokens(balance.div(100)) (#683)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _previousLiquidityFee = _liquidityFee (#894)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _previousTaxFee = _taxFee (#893)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _tFeeTotal = _tFeeTotal.add(tFee) (#829)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _taxFee = _previousTaxFee (#905)
- _taxFee = 0 (#898)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- buybackFee = previousBuybackFee (#907)
- buybackFee = 0 (#900)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- previousBuybackFee = buybackFee (#895)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- previousMarketingFee = marketingFee (#896)
Reentrancy in SafuInvest.constructor(string,string,uint8,uint256,uint256,uint256,uint256,address) (#489-530):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#520-521)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#526)
- _isExcludedFromFee[address(this)] = true (#527)
- uniswapV2Router = _uniswapV2Router (#523)
Reentrancy in SafuInvest.transferFrom(address,address,uint256) (#567-571):
External calls:
- _transfer(sender,recipient,amount) (#568)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#726-732)
External calls sending eth:
- _transfer(sender,recipient,amount) (#568)
- recipient.transfer(amount) (#979)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#569)
- _allowances[owner][spender] = amount (#653)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SafuInvest._transfer(address,address,uint256) (#657-695):
External calls:
- swapTokens(contractTokenBalance) (#675)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#726-732)
- buyBackTokens(balance.div(100)) (#683)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
External calls sending eth:
- swapTokens(contractTokenBalance) (#675)
- recipient.transfer(amount) (#979)
- buyBackTokens(balance.div(100)) (#683)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#751)
- buyBackTokens(balance.div(100)) (#683)
- Transfer(sender,recipient,tTransferAmount) (#793)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- Transfer(sender,recipient,tTransferAmount) (#813)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- Transfer(sender,recipient,tTransferAmount) (#803)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- Transfer(sender,recipient,tTransferAmount) (#824)
- _tokenTransfer(from,to,amount,takeFee) (#694)
Reentrancy in SafuInvest.constructor(string,string,uint8,uint256,uint256,uint256,uint256,address) (#489-530):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#520-521)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#529)
Reentrancy in SafuInvest.swapETHForTokens(uint256) (#737-752):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#751)
Reentrancy in SafuInvest.swapTokensForEth(uint256) (#717-735):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#726-732)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#734)
Reentrancy in SafuInvest.transferFrom(address,address,uint256) (#567-571):
External calls:
- _transfer(sender,recipient,amount) (#568)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#726-732)
External calls sending eth:
- _transfer(sender,recipient,amount) (#568)
- recipient.transfer(amount) (#979)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#654)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#569)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#192-197) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#194)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#87-96) uses assembly
- INLINE ASM (#94)
Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) uses assembly
- INLINE ASM (#133-136)
Do not use evm assembly.
Additional information: link
SafuInvest.includeInReward(address) (#636-647) has costly operations inside a loop:
- _excluded.pop() (#643)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) is never used and should be removed
Address.functionCall(address,bytes) (#107-109) is never used and should be removed
Address.functionCall(address,bytes,string) (#111-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#119-122) is never used and should be removed
Address.isContract(address) (#87-96) is never used and should be removed
Address.sendValue(address,uint256) (#98-104) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#75-77) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#79-82) is never used and should be removed
SafuInvest.addLiquidity(uint256,uint256) (#754-767) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#98-104):
- (success) = recipient.call{value: amount}() (#102)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#124-141):
- (success,returndata) = target.call{value: weiValue}(data) (#127)
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() (#236) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#237) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#253) is not in mixedCase
Function IUniswapV2Router01.WETH() (#274) is not in mixedCase
Parameter SafuInvest.calculateTaxFee(uint256)._amount (#878) is not in mixedCase
Parameter SafuInvest.calculateLiquidityFee(uint256)._amount (#884) is not in mixedCase
Parameter SafuInvest.setBuybackFee(uint256)._buybackFee (#927) is not in mixedCase
Parameter SafuInvest.setMarketingFee(uint256)._marketingFee (#936) is not in mixedCase
Parameter SafuInvest.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#942) is not in mixedCase
Parameter SafuInvest.setMarketingAddress(address)._marketingAddress (#950) is not in mixedCase
Parameter SafuInvest.setSwapAndLiquifyEnabled(bool)._enabled (#954) is not in mixedCase
Parameter SafuInvest.setBuyBackEnabled(bool)._enabled (#959) is not in mixedCase
Parameter SafuInvest.presale(bool)._presale (#964) is not in mixedCase
Variable SafuInvest._taxFee (#437) is not in mixedCase
Variable SafuInvest._maxTxAmount (#451) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in SafuInvest._transfer(address,address,uint256) (#657-695):
External calls:
- swapTokens(contractTokenBalance) (#675)
- recipient.transfer(amount) (#979)
External calls sending eth:
- swapTokens(contractTokenBalance) (#675)
- recipient.transfer(amount) (#979)
- buyBackTokens(balance.div(100)) (#683)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _liquidityFee = _previousLiquidityFee (#906)
- _liquidityFee = 0 (#899)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _previousLiquidityFee = _liquidityFee (#894)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _previousTaxFee = _taxFee (#893)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#873)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#789)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#798)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#790)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#809)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#819)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#800)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#810)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#821)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _rTotal = _rTotal.sub(rFee) (#828)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _tFeeTotal = _tFeeTotal.add(tFee) (#829)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#875)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#808)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#818)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#799)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#820)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- _taxFee = _previousTaxFee (#905)
- _taxFee = 0 (#898)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- buybackFee = previousBuybackFee (#907)
- buybackFee = 0 (#900)
- buyBackTokens(balance.div(100)) (#683)
- inSwapAndLiquify = true (#484)
- inSwapAndLiquify = false (#486)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- marketingFee = previousMarketingFee (#908)
- marketingFee = 0 (#901)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- previousBuybackFee = buybackFee (#895)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- previousMarketingFee = marketingFee (#896)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#751)
- buyBackTokens(balance.div(100)) (#683)
- Transfer(sender,recipient,tTransferAmount) (#793)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- Transfer(sender,recipient,tTransferAmount) (#813)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- Transfer(sender,recipient,tTransferAmount) (#803)
- _tokenTransfer(from,to,amount,takeFee) (#694)
- Transfer(sender,recipient,tTransferAmount) (#824)
- _tokenTransfer(from,to,amount,takeFee) (#694)
Reentrancy in SafuInvest.transferFrom(address,address,uint256) (#567-571):
External calls:
- _transfer(sender,recipient,amount) (#568)
- recipient.transfer(amount) (#979)
External calls sending eth:
- _transfer(sender,recipient,amount) (#568)
- recipient.transfer(amount) (#979)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#744-749)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#569)
- _allowances[owner][spender] = amount (#653)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#654)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#569)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#279) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#280)
Variable SafuInvest._transferStandard(address,address,uint256).rTransferAmount (#788) is too similar to SafuInvest._transferBothExcluded(address,address,uint256).tTransferAmount (#817)
Variable SafuInvest._transferBothExcluded(address,address,uint256).rTransferAmount (#817) is too similar to SafuInvest._transferFromExcluded(address,address,uint256).tTransferAmount (#807)
Variable SafuInvest._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#849) is too similar to SafuInvest._transferBothExcluded(address,address,uint256).tTransferAmount (#817)
Variable SafuInvest._transferToExcluded(address,address,uint256).rTransferAmount (#797) is too similar to SafuInvest._transferBothExcluded(address,address,uint256).tTransferAmount (#817)
Variable SafuInvest.reflectionFromToken(uint256,bool).rTransferAmount (#615) is too similar to SafuInvest._transferFromExcluded(address,address,uint256).tTransferAmount (#807)
Variable SafuInvest._getValues(uint256).rTransferAmount (#834) is too similar to SafuInvest._transferBothExcluded(address,address,uint256).tTransferAmount (#817)
Variable SafuInvest._transferFromExcluded(address,address,uint256).rTransferAmount (#807) is too similar to SafuInvest._transferFromExcluded(address,address,uint256).tTransferAmount (#807)
Variable SafuInvest._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#849) is too similar to SafuInvest._transferFromExcluded(address,address,uint256).tTransferAmount (#807)
Variable SafuInvest._transferBothExcluded(address,address,uint256).rTransferAmount (#817) is too similar to SafuInvest._getValues(uint256).tTransferAmount (#833)
Variable SafuInvest._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#849) is too similar to SafuInvest._transferToExcluded(address,address,uint256).tTransferAmount (#797)
Variable SafuInvest._transferToExcluded(address,address,uint256).rTransferAmount (#797) is too similar to SafuInvest._transferFromExcluded(address,address,uint256).tTransferAmount (#807)
Variable SafuInvest._transferStandard(address,address,uint256).rTransferAmount (#788) is too similar to SafuInvest._transferFromExcluded(address,address,uint256).tTransferAmount (#807)
Variable SafuInvest._transferToExcluded(address,address,uint256).rTransferAmount (#797) is too similar to SafuInvest._transferToExcluded(address,address,uint256).tTransferAmount (#797)
Variable SafuInvest.reflectionFromToken(uint256,bool).rTransferAmount (#615) is too similar to SafuInvest._getValues(uint256).tTransferAmount (#833)
Variable SafuInvest._getValues(uint256).rTransferAmount (#834) is too similar to SafuInvest._transferFromExcluded(address,address,uint256).tTransferAmount (#807)
Variable SafuInvest.reflectionFromToken(uint256,bool).rTransferAmount (#615) is too similar to SafuInvest._getTValues(uint256).tTransferAmount (#841)
Variable SafuInvest._transferFromExcluded(address,address,uint256).rTransferAmount (#807) is too similar to SafuInvest._getValues(uint256).tTransferAmount (#833)
Variable SafuInvest._transferStandard(address,address,uint256).rTransferAmount (#788) is too similar to SafuInvest._getValues(uint256).tTransferAmount (#833)
Variable SafuInvest._transferBothExcluded(address,address,uint256).rTransferAmount (#817) is too similar to SafuInvest._transferBothExcluded(address,address,uint256).tTransferAmount (#817)
Variable SafuInvest._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#849) is too similar to SafuInvest._getValues(uint256).tTransferAmount (#833)
Variable SafuInvest._transferToExcluded(address,address,uint256).rTransferAmount (#797) is too similar to SafuInvest._getValues(uint256).tTransferAmount (#833)
Variable SafuInvest._transferStandard(address,address,uint256).rTransferAmount (#788) is too similar to SafuInvest._getTValues(uint256).tTransferAmount (#841)
Variable SafuInvest._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#849) is too similar to SafuInvest._getTValues(uint256).tTransferAmount (#841)
Variable SafuInvest.reflectionFromToken(uint256,bool).rTransferAmount (#615) is too similar to SafuInvest._transferBothExcluded(address,address,uint256).tTransferAmount (#817)
Variable SafuInvest._transferToExcluded(address,address,uint256).rTransferAmount (#797) is too similar to SafuInvest._getTValues(uint256).tTransferAmount (#841)
Variable SafuInvest._getValues(uint256).rTransferAmount (#834) is too similar to SafuInvest._getValues(uint256).tTransferAmount (#833)
Variable SafuInvest._getValues(uint256).rTransferAmount (#834) is too similar to SafuInvest._getTValues(uint256).tTransferAmount (#841)
Variable SafuInvest._transferFromExcluded(address,address,uint256).rTransferAmount (#807) is too similar to SafuInvest._transferBothExcluded(address,address,uint256).tTransferAmount (#817)
Variable SafuInvest._transferFromExcluded(address,address,uint256).rTransferAmount (#807) is too similar to SafuInvest._getTValues(uint256).tTransferAmount (#841)
Variable SafuInvest._transferStandard(address,address,uint256).rTransferAmount (#788) is too similar to SafuInvest._transferToExcluded(address,address,uint256).tTransferAmount (#797)
Variable SafuInvest.reflectionFromToken(uint256,bool).rTransferAmount (#615) is too similar to SafuInvest._transferToExcluded(address,address,uint256).tTransferAmount (#797)
Variable SafuInvest._transferBothExcluded(address,address,uint256).rTransferAmount (#817) is too similar to SafuInvest._transferToExcluded(address,address,uint256).tTransferAmount (#797)
Variable SafuInvest._transferBothExcluded(address,address,uint256).rTransferAmount (#817) is too similar to SafuInvest._transferStandard(address,address,uint256).tTransferAmount (#788)
Variable SafuInvest._transferStandard(address,address,uint256).rTransferAmount (#788) is too similar to SafuInvest._transferStandard(address,address,uint256).tTransferAmount (#788)
Variable SafuInvest.reflectionFromToken(uint256,bool).rTransferAmount (#615) is too similar to SafuInvest._transferStandard(address,address,uint256).tTransferAmount (#788)
Variable SafuInvest._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#849) is too similar to SafuInvest._transferStandard(address,address,uint256).tTransferAmount (#788)
Variable SafuInvest._getValues(uint256).rTransferAmount (#834) is too similar to SafuInvest._transferToExcluded(address,address,uint256).tTransferAmount (#797)
Variable SafuInvest._getValues(uint256).rTransferAmount (#834) is too similar to SafuInvest._transferStandard(address,address,uint256).tTransferAmount (#788)
Variable SafuInvest._transferFromExcluded(address,address,uint256).rTransferAmount (#807) is too similar to SafuInvest._transferToExcluded(address,address,uint256).tTransferAmount (#797)
Variable SafuInvest._transferFromExcluded(address,address,uint256).rTransferAmount (#807) is too similar to SafuInvest._transferStandard(address,address,uint256).tTransferAmount (#788)
Variable SafuInvest._transferToExcluded(address,address,uint256).rTransferAmount (#797) is too similar to SafuInvest._transferStandard(address,address,uint256).tTransferAmount (#788)
Variable SafuInvest._transferBothExcluded(address,address,uint256).rTransferAmount (#817) is too similar to SafuInvest._getTValues(uint256).tTransferAmount (#841)
Prevent variables from having similar names.
Additional information: link
SafuInvest.slitherConstructorVariables() (#411-985) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#417)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#166-169)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#171-175)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#177-179)
getTime() should be declared external:
- Ownable.getTime() (#181-183)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#185-190)
unlock() should be declared external:
- Ownable.unlock() (#192-197)
name() should be declared external:
- SafuInvest.name() (#532-534)
symbol() should be declared external:
- SafuInvest.symbol() (#536-538)
decimals() should be declared external:
- SafuInvest.decimals() (#540-542)
transfer(address,uint256) should be declared external:
- SafuInvest.transfer(address,uint256) (#553-556)
allowance(address,address) should be declared external:
- SafuInvest.allowance(address,address) (#558-560)
approve(address,uint256) should be declared external:
- SafuInvest.approve(address,uint256) (#562-565)
transferFrom(address,address,uint256) should be declared external:
- SafuInvest.transferFrom(address,address,uint256) (#567-571)
increaseAllowance(address,uint256) should be declared external:
- SafuInvest.increaseAllowance(address,uint256) (#573-576)
decreaseAllowance(address,uint256) should be declared external:
- SafuInvest.decreaseAllowance(address,uint256) (#578-581)
isExcludedFromReward(address) should be declared external:
- SafuInvest.isExcludedFromReward(address) (#583-585)
totalFees() should be declared external:
- SafuInvest.totalFees() (#587-589)
minimumTokensBeforeSwapAmount() should be declared external:
- SafuInvest.minimumTokensBeforeSwapAmount() (#591-593)
buyBackUpperLimitAmount() should be declared external:
- SafuInvest.buyBackUpperLimitAmount() (#595-597)
deliver(uint256) should be declared external:
- SafuInvest.deliver(uint256) (#599-606)
reflectionFromToken(uint256,bool) should be declared external:
- SafuInvest.reflectionFromToken(uint256,bool) (#609-618)
excludeFromReward(address) should be declared external:
- SafuInvest.excludeFromReward(address) (#626-634)
isExcludedFromFee(address) should be declared external:
- SafuInvest.isExcludedFromFee(address) (#911-913)
excludeFromFee(address) should be declared external:
- SafuInvest.excludeFromFee(address) (#915-917)
includeInFee(address) should be declared external:
- SafuInvest.includeInFee(address) (#919-921)
setBuyBackEnabled(bool) should be declared external:
- SafuInvest.setBuyBackEnabled(bool) (#959-962)
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 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
Alexa traffic rank is very low
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
Telegram account has relatively few subscribers
Twitter account has relatively few followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Twitter account has few posts