AUTO SHILL Token Logo

SHILL [AUTO SHILL] Token

About SHILL

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 9 January 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in SHILL._transfer(address,address,uint256) (#733-855):
External calls:
- swapAndLiquify(contractTokenBalance) (#839)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#921-927)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#839)
- wallet.transfer(amount) (#858)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _FeeAutoShill = _previousFeeAutoShill (#714)
- _FeeAutoShill = 0 (#703)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _FeeLiquidity = _previousFeeLiquidity (#713)
- _FeeLiquidity = 0 (#702)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _promoFee = _FeeAutoShill + _FeeDev (#718)
- _promoFee = 0 (#705)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _rOwned[address(this)] = _rOwned[address(this)].add(_rLiquidity) (#675)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1015)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1046)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1016)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1108)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1078)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1079)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1048)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1110)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _rTotal = _rTotal.sub(_rReflect) (#682)
- _rTotal = _rTotal.sub(rAmount) (#1084)
- _rTotal = _rTotal.sub(rAmount) (#1025)
- _rTotal = _rTotal.sub(rAmount) (#1116)
- _rTotal = _rTotal.sub(rAmount) (#1056)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _tOwned[address(this)] = _tOwned[address(this)].add(_tLiquidity) (#677)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1107)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1077)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1047)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1109)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _tTotal = _tTotal.sub(tAmount) (#1083)
- _tTotal = _tTotal.sub(tAmount) (#1024)
- _tTotal = _tTotal.sub(tAmount) (#1115)
- _tTotal = _tTotal.sub(tAmount) (#1055)
- swapBlock = block.number (#840)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- txCount ++ (#982)
Apply the check-effects-interactions pattern.

Additional information: link

SHILL._excluded (#419) is never initialized. It is used in:
- SHILL._getCurrentSupply() (#659-669)
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

SHILL._transferStandard(address,address,uint256) (#1002-1031) performs a multiplication on the result of a division:
-tReflect = tAmount * _FeeReflection / 100 (#1005)
-rReflect = tReflect.mul(_getRate()) (#1009)
SHILL._transferStandard(address,address,uint256) (#1002-1031) performs a multiplication on the result of a division:
-tLiquidity = tAmount * _liquidityAndPromoFee / 100 (#1006)
-rLiquidity = tLiquidity.mul(_getRate()) (#1010)
SHILL._transferToExcluded(address,address,uint256) (#1033-1061) performs a multiplication on the result of a division:
-tReflect = tAmount * _FeeReflection / 100 (#1036)
-rReflect = tReflect.mul(_getRate()) (#1040)
SHILL._transferToExcluded(address,address,uint256) (#1033-1061) performs a multiplication on the result of a division:
-tLiquidity = tAmount * _liquidityAndPromoFee / 100 (#1037)
-rLiquidity = tLiquidity.mul(_getRate()) (#1041)
SHILL._transferFromExcluded(address,address,uint256) (#1063-1093) performs a multiplication on the result of a division:
-tReflect = tAmount * _FeeReflection / 100 (#1066)
-rReflect = tReflect.mul(_getRate()) (#1070)
SHILL._transferFromExcluded(address,address,uint256) (#1063-1093) performs a multiplication on the result of a division:
-tLiquidity = tAmount * _liquidityAndPromoFee / 100 (#1067)
-rLiquidity = tLiquidity.mul(_getRate()) (#1071)
SHILL._transferBothExcluded(address,address,uint256) (#1094-1125) performs a multiplication on the result of a division:
-tReflect = tAmount * _FeeReflection / 100 (#1097)
-rReflect = tReflect.mul(_getRate()) (#1101)
SHILL._transferBothExcluded(address,address,uint256) (#1094-1125) performs a multiplication on the result of a division:
-tLiquidity = tAmount * _liquidityAndPromoFee / 100 (#1098)
-rLiquidity = tLiquidity.mul(_getRate()) (#1102)
Consider ordering multiplication before division.

Additional information: link

SHILL.addLiquidity(uint256,uint256) (#937-948) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
Ensure that all the return values of the function calls are used.

Additional information: link

SHILL.allowance(address,address).owner (#572) shadows:
- Ownable.owner() (#188-190) (function)
SHILL._approve(address,address,uint256).owner (#723) shadows:
- Ownable.owner() (#188-190) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in SHILL._transfer(address,address,uint256) (#733-855):
External calls:
- swapAndLiquify(contractTokenBalance) (#839)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#921-927)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#839)
- wallet.transfer(amount) (#858)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _FeeDev = _previousFeeDev (#715)
- _FeeDev = 0 (#704)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _FeeReflection = _previousFeeReflection (#712)
- _FeeReflection = 0 (#700)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _FeesTotal = _FeeAutoShill + _FeeDev + _FeeLiquidity + _FeeReflection (#717)
- _FeesTotal = 0 (#706)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _liquidityAndPromoFee = _FeeAutoShill + _FeeDev + _FeeLiquidity (#719)
- _liquidityAndPromoFee = 0 (#701)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _previousFeeAutoShill = _FeeAutoShill (#697)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _previousFeeDev = _FeeDev (#698)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _previousFeeLiquidity = _FeeLiquidity (#696)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _previousFeeReflection = _FeeReflection (#695)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _tFeeTotal = _tFeeTotal.add(_tReflect) (#683)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- rAmount = tAmount.mul(_getRate()) (#1069)
- rAmount = tAmount.mul(_getRate()) (#1008)
- rAmount = tAmount.mul(_getRate()) (#1100)
- rAmount = tAmount.mul(_getRate()) (#1039)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- rLiquidity = tLiquidity.mul(_getRate()) (#1041)
- rLiquidity = tLiquidity.mul(_getRate()) (#1071)
- rLiquidity = tLiquidity.mul(_getRate()) (#1010)
- rLiquidity = tLiquidity.mul(_getRate()) (#1102)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- rReflect = tReflect.mul(_getRate()) (#1070)
- rReflect = tReflect.mul(_getRate()) (#1009)
- rReflect = tReflect.mul(_getRate()) (#1101)
- rReflect = tReflect.mul(_getRate()) (#1040)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- rTransferAmount = rAmount - (rReflect + rLiquidity) (#1105)
- rTransferAmount = rAmount - (rReflect + rLiquidity) (#1044)
- rTransferAmount = rAmount - (rReflect + rLiquidity) (#1074)
- rTransferAmount = rAmount - (rReflect + rLiquidity) (#1013)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- tLiquidity = tAmount * _liquidityAndPromoFee / 100 (#1067)
- tLiquidity = tAmount * _liquidityAndPromoFee / 100 (#1006)
- tLiquidity = tAmount * _liquidityAndPromoFee / 100 (#1098)
- tLiquidity = tAmount * _liquidityAndPromoFee / 100 (#1037)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- tReflect = tAmount * _FeeReflection / 100 (#1097)
- tReflect = tAmount * _FeeReflection / 100 (#1036)
- tReflect = tAmount * _FeeReflection / 100 (#1005)
- tReflect = tAmount * _FeeReflection / 100 (#1066)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- tTransferAmount = tAmount - (tReflect + tLiquidity) (#1043)
- tTransferAmount = tAmount - (tReflect + tLiquidity) (#1073)
- tTransferAmount = tAmount - (tReflect + tLiquidity) (#1012)
- tTransferAmount = tAmount - (tReflect + tLiquidity) (#1104)
Reentrancy in SHILL.constructor() (#502-544):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#510-511)
State variables written after the call(s):
- _isExcluded[Wallet_Burn] = true (#539)
- _isExcludedFromFee[owner()] = true (#522)
- _isExcludedFromFee[address(this)] = true (#523)
- _isExcludedFromFee[Wallet_AutoShill] = true (#524)
- _isExcludedFromFee[Wallet_Burn] = true (#525)
- _limitExempt[owner()] = true (#529)
- _limitExempt[Wallet_Burn] = true (#530)
- _limitExempt[Wallet_AutoShill] = true (#531)
- _preLaunchAccess[owner()] = true (#535)
- uniswapV2Router = _uniswapV2Router (#512)
Reentrancy in SHILL.swapAndLiquify(uint256) (#867-912):
External calls:
- swapTokensForEth(firstHalf + tokensToPromo) (#889)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#921-927)
- addLiquidity(secondHalf,(totalBNB - promoBNB)) (#892)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
External calls sending eth:
- addLiquidity(secondHalf,(totalBNB - promoBNB)) (#892)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
State variables written after the call(s):
- addLiquidity(secondHalf,(totalBNB - promoBNB)) (#892)
- _allowances[owner][spender] = amount (#726)
Reentrancy in SHILL.transferFrom(address,address,uint256) (#581-585):
External calls:
- _transfer(sender,recipient,amount) (#582)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#921-927)
External calls sending eth:
- _transfer(sender,recipient,amount) (#582)
- wallet.transfer(amount) (#858)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#583)
- _allowances[owner][spender] = amount (#726)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SHILL._transfer(address,address,uint256) (#733-855):
External calls:
- swapAndLiquify(contractTokenBalance) (#839)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#921-927)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#839)
- wallet.transfer(amount) (#858)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1030)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- Transfer(sender,recipient,tTransferAmount) (#1060)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- Transfer(sender,recipient,tTransferAmount) (#1092)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- Transfer(sender,recipient,tTransferAmount) (#1124)
- _tokenTransfer(from,to,amount,takeFee) (#854)
Reentrancy in SHILL.constructor() (#502-544):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#510-511)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#543)
Reentrancy in SHILL.swapAndLiquify(uint256) (#867-912):
External calls:
- swapTokensForEth(firstHalf + tokensToPromo) (#889)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#921-927)
- addLiquidity(secondHalf,(totalBNB - promoBNB)) (#892)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
External calls sending eth:
- addLiquidity(secondHalf,(totalBNB - promoBNB)) (#892)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#727)
- addLiquidity(secondHalf,(totalBNB - promoBNB)) (#892)
- SwapAndLiquify(firstHalf,(totalBNB - promoBNB),secondHalf) (#893)
Reentrancy in SHILL.transferFrom(address,address,uint256) (#581-585):
External calls:
- _transfer(sender,recipient,amount) (#582)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#921-927)
External calls sending eth:
- _transfer(sender,recipient,amount) (#582)
- wallet.transfer(amount) (#858)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#727)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#583)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#109-113) uses assembly
- INLINE ASM (#111)
Address._verifyCallResult(bool,bytes,string) (#161-174) uses assembly
- INLINE ASM (#166-169)
Do not use evm assembly.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#161-174) is never used and should be removed
Address.functionCall(address,bytes) (#121-123) is never used and should be removed
Address.functionCall(address,bytes,string) (#125-127) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#129-131) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#133-138) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#151-153) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#155-159) is never used and should be removed
Address.functionStaticCall(address,bytes) (#140-142) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#144-148) is never used and should be removed
Address.isContract(address) (#109-113) is never used and should be removed
Address.sendValue(address,uint256) (#115-119) is never used and should be removed
Context._msgData() (#100-103) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#85-90) is never used and should be removed
Remove unused functions.

Additional information: link

SHILL._rTotal (#428) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SHILL._previousFeeReflection (#446) is set pre-construction with a non-constant function or state variable:
- _FeeReflection
SHILL._previousFeeLiquidity (#447) is set pre-construction with a non-constant function or state variable:
- _FeeLiquidity
SHILL._previousFeeAutoShill (#448) is set pre-construction with a non-constant function or state variable:
- _FeeAutoShill
SHILL._previousFeeDev (#449) is set pre-construction with a non-constant function or state variable:
- _FeeDev
SHILL._promoFee (#452) is set pre-construction with a non-constant function or state variable:
- _FeeAutoShill + _FeeDev
SHILL._FeesTotal (#453) is set pre-construction with a non-constant function or state variable:
- _FeeAutoShill + _FeeDev + _FeeLiquidity + _FeeReflection
SHILL._liquidityAndPromoFee (#456) is set pre-construction with a non-constant function or state variable:
- _FeeAutoShill + _FeeDev + _FeeLiquidity
SHILL._maxWalletToken (#476) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(20).div(10000)
SHILL._previousMaxWalletToken (#477) is set pre-construction with a non-constant function or state variable:
- _maxWalletToken
SHILL._maxTxAmount (#480) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(20).div(10000)
SHILL._previousMaxTxAmount (#481) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version0.8.10 (#44) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#115-119):
- (success) = recipient.call{value: amount}() (#117)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#133-138):
- (success,returndata) = target.call{value: value}(data) (#136)
Low level call in Address.functionStaticCall(address,bytes,string) (#144-148):
- (success,returndata) = target.staticcall(data) (#146)
Low level call in Address.functionDelegateCall(address,bytes,string) (#155-159):
- (success,returndata) = target.delegatecall(data) (#157)
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() (#230) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#231) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#244) is not in mixedCase
Function IUniswapV2Router01.WETH() (#261) is not in mixedCase
Parameter SHILL.tokenFromReflection(uint256)._rAmount (#619) is not in mixedCase
Function SHILL.end_LaunchPhase() (#645-647) is not in mixedCase
Function SHILL.remove_Random_Tokens(address,address,uint256) (#957-964) is not in mixedCase
Parameter SHILL.remove_Random_Tokens(address,address,uint256).random_Token_Address (#957) is not in mixedCase
Parameter SHILL.remove_Random_Tokens(address,address,uint256).send_to_wallet (#957) is not in mixedCase
Parameter SHILL.remove_Random_Tokens(address,address,uint256).number_of_tokens (#957) is not in mixedCase
Variable SHILL._isExcludedFromFee (#405) is not in mixedCase
Variable SHILL._isExcluded (#406) is not in mixedCase
Variable SHILL._isSnipe (#407) is not in mixedCase
Variable SHILL._preLaunchAccess (#408) is not in mixedCase
Variable SHILL._limitExempt (#409) is not in mixedCase
Variable SHILL.TradeOpen (#417) is not in mixedCase
Variable SHILL.Wallet_AutoShill (#420) is not in mixedCase
Variable SHILL.Wallet_Dev (#421) is not in mixedCase
Variable SHILL.Wallet_Burn (#422) is not in mixedCase
Constant SHILL._decimals (#426) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SHILL._FeeReflection (#438) is not in mixedCase
Variable SHILL._FeeLiquidity (#439) is not in mixedCase
Variable SHILL._FeeAutoShill (#440) is not in mixedCase
Variable SHILL._FeeDev (#441) is not in mixedCase
Variable SHILL._FeeMaxPossible (#443) is not in mixedCase
Variable SHILL._FeesTotal (#453) is not in mixedCase
Variable SHILL._maxWalletToken (#476) is not in mixedCase
Variable SHILL._maxTxAmount (#480) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#101)" inContext (#95-104)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in SHILL._transfer(address,address,uint256) (#733-855):
External calls:
- swapAndLiquify(contractTokenBalance) (#839)
- wallet.transfer(amount) (#858)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#839)
- wallet.transfer(amount) (#858)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _FeeAutoShill = _previousFeeAutoShill (#714)
- _FeeAutoShill = 0 (#703)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _FeeDev = _previousFeeDev (#715)
- _FeeDev = 0 (#704)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _FeeLiquidity = _previousFeeLiquidity (#713)
- _FeeLiquidity = 0 (#702)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _FeeReflection = _previousFeeReflection (#712)
- _FeeReflection = 0 (#700)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _FeesTotal = _FeeAutoShill + _FeeDev + _FeeLiquidity + _FeeReflection (#717)
- _FeesTotal = 0 (#706)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _liquidityAndPromoFee = _FeeAutoShill + _FeeDev + _FeeLiquidity (#719)
- _liquidityAndPromoFee = 0 (#701)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _previousFeeAutoShill = _FeeAutoShill (#697)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _previousFeeDev = _FeeDev (#698)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _previousFeeLiquidity = _FeeLiquidity (#696)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _previousFeeReflection = _FeeReflection (#695)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _promoFee = _FeeAutoShill + _FeeDev (#718)
- _promoFee = 0 (#705)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _rOwned[address(this)] = _rOwned[address(this)].add(_rLiquidity) (#675)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1015)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1046)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1016)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1108)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1078)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1079)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1048)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1110)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _rTotal = _rTotal.sub(_rReflect) (#682)
- _rTotal = _rTotal.sub(rAmount) (#1084)
- _rTotal = _rTotal.sub(rAmount) (#1025)
- _rTotal = _rTotal.sub(rAmount) (#1116)
- _rTotal = _rTotal.sub(rAmount) (#1056)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _tFeeTotal = _tFeeTotal.add(_tReflect) (#683)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _tOwned[address(this)] = _tOwned[address(this)].add(_tLiquidity) (#677)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1107)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1077)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1047)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1109)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- _tTotal = _tTotal.sub(tAmount) (#1083)
- _tTotal = _tTotal.sub(tAmount) (#1024)
- _tTotal = _tTotal.sub(tAmount) (#1115)
- _tTotal = _tTotal.sub(tAmount) (#1055)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- rAmount = tAmount.mul(_getRate()) (#1069)
- rAmount = tAmount.mul(_getRate()) (#1008)
- rAmount = tAmount.mul(_getRate()) (#1100)
- rAmount = tAmount.mul(_getRate()) (#1039)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- rLiquidity = tLiquidity.mul(_getRate()) (#1041)
- rLiquidity = tLiquidity.mul(_getRate()) (#1071)
- rLiquidity = tLiquidity.mul(_getRate()) (#1010)
- rLiquidity = tLiquidity.mul(_getRate()) (#1102)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- rReflect = tReflect.mul(_getRate()) (#1070)
- rReflect = tReflect.mul(_getRate()) (#1009)
- rReflect = tReflect.mul(_getRate()) (#1101)
- rReflect = tReflect.mul(_getRate()) (#1040)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- rTransferAmount = rAmount - (rReflect + rLiquidity) (#1105)
- rTransferAmount = rAmount - (rReflect + rLiquidity) (#1044)
- rTransferAmount = rAmount - (rReflect + rLiquidity) (#1074)
- rTransferAmount = rAmount - (rReflect + rLiquidity) (#1013)
- swapBlock = block.number (#840)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- tLiquidity = tAmount * _liquidityAndPromoFee / 100 (#1067)
- tLiquidity = tAmount * _liquidityAndPromoFee / 100 (#1006)
- tLiquidity = tAmount * _liquidityAndPromoFee / 100 (#1098)
- tLiquidity = tAmount * _liquidityAndPromoFee / 100 (#1037)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- tReflect = tAmount * _FeeReflection / 100 (#1097)
- tReflect = tAmount * _FeeReflection / 100 (#1036)
- tReflect = tAmount * _FeeReflection / 100 (#1005)
- tReflect = tAmount * _FeeReflection / 100 (#1066)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- tTransferAmount = tAmount - (tReflect + tLiquidity) (#1043)
- tTransferAmount = tAmount - (tReflect + tLiquidity) (#1073)
- tTransferAmount = tAmount - (tReflect + tLiquidity) (#1012)
- tTransferAmount = tAmount - (tReflect + tLiquidity) (#1104)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- txCount ++ (#982)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1030)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- Transfer(sender,recipient,tTransferAmount) (#1092)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- Transfer(sender,recipient,tTransferAmount) (#1060)
- _tokenTransfer(from,to,amount,takeFee) (#854)
- Transfer(sender,recipient,tTransferAmount) (#1124)
- _tokenTransfer(from,to,amount,takeFee) (#854)
Reentrancy in SHILL.transferFrom(address,address,uint256) (#581-585):
External calls:
- _transfer(sender,recipient,amount) (#582)
- wallet.transfer(amount) (#858)
External calls sending eth:
- _transfer(sender,recipient,amount) (#582)
- wallet.transfer(amount) (#858)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#940-947)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#583)
- _allowances[owner][spender] = amount (#726)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#727)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#583)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#265) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#266)
Variable SHILL._takeLiquidity(uint256,uint256)._rLiquidity (#673) is too similar to SHILL._takeLiquidity(uint256,uint256)._tLiquidity (#673)
Variable SHILL.rTransferAmount (#461) is too similar to SHILL.tTransferAmount (#466)
Prevent variables from having similar names.

Additional information: link

SHILL.slitherConstructorVariables() (#398-1128) uses literals with too many digits:
- Wallet_Burn = address(0x000000000000000000000000000000000000dEaD) (#422)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SHILL._previousMaxWalletToken (#477) is never used in SHILL (#398-1128)
SHILL._previousMaxTxAmount (#481) is never used in SHILL (#398-1128)
Remove unused state variables.

Additional information: link

SHILL.Wallet_AutoShill (#420) should be constant
SHILL.Wallet_Burn (#422) should be constant
SHILL.Wallet_Dev (#421) should be constant
SHILL._FeeMaxPossible (#443) should be constant
SHILL._name (#430) should be constant
SHILL._symbol (#431) should be constant
SHILL.swapAndLiquifyEnabled (#486) should be constant
SHILL.swapTrigger (#435) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#200-203)
name() should be declared external:
- SHILL.name() (#546-548)
symbol() should be declared external:
- SHILL.symbol() (#550-552)
decimals() should be declared external:
- SHILL.decimals() (#554-556)
totalSupply() should be declared external:
- SHILL.totalSupply() (#558-560)
transfer(address,uint256) should be declared external:
- SHILL.transfer(address,uint256) (#567-570)
allowance(address,address) should be declared external:
- SHILL.allowance(address,address) (#572-574)
approve(address,uint256) should be declared external:
- SHILL.approve(address,uint256) (#576-579)
transferFrom(address,address,uint256) should be declared external:
- SHILL.transferFrom(address,address,uint256) (#581-585)
increaseAllowance(address,uint256) should be declared external:
- SHILL.increaseAllowance(address,uint256) (#587-590)
decreaseAllowance(address,uint256) should be declared external:
- SHILL.decreaseAllowance(address,uint256) (#592-595)
isExcludedFromReward(address) should be declared external:
- SHILL.isExcludedFromReward(address) (#597-599)
totalFees() should be declared external:
- SHILL.totalFees() (#601-603)
deliver(uint256) should be declared external:
- SHILL.deliver(uint256) (#605-614)
openTrade() should be declared external:
- SHILL.openTrade() (#638-641)
end_LaunchPhase() should be declared external:
- SHILL.end_LaunchPhase() (#645-647)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 Telegram and Twitter accounts


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

Price for SHILL