Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
SAGA.swapAndLiquify(uint256) (#1021-1038) sends eth to arbitrary user
Dangerous calls:
- _developmentWallet.transfer(threePercentBnb) (#1034)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1036)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1037)
SAGA.addLiquidity(uint256,uint256) (#1088-1101) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1093-1100)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SAGA._transfer(address,address,uint256) (#975-1019):
External calls:
- swapAndLiquify(contractTokenBalance) (#1006)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1079-1085)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1006)
- _developmentWallet.transfer(threePercentBnb) (#1034)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1036)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1037)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#937)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1135)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1126)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1127)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1146)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#853)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1147)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1137)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#855)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _rTotal = _rTotal.sub(rFee) (#892)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#939)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#852)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1145)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1136)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#854)
Apply the check-effects-interactions pattern.
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.
Redundant expression "this (#237)" inContext (#231-240)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#482) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#483) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#500) is not in mixedCase
Function IUniswapV2Router01.WETH() (#522) is not in mixedCase
Parameter SAGA.setSwapAndLiquifyEnabled(bool)._enabled (#883) is not in mixedCase
Variable SAGA._taxFee (#682) is not in mixedCase
Variable SAGA._developmentWallet (#685) is not in mixedCase
Variable SAGA._buybackWallet (#686) is not in mixedCase
Variable SAGA._marketingWallet (#687) is not in mixedCase
Variable SAGA._liquidityFee (#691) is not in mixedCase
Variable SAGA._maxTxAmount (#700) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) is never used and should be removed
Address.functionCall(address,bytes) (#317-319) is never used and should be removed
Address.functionCall(address,bytes,string) (#327-329) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#342-344) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#352-355) is never used and should be removed
Address.isContract(address) (#264-273) is never used and should be removed
Address.sendValue(address,uint256) (#291-297) is never used and should be removed
Context._msgData() (#236-239) is never used and should be removed
SAGA.addLiquidity(uint256,uint256) (#1088-1101) is never used and should be removed
SafeMath.mod(uint256,uint256) (#209-211) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#225-228) is never used and should be removed
Remove unused functions.
Additional information: link
SAGA._rTotal (#675) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SAGA._previousTaxFee (#683) is set pre-construction with a non-constant function or state variable:
- _taxFee
SAGA._previousLiquidityFee (#692) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
SAGA._maxTxAmount (#700) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(100).div(10 ** 2)
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
SAGA.swapAndLiquify(uint256) (#1021-1038) performs a multiplication on the result of a division:
-threePercentBnb = eightPercentBnb.div(8).mul(3) (#1033)
Consider ordering multiplication before division.
Additional information: link
SAGA.addLiquidity(uint256,uint256) (#1088-1101) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1093-1100)
Ensure that all the return values of the function calls are used.
Additional information: link
SAGA.allowance(address,address).owner (#768) shadows:
- Ownable.owner() (#411-413) (function)
SAGA._approve(address,address,uint256).owner (#967) shadows:
- Ownable.owner() (#411-413) (function)
Rename the local variables that shadow another component.
Additional information: link
SAGA.setTaxFeePercent(uint256) (#869-871) should emit an event for:
- _taxFee = taxFee (#870)
SAGA.setLiquidityFeePercent(uint256) (#873-875) should emit an event for:
- _liquidityFee = liquidityFee (#874)
SAGA.setMaxTxPercent(uint256) (#877-881) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#878-880)
Emit an event for critical parameter changes.
Additional information: link
SAGA.withdrawResidualBNB(address).newAddress (#1040) lacks a zero-check on :
- address(newAddress).transfer(address(this).balance) (#1041)
SAGA.setMarketingWallet(address).newAddress (#1046) lacks a zero-check on :
- _marketingWallet = address(newAddress) (#1047)
SAGA.setDevelopmentWallet(address).newAddress (#1050) lacks a zero-check on :
- _developmentWallet = address(newAddress) (#1051)
SAGA.setBuybackWallet(address).newAddress (#1054) lacks a zero-check on :
- _buybackWallet = address(newAddress) (#1055)
Check that the address is not zero.
Additional information: link
SAGA.swapTokensForEth(uint256) (#1070-1086) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#1074)
SAGA.swapTokensForEth(uint256) (#1070-1086) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1079-1085)
SAGA.swapAndLiquify(uint256) (#1021-1038) has external calls inside a loop: _developmentWallet.transfer(threePercentBnb) (#1034)
SAGA.swapAndLiquify(uint256) (#1021-1038) has external calls inside a loop: _buybackWallet.transfer(twoPointFivePercentBnb) (#1036)
SAGA.swapAndLiquify(uint256) (#1021-1038) has external calls inside a loop: _marketingWallet.transfer(twoPointFivePercentBnb) (#1037)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in SAGA._transfer(address,address,uint256) (#975-1019):
External calls:
- swapAndLiquify(contractTokenBalance) (#1006)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1079-1085)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1006)
- _developmentWallet.transfer(threePercentBnb) (#1034)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1036)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1037)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _liquidityFee = _previousLiquidityFee (#960)
- _liquidityFee = 0 (#955)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _previousLiquidityFee = _liquidityFee (#952)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _previousTaxFee = _taxFee (#951)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _tFeeTotal = _tFeeTotal.add(tFee) (#893)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _taxFee = _previousTaxFee (#959)
- _taxFee = 0 (#954)
Reentrancy in SAGA.constructor() (#717-734):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#722-723)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#729)
- _isExcludedFromFee[_router] = true (#730)
- _isExcludedFromFee[address(this)] = true (#731)
- uniswapV2Router = _uniswapV2Router (#726)
Reentrancy in SAGA.setRouterAddress(address) (#736-740):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#738)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#739)
Reentrancy in SAGA.transferFrom(address,address,uint256) (#777-781):
External calls:
- _transfer(sender,recipient,amount) (#778)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1079-1085)
External calls sending eth:
- _transfer(sender,recipient,amount) (#778)
- _developmentWallet.transfer(threePercentBnb) (#1034)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1036)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1037)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#779)
- _allowances[owner][spender] = amount (#971)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SAGA._transfer(address,address,uint256) (#975-1019):
External calls:
- swapAndLiquify(contractTokenBalance) (#1006)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1079-1085)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1006)
- _developmentWallet.transfer(threePercentBnb) (#1034)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1036)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1037)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1130)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- Transfer(sender,recipient,tTransferAmount) (#1140)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- Transfer(sender,recipient,tTransferAmount) (#1150)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- Transfer(sender,recipient,tTransferAmount) (#858)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
Reentrancy in SAGA.constructor() (#717-734):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#722-723)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#733)
Reentrancy in SAGA.transferFrom(address,address,uint256) (#777-781):
External calls:
- _transfer(sender,recipient,amount) (#778)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1079-1085)
External calls sending eth:
- _transfer(sender,recipient,amount) (#778)
- _developmentWallet.transfer(threePercentBnb) (#1034)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1036)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1037)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#972)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#779)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#264-273) uses assembly
- INLINE ASM (#271)
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) uses assembly
- INLINE ASM (#370-373)
Do not use evm assembly.
Additional information: link
SAGA.includeInReward(address) (#837-848) has costly operations inside a loop:
- _excluded.pop() (#844)
SAGA.lockTheSwap() (#711-715) has costly operations inside a loop:
- inSwapAndLiquify = true (#712)
SAGA.lockTheSwap() (#711-715) has costly operations inside a loop:
- inSwapAndLiquify = false (#714)
SAGA.removeAllFee() (#948-956) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#951)
SAGA.removeAllFee() (#948-956) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#952)
SAGA.removeAllFee() (#948-956) has costly operations inside a loop:
- _taxFee = 0 (#954)
SAGA.removeAllFee() (#948-956) has costly operations inside a loop:
- _liquidityFee = 0 (#955)
SAGA._reflectFee(uint256,uint256) (#891-894) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#892)
SAGA._reflectFee(uint256,uint256) (#891-894) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#893)
SAGA.restoreAllFee() (#958-961) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#959)
SAGA.restoreAllFee() (#958-961) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#960)
Use a local variable to hold the loop computation result.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#291-297):
- (success) = recipient.call{value: amount}() (#295)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#357-378):
- (success,returndata) = target.call{value: weiValue}(data) (#361)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Reentrancy in SAGA._transfer(address,address,uint256) (#975-1019):
External calls:
- swapAndLiquify(contractTokenBalance) (#1006)
- _developmentWallet.transfer(threePercentBnb) (#1034)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1036)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1037)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _liquidityFee = _previousLiquidityFee (#960)
- _liquidityFee = 0 (#955)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _previousLiquidityFee = _liquidityFee (#952)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _previousTaxFee = _taxFee (#951)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#937)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1135)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1126)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1127)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1146)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#853)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1147)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1137)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#855)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _rTotal = _rTotal.sub(rFee) (#892)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _tFeeTotal = _tFeeTotal.add(tFee) (#893)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#939)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#852)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1145)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1136)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#854)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- _taxFee = _previousTaxFee (#959)
- _taxFee = 0 (#954)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1130)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- Transfer(sender,recipient,tTransferAmount) (#1150)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- Transfer(sender,recipient,tTransferAmount) (#1140)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
- Transfer(sender,recipient,tTransferAmount) (#858)
- _tokenTransfer(from,to,amount,takeFee) (#1018)
Reentrancy in SAGA.transferFrom(address,address,uint256) (#777-781):
External calls:
- _transfer(sender,recipient,amount) (#778)
- _developmentWallet.transfer(threePercentBnb) (#1034)
- _buybackWallet.transfer(twoPointFivePercentBnb) (#1036)
- _marketingWallet.transfer(twoPointFivePercentBnb) (#1037)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#779)
- _allowances[owner][spender] = amount (#971)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#972)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#779)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#527) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#528)
Variable SAGA._transferStandard(address,address,uint256).rTransferAmount (#1125) is too similar to SAGA._transferStandard(address,address,uint256).tTransferAmount (#1125)
Variable SAGA._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#913) is too similar to SAGA._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable SAGA._transferToExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to SAGA._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable SAGA._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#913) is too similar to SAGA._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable SAGA._transferToExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to SAGA._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable SAGA._transferFromExcluded(address,address,uint256).rTransferAmount (#1144) is too similar to SAGA._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable SAGA._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#913) is too similar to SAGA._getTValues(uint256).tTransferAmount (#905)
Variable SAGA._transferFromExcluded(address,address,uint256).rTransferAmount (#1144) is too similar to SAGA._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable SAGA._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#913) is too similar to SAGA._transferStandard(address,address,uint256).tTransferAmount (#1125)
Variable SAGA._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to SAGA._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable SAGA._transferToExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to SAGA._transferStandard(address,address,uint256).tTransferAmount (#1125)
Variable SAGA._getValues(uint256).rTransferAmount (#898) is too similar to SAGA._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable SAGA._transferStandard(address,address,uint256).rTransferAmount (#1125) is too similar to SAGA._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable SAGA._transferFromExcluded(address,address,uint256).rTransferAmount (#1144) is too similar to SAGA._transferStandard(address,address,uint256).tTransferAmount (#1125)
Variable SAGA._getValues(uint256).rTransferAmount (#898) is too similar to SAGA._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable SAGA.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to SAGA._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable SAGA._getValues(uint256).rTransferAmount (#898) is too similar to SAGA._getTValues(uint256).tTransferAmount (#905)
Variable SAGA._getValues(uint256).rTransferAmount (#898) is too similar to SAGA._transferStandard(address,address,uint256).tTransferAmount (#1125)
Variable SAGA.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to SAGA._transferFromExcluded(address,address,uint256).tTransferAmount (#1144)
Variable SAGA._transferFromExcluded(address,address,uint256).rTransferAmount (#1144) is too similar to SAGA._getValues(uint256).tTransferAmount (#897)
Variable SAGA._transferStandard(address,address,uint256).rTransferAmount (#1125) is too similar to SAGA._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable SAGA._transferStandard(address,address,uint256).rTransferAmount (#1125) is too similar to SAGA._getValues(uint256).tTransferAmount (#897)
Variable SAGA._transferFromExcluded(address,address,uint256).rTransferAmount (#1144) is too similar to SAGA._getTValues(uint256).tTransferAmount (#905)
Variable SAGA._getValues(uint256).rTransferAmount (#898) is too similar to SAGA._getValues(uint256).tTransferAmount (#897)
Variable SAGA._transferToExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to SAGA._getValues(uint256).tTransferAmount (#897)
Variable SAGA._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to SAGA._transferFromExcluded(address,address,uint256).tTransferAmount (#1144)
Variable SAGA._transferToExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to SAGA._getTValues(uint256).tTransferAmount (#905)
Variable SAGA._transferStandard(address,address,uint256).rTransferAmount (#1125) is too similar to SAGA._getTValues(uint256).tTransferAmount (#905)
Variable SAGA._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#913) is too similar to SAGA._getValues(uint256).tTransferAmount (#897)
Variable SAGA._transferFromExcluded(address,address,uint256).rTransferAmount (#1144) is too similar to SAGA._transferFromExcluded(address,address,uint256).tTransferAmount (#1144)
Variable SAGA.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to SAGA._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable SAGA.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to SAGA._getValues(uint256).tTransferAmount (#897)
Variable SAGA._transferToExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to SAGA._transferFromExcluded(address,address,uint256).tTransferAmount (#1144)
Variable SAGA._transferStandard(address,address,uint256).rTransferAmount (#1125) is too similar to SAGA._transferFromExcluded(address,address,uint256).tTransferAmount (#1144)
Variable SAGA._getValues(uint256).rTransferAmount (#898) is too similar to SAGA._transferFromExcluded(address,address,uint256).tTransferAmount (#1144)
Variable SAGA.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to SAGA._getTValues(uint256).tTransferAmount (#905)
Variable SAGA.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to SAGA._transferStandard(address,address,uint256).tTransferAmount (#1125)
Variable SAGA._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to SAGA._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable SAGA._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to SAGA._getValues(uint256).tTransferAmount (#897)
Variable SAGA._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#913) is too similar to SAGA._transferFromExcluded(address,address,uint256).tTransferAmount (#1144)
Variable SAGA._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to SAGA._getTValues(uint256).tTransferAmount (#905)
Variable SAGA._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to SAGA._transferStandard(address,address,uint256).tTransferAmount (#1125)
Prevent variables from having similar names.
Additional information: link
SAGA.slitherConstructorVariables() (#660-1153) uses literals with too many digits:
- _developmentWallet = 0x000000000000000000000000000000000000dEaD (#685)
SAGA.slitherConstructorVariables() (#660-1153) uses literals with too many digits:
- _buybackWallet = 0x000000000000000000000000000000000000dEaD (#686)
SAGA.slitherConstructorVariables() (#660-1153) uses literals with too many digits:
- _marketingWallet = 0x000000000000000000000000000000000000dEaD (#687)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#395) is never used in SAGA (#660-1153)
Remove unused state variables.
Additional information: link
Ownable._previousOwner (#395) should be constant
SAGA._decimals (#680) should be constant
SAGA._name (#678) should be constant
SAGA._router (#689) should be constant
SAGA._symbol (#679) should be constant
SAGA._tTotal (#674) should be constant
SAGA.numTokensSellToAddToLiquidity (#701) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#430-433)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#439-443)
setRouterAddress(address) should be declared external:
- SAGA.setRouterAddress(address) (#736-740)
name() should be declared external:
- SAGA.name() (#742-744)
symbol() should be declared external:
- SAGA.symbol() (#746-748)
decimals() should be declared external:
- SAGA.decimals() (#750-752)
totalSupply() should be declared external:
- SAGA.totalSupply() (#754-756)
allowance(address,address) should be declared external:
- SAGA.allowance(address,address) (#768-770)
approve(address,uint256) should be declared external:
- SAGA.approve(address,uint256) (#772-775)
transferFrom(address,address,uint256) should be declared external:
- SAGA.transferFrom(address,address,uint256) (#777-781)
increaseAllowance(address,uint256) should be declared external:
- SAGA.increaseAllowance(address,uint256) (#783-786)
decreaseAllowance(address,uint256) should be declared external:
- SAGA.decreaseAllowance(address,uint256) (#788-791)
isExcludedFromReward(address) should be declared external:
- SAGA.isExcludedFromReward(address) (#793-795)
totalFees() should be declared external:
- SAGA.totalFees() (#797-799)
deliver(uint256) should be declared external:
- SAGA.deliver(uint256) (#801-808)
reflectionFromToken(uint256,bool) should be declared external:
- SAGA.reflectionFromToken(uint256,bool) (#810-819)
excludeFromReward(address) should be declared external:
- SAGA.excludeFromReward(address) (#827-835)
excludeFromFee(address) should be declared external:
- SAGA.excludeFromFee(address) (#861-863)
includeInFee(address) should be declared external:
- SAGA.includeInFee(address) (#865-867)
isExcludedFromFee(address) should be declared external:
- SAGA.isExcludedFromFee(address) (#963-965)
setMarketingWallet(address) should be declared external:
- SAGA.setMarketingWallet(address) (#1046-1048)
setDevelopmentWallet(address) should be declared external:
- SAGA.setDevelopmentWallet(address) (#1050-1052)
setBuybackWallet(address) should be declared external:
- SAGA.setBuybackWallet(address) (#1054-1056)
Use the external attribute for functions never called from the contract.
Additional information: link
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to find website, listings and other project-related information
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts