ShibaZilla aims to go above and beyond for its community, by providing investors 5% liquidity and 5% Reflection Rewards. We have the greatest community in the BSC space which take the project from stealth launching with $2K initial market cap and goes straight to $5M market, We believe that a strong community is the best foundation for every project in the Cryptocurrency space, and we're so glad that we have one.
Reentrancy in ShibaZilla._transfer(address,address,uint256) (#990-1034):
External calls:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#946)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1115)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1124)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1135)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#862)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1116)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1126)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1136)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#864)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _rTotal = _rTotal.sub(rFee) (#901)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#948)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1134)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#861)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1125)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#863)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
Redundant expression "this (#239)" inContext (#233-242)
Remove redundant statements if they congest code but offer no value.
Additional information: link
ShibaZilla.addLiquidity(uint256,uint256) (#1077-1090) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
Ensure that all the return values of the function calls are used.
Additional information: link
ShibaZilla._decimals (#703) should be constant
ShibaZilla._tTotal (#697) should be constant
ShibaZilla.numTokensSellToAddToLiquidity (#718) should be constant
ShibaZilla._symbol (#702) should be constant
ShibaZilla._name (#701) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
name() should be declared external:
- ShibaZilla.name() (#752-754)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#433-436)
increaseAllowance(address,uint256) should be declared external:
- ShibaZilla.increaseAllowance(address,uint256) (#793-796)
transferFrom(address,address,uint256) should be declared external:
- ShibaZilla.transferFrom(address,address,uint256) (#787-791)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ShibaZilla.setSwapAndLiquifyEnabled(bool) (#892-895)
symbol() should be declared external:
- ShibaZilla.symbol() (#756-758)
isExcludedFromReward(address) should be declared external:
- ShibaZilla.isExcludedFromReward(address) (#803-805)
transfer(address,uint256) should be declared external:
- ShibaZilla.transfer(address,uint256) (#773-776)
decimals() should be declared external:
- ShibaZilla.decimals() (#760-762)
decreaseAllowance(address,uint256) should be declared external:
- ShibaZilla.decreaseAllowance(address,uint256) (#798-801)
excludeFromFee(address) should be declared external:
- ShibaZilla.excludeFromFee(address) (#870-872)
approve(address,uint256) should be declared external:
- ShibaZilla.approve(address,uint256) (#782-785)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#442-446)
includeInFee(address) should be declared external:
- ShibaZilla.includeInFee(address) (#874-876)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#448-450)
totalSupply() should be declared external:
- ShibaZilla.totalSupply() (#764-766)
unlock() should be declared external:
- Ownable.unlock() (#461-466)
isExcludedFromFee(address) should be declared external:
- ShibaZilla.isExcludedFromFee(address) (#978-980)
deliver(uint256) should be declared external:
- ShibaZilla.deliver(uint256) (#811-818)
totalFees() should be declared external:
- ShibaZilla.totalFees() (#807-809)
reflectionFromToken(uint256,bool) should be declared external:
- ShibaZilla.reflectionFromToken(uint256,bool) (#820-829)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#453-458)
excludeFromReward(address) should be declared external:
- ShibaZilla.excludeFromReward(address) (#837-845)
allowance(address,address) should be declared external:
- ShibaZilla.allowance(address,address) (#778-780)
Use the external attribute for functions never called from the contract.
Additional information: link
ShibaZilla.includeInReward(address) (#847-858) has costly operations inside a loop:
- _excluded.pop() (#854)
Use a local variable to hold the loop computation result.
Additional information: link
ShibaZilla.setMaxTxPercent(uint256) (#886-890) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#887-889)
ShibaZilla.setLiquidityFeePercent(uint256) (#882-884) should emit an event for:
- _liquidityFee = liquidityFee (#883)
ShibaZilla.setTaxFeePercent(uint256) (#878-880) should emit an event for:
- _taxFee = taxFee (#879)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in ShibaZilla.swapAndLiquify(uint256) (#1036-1057):
External calls:
- swapTokensForEth(half) (#1048)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
- addLiquidity(otherHalf,newBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1054)
- _allowances[owner][spender] = amount (#986)
Reentrancy in ShibaZilla._transfer(address,address,uint256) (#990-1034):
External calls:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _liquidityFee = _previousLiquidityFee (#975)
- _liquidityFee = 0 (#970)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _previousLiquidityFee = _liquidityFee (#967)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _previousTaxFee = _taxFee (#966)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _tFeeTotal = _tFeeTotal.add(tFee) (#902)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _taxFee = _previousTaxFee (#974)
- _taxFee = 0 (#969)
Reentrancy in ShibaZilla.transferFrom(address,address,uint256) (#787-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
- _allowances[owner][spender] = amount (#986)
Apply the check-effects-interactions pattern.
Additional information: link
ShibaZilla._approve(address,address,uint256).owner (#982) shadows:
- Ownable.owner() (#414-416) (function)
ShibaZilla.allowance(address,address).owner (#778) shadows:
- Ownable.owner() (#414-416) (function)
Rename the local variables that shadow another component.
Additional information: link
Reentrancy in ShibaZilla.swapAndLiquify(uint256) (#1036-1057):
External calls:
- swapTokensForEth(half) (#1048)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
- addLiquidity(otherHalf,newBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- addLiquidity(otherHalf,newBalance) (#1054)
- SwapAndLiquify(half,newBalance,otherHalf) (#1056)
Reentrancy in ShibaZilla.transferFrom(address,address,uint256) (#787-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
Reentrancy in ShibaZilla._transfer(address,address,uint256) (#990-1034):
External calls:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1082-1089)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1119)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- Transfer(sender,recipient,tTransferAmount) (#1139)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- Transfer(sender,recipient,tTransferAmount) (#1129)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- Transfer(sender,recipient,tTransferAmount) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#461-466) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#463)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#266-275) uses assembly
- INLINE ASM (#273)
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Do not use evm assembly.
Additional information: link
Address.sendValue(address,uint256) (#293-299) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#344-346) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#227-230) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#354-357) is never used and should be removed
Context._msgData() (#238-241) is never used and should be removed
SafeMath.mod(uint256,uint256) (#211-213) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) is never used and should be removed
Address.isContract(address) (#266-275) is never used and should be removed
Address.functionCall(address,bytes,string) (#329-331) is never used and should be removed
Address.functionCall(address,bytes) (#319-321) is never used and should be removed
Remove unused functions.
Additional information: link
ShibaZilla._previousTaxFee (#706) is set pre-construction with a non-constant function or state variable:
- _taxFee
ShibaZilla._rTotal (#698) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ShibaZilla._previousLiquidityFee (#709) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
Low level call in Address.sendValue(address,uint256) (#293-299):
- (success) = recipient.call{value: amount}() (#297)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable ShibaZilla._taxFee (#705) is not in mixedCase
Parameter ShibaZilla.calculateLiquidityFee(uint256)._amount (#957) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#506) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#523) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#505) is not in mixedCase
Variable ShibaZilla._liquidityFee (#708) is not in mixedCase
Variable ShibaZilla._maxTxAmount (#717) is not in mixedCase
Parameter ShibaZilla.calculateTaxFee(uint256)._amount (#951) is not in mixedCase
Function IUniswapV2Router01.WETH() (#545) is not in mixedCase
Parameter ShibaZilla.setSwapAndLiquifyEnabled(bool)._enabled (#892) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable ShibaZilla._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to ShibaZilla._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable ShibaZilla._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to ShibaZilla._getValues(uint256).tTransferAmount (#906)
Variable ShibaZilla._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to ShibaZilla._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable ShibaZilla._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to ShibaZilla._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable ShibaZilla._getValues(uint256).rTransferAmount (#907) is too similar to ShibaZilla._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable ShibaZilla.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to ShibaZilla._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable ShibaZilla._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to ShibaZilla._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable ShibaZilla._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to ShibaZilla._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable ShibaZilla.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to ShibaZilla._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable ShibaZilla._getValues(uint256).rTransferAmount (#907) is too similar to ShibaZilla._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable ShibaZilla._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to ShibaZilla._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable ShibaZilla._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to ShibaZilla._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable ShibaZilla._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to ShibaZilla._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable ShibaZilla.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to ShibaZilla._getValues(uint256).tTransferAmount (#906)
Variable ShibaZilla._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to ShibaZilla._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable ShibaZilla._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to ShibaZilla._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable ShibaZilla._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to ShibaZilla._getTValues(uint256).tTransferAmount (#914)
Variable ShibaZilla._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to ShibaZilla._getValues(uint256).tTransferAmount (#906)
Variable ShibaZilla._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to ShibaZilla._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable ShibaZilla._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to ShibaZilla._getTValues(uint256).tTransferAmount (#914)
Variable ShibaZilla._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to ShibaZilla._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable ShibaZilla._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to ShibaZilla._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable ShibaZilla._getValues(uint256).rTransferAmount (#907) is too similar to ShibaZilla._getValues(uint256).tTransferAmount (#906)
Variable ShibaZilla._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to ShibaZilla._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable ShibaZilla._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to ShibaZilla._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable ShibaZilla.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to ShibaZilla._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#550) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#551)
Variable ShibaZilla._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to ShibaZilla._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable ShibaZilla._getValues(uint256).rTransferAmount (#907) is too similar to ShibaZilla._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable ShibaZilla._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to ShibaZilla._getValues(uint256).tTransferAmount (#906)
Variable ShibaZilla._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to ShibaZilla._getValues(uint256).tTransferAmount (#906)
Variable ShibaZilla.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to ShibaZilla._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable ShibaZilla._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to ShibaZilla._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable ShibaZilla._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to ShibaZilla._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable ShibaZilla.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to ShibaZilla._getTValues(uint256).tTransferAmount (#914)
Variable ShibaZilla._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to ShibaZilla._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable ShibaZilla._getValues(uint256).rTransferAmount (#907) is too similar to ShibaZilla._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable ShibaZilla._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to ShibaZilla._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable ShibaZilla._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to ShibaZilla._getTValues(uint256).tTransferAmount (#914)
Variable ShibaZilla._getValues(uint256).rTransferAmount (#907) is too similar to ShibaZilla._getTValues(uint256).tTransferAmount (#914)
Variable ShibaZilla._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to ShibaZilla._getTValues(uint256).tTransferAmount (#914)
Variable ShibaZilla._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to ShibaZilla._getTValues(uint256).tTransferAmount (#914)
Variable ShibaZilla._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to ShibaZilla._getValues(uint256).tTransferAmount (#906)
Prevent variables from having similar names.
Additional information: link
ShibaZilla.slitherConstructorVariables() (#683-1146) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 69000000000000000000000 * 10 ** 9 (#718)
ShibaZilla.slitherConstructorVariables() (#683-1146) uses literals with too many digits:
- _maxTxAmount = 69000000000000000000000 * 10 ** 9 (#717)
ShibaZilla.slitherConstructorVariables() (#683-1146) uses literals with too many digits:
- _tTotal = 69000000000000000000000 * 10 ** 9 (#697)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average 30d PancakeSwap volume is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
Contract has 10% buy tax and 9% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to crawl data from the website
Token was delisted from CoinGecko
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has a considerable age, but we're still unable to find its website
Token has no active CoinGecko listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
Token has relatively low CoinMarketCap rank
Young tokens have high risks of price dump / death
Last post in Twitter was more than 30 days ago
Twitter account has relatively few followers
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts