Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in FirstZilla._transfer(address,address,uint256) (#776-865):
External calls:
- swapAndLiquify(contractTokenBalance) (#842)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#912-918)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#842)
- wallet.transfer(amount) (#881)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#985)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#986)
- _tOwned[address(this)] = _tOwned[address(this)].add(tDev) (#987)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- txCount ++ (#974)
Apply the check-effects-interactions pattern.
Additional information: link
FirstZilla.blacklist_Add_Wallets(address[]).i (#653) is a local variable never initialized
FirstZilla.blacklist_Add_Wallets(address[]).gasUsed (#651) is a local variable never initialized
FirstZilla.blacklist_Remove_Wallets(address[]).i (#671) is a local variable never initialized
FirstZilla.blacklist_Remove_Wallets(address[]).gasUsed (#669) is a local variable never initialized
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
FirstZilla.allowance(address,address).owner (#534) shadows:
- Ownable.owner() (#162-164) (function)
FirstZilla._approve(address,address,uint256).owner (#768) shadows:
- Ownable.owner() (#162-164) (function)
Rename the local variables that shadow another component.
Additional information: link
FirstZilla._set_Fees(uint256,uint256) (#596-602) should emit an event for:
- _sellFee = Sell_Fee (#599)
- _buyFee = Buy_Fee (#600)
FirstZilla.set_Number_Of_Transactions_Before_Liquify_Trigger(uint8) (#626-628) should emit an event for:
- swapTrigger = number_of_transactions (#627)
FirstZilla.set_Max_Transaction_Percent(uint256) (#732-734) should emit an event for:
- _maxTxAmount = _tTotal * maxTxPercent_x100 / 10000 (#733)
FirstZilla.set_Max_Wallet_Percent(uint256) (#737-739) should emit an event for:
- _maxWalletToken = _tTotal * maxWallPercent_x100 / 10000 (#738)
Emit an event for critical parameter changes.
Additional information: link
FirstZilla.Wallet_Update_Dev(address).wallet (#607) lacks a zero-check on :
- Wallet_Dev = wallet (#608)
FirstZilla.set_New_Pair_Address(address).newPair (#957) lacks a zero-check on :
- uniswapV2Pair = newPair (#958)
Check that the address is not zero.
Additional information: link
Reentrancy in FirstZilla._transfer(address,address,uint256) (#776-865):
External calls:
- swapAndLiquify(contractTokenBalance) (#842)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#912-918)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#842)
- wallet.transfer(amount) (#881)
State variables written after the call(s):
- _TotalFee = _buyFee (#862)
- _TotalFee = _sellFee (#862)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _TotalFee = _previousTotalFee (#760)
- _TotalFee = 0 (#753)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _buyFee = _previousBuyFee (#761)
- _buyFee = 0 (#751)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _previousBuyFee = _buyFee (#748)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _previousSellFee = _sellFee (#749)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _previousTotalFee = _TotalFee (#750)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _sellFee = _previousSellFee (#762)
- _sellFee = 0 (#752)
Reentrancy in FirstZilla.constructor() (#485-500):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#492-493)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#495)
- _isExcludedFromFee[address(this)] = true (#496)
- _isExcludedFromFee[Wallet_Dev] = true (#497)
- uniswapV2Router = _uniswapV2Router (#494)
Reentrancy in FirstZilla.set_New_Router_and_Make_Pair(address) (#944-948):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPCSRouter.factory()).createPair(address(this),_newPCSRouter.WETH()) (#946)
State variables written after the call(s):
- uniswapV2Router = _newPCSRouter (#947)
Reentrancy in FirstZilla.transferFrom(address,address,uint256) (#543-547):
External calls:
- _transfer(sender,recipient,amount) (#544)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#912-918)
External calls sending eth:
- _transfer(sender,recipient,amount) (#544)
- wallet.transfer(amount) (#881)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#545)
- _allowances[owner][spender] = amount (#771)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FirstZilla._transfer(address,address,uint256) (#776-865):
External calls:
- swapAndLiquify(contractTokenBalance) (#842)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#912-918)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#842)
- wallet.transfer(amount) (#881)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#988)
- _tokenTransfer(from,to,amount,takeFee) (#864)
Reentrancy in FirstZilla.constructor() (#485-500):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#492-493)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#499)
Reentrancy in FirstZilla.transferFrom(address,address,uint256) (#543-547):
External calls:
- _transfer(sender,recipient,amount) (#544)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#912-918)
External calls sending eth:
- _transfer(sender,recipient,amount) (#544)
- wallet.transfer(amount) (#881)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#772)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#545)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#82-86) uses assembly
- INLINE ASM (#84)
Address._verifyCallResult(bool,bytes,string) (#134-147) uses assembly
- INLINE ASM (#139-142)
Do not use evm assembly.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#134-147) is never used and should be removed
Address.functionCall(address,bytes) (#94-96) is never used and should be removed
Address.functionCall(address,bytes,string) (#98-100) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#102-104) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#106-111) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#124-126) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#128-132) is never used and should be removed
Address.functionStaticCall(address,bytes) (#113-115) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#117-121) is never used and should be removed
Address.isContract(address) (#82-86) is never used and should be removed
Address.sendValue(address,uint256) (#88-92) is never used and should be removed
Context._msgData() (#73-76) is never used and should be removed
SafeMath.div(uint256,uint256) (#46-48) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#57-62) is never used and should be removed
SafeMath.mul(uint256,uint256) (#42-44) is never used and should be removed
Remove unused functions.
Additional information: link
FirstZilla._previousTotalFee (#431) is set pre-construction with a non-constant function or state variable:
- _TotalFee
FirstZilla._previousBuyFee (#432) is set pre-construction with a non-constant function or state variable:
- _buyFee
FirstZilla._previousSellFee (#433) is set pre-construction with a non-constant function or state variable:
- _sellFee
FirstZilla._maxWalletToken (#442) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(4).div(100)
FirstZilla._previousMaxWalletToken (#443) is set pre-construction with a non-constant function or state variable:
- _maxWalletToken
FirstZilla._maxTxAmount (#447) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(4).div(100)
FirstZilla._previousMaxTxAmount (#448) 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
Low level call in Address.sendValue(address,uint256) (#88-92):
- (success) = recipient.call{value: amount}() (#90)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#106-111):
- (success,returndata) = target.call{value: value}(data) (#109)
Low level call in Address.functionStaticCall(address,bytes,string) (#117-121):
- (success,returndata) = target.staticcall(data) (#119)
Low level call in Address.functionDelegateCall(address,bytes,string) (#128-132):
- (success,returndata) = target.delegatecall(data) (#130)
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() (#210) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#211) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#224) is not in mixedCase
Function IUniswapV2Router01.WETH() (#241) is not in mixedCase
Function FirstZilla._set_Fees(uint256,uint256) (#596-602) is not in mixedCase
Parameter FirstZilla._set_Fees(uint256,uint256).Buy_Fee (#596) is not in mixedCase
Parameter FirstZilla._set_Fees(uint256,uint256).Sell_Fee (#596) is not in mixedCase
Function FirstZilla.Wallet_Update_Dev(address) (#607-610) is not in mixedCase
Function FirstZilla.set_Swap_And_Liquify_Enabled(bool) (#620-623) is not in mixedCase
Parameter FirstZilla.set_Swap_And_Liquify_Enabled(bool).true_or_false (#620) is not in mixedCase
Function FirstZilla.set_Number_Of_Transactions_Before_Liquify_Trigger(uint8) (#626-628) is not in mixedCase
Parameter FirstZilla.set_Number_Of_Transactions_Before_Liquify_Trigger(uint8).number_of_transactions (#626) is not in mixedCase
Function FirstZilla.blacklist_Add_Wallets(address[]) (#648-661) is not in mixedCase
Function FirstZilla.blacklist_Remove_Wallets(address[]) (#666-679) is not in mixedCase
Function FirstZilla.blacklist_Switch(bool) (#693-695) is not in mixedCase
Parameter FirstZilla.blacklist_Switch(bool).true_or_false (#693) is not in mixedCase
Function FirstZilla.set_Transfers_Without_Fees(bool) (#710-712) is not in mixedCase
Parameter FirstZilla.set_Transfers_Without_Fees(bool).true_or_false (#710) is not in mixedCase
Function FirstZilla.set_Max_Transaction_Percent(uint256) (#732-734) is not in mixedCase
Parameter FirstZilla.set_Max_Transaction_Percent(uint256).maxTxPercent_x100 (#732) is not in mixedCase
Function FirstZilla.set_Max_Wallet_Percent(uint256) (#737-739) is not in mixedCase
Parameter FirstZilla.set_Max_Wallet_Percent(uint256).maxWallPercent_x100 (#737) is not in mixedCase
Function FirstZilla.process_Tokens_Now(uint256) (#895-902) is not in mixedCase
Parameter FirstZilla.process_Tokens_Now(uint256).percent_Of_Tokens_To_Process (#895) is not in mixedCase
Function FirstZilla.remove_Random_Tokens(address,address,uint256) (#928-933) is not in mixedCase
Parameter FirstZilla.remove_Random_Tokens(address,address,uint256).random_Token_Address (#928) is not in mixedCase
Parameter FirstZilla.remove_Random_Tokens(address,address,uint256).send_to_wallet (#928) is not in mixedCase
Parameter FirstZilla.remove_Random_Tokens(address,address,uint256).number_of_tokens (#928) is not in mixedCase
Function FirstZilla.set_New_Router_and_Make_Pair(address) (#944-948) is not in mixedCase
Function FirstZilla.set_New_Router_Address(address) (#951-954) is not in mixedCase
Function FirstZilla.set_New_Pair_Address(address) (#957-959) is not in mixedCase
Variable FirstZilla._isExcludedFromFee (#382) is not in mixedCase
Variable FirstZilla._isBlacklisted (#385) is not in mixedCase
Variable FirstZilla.Wallet_Dev (#397) is not in mixedCase
Variable FirstZilla.Wallet_Burn (#398) is not in mixedCase
Variable FirstZilla.Wallet_zero (#399) is not in mixedCase
Variable FirstZilla._TotalFee (#425) is not in mixedCase
Variable FirstZilla._buyFee (#426) is not in mixedCase
Variable FirstZilla._sellFee (#427) is not in mixedCase
Variable FirstZilla._maxWalletToken (#442) is not in mixedCase
Variable FirstZilla._maxTxAmount (#447) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#74)" inContext (#68-77)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in FirstZilla._transfer(address,address,uint256) (#776-865):
External calls:
- swapAndLiquify(contractTokenBalance) (#842)
- wallet.transfer(amount) (#881)
State variables written after the call(s):
- _TotalFee = _buyFee (#862)
- _TotalFee = _sellFee (#862)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _TotalFee = _previousTotalFee (#760)
- _TotalFee = 0 (#753)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _buyFee = _previousBuyFee (#761)
- _buyFee = 0 (#751)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _previousBuyFee = _buyFee (#748)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _previousSellFee = _sellFee (#749)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _previousTotalFee = _TotalFee (#750)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _sellFee = _previousSellFee (#762)
- _sellFee = 0 (#752)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#985)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#986)
- _tOwned[address(this)] = _tOwned[address(this)].add(tDev) (#987)
- _tokenTransfer(from,to,amount,takeFee) (#864)
- txCount ++ (#974)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#988)
- _tokenTransfer(from,to,amount,takeFee) (#864)
Reentrancy in FirstZilla.transferFrom(address,address,uint256) (#543-547):
External calls:
- _transfer(sender,recipient,amount) (#544)
- wallet.transfer(amount) (#881)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#545)
- _allowances[owner][spender] = amount (#771)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#772)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#545)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#245) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#246)
Prevent variables from having similar names.
Additional information: link
FirstZilla.slitherConstructorVariables() (#374-1004) uses literals with too many digits:
- Wallet_Burn = address(0x000000000000000000000000000000000000dEaD) (#398)
FirstZilla.slitherConstructorVariables() (#374-1004) uses literals with too many digits:
- Wallet_zero = address(0x0000000000000000000000000000000000000000) (#399)
FirstZilla.slitherConstructorVariables() (#374-1004) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 18 (#412)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
FirstZilla.Wallet_zero (#399) is never used in FirstZilla (#374-1004)
FirstZilla._tFeeTotal (#413) is never used in FirstZilla (#374-1004)
FirstZilla._previousMaxWalletToken (#443) is never used in FirstZilla (#374-1004)
FirstZilla._previousMaxTxAmount (#448) is never used in FirstZilla (#374-1004)
Remove unused state variables.
Additional information: link
FirstZilla.Wallet_Burn (#398) should be constant
FirstZilla.Wallet_zero (#399) should be constant
FirstZilla._decimals (#411) should be constant
FirstZilla._name (#409) should be constant
FirstZilla._symbol (#410) should be constant
FirstZilla._tFeeTotal (#413) should be constant
FirstZilla._tTotal (#412) should be constant
FirstZilla.maxPossibleFee (#421) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#173-176)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#179-183)
name() should be declared external:
- FirstZilla.name() (#509-511)
symbol() should be declared external:
- FirstZilla.symbol() (#513-515)
decimals() should be declared external:
- FirstZilla.decimals() (#517-519)
totalSupply() should be declared external:
- FirstZilla.totalSupply() (#521-523)
transfer(address,uint256) should be declared external:
- FirstZilla.transfer(address,uint256) (#529-532)
allowance(address,address) should be declared external:
- FirstZilla.allowance(address,address) (#534-536)
approve(address,uint256) should be declared external:
- FirstZilla.approve(address,uint256) (#538-541)
transferFrom(address,address,uint256) should be declared external:
- FirstZilla.transferFrom(address,address,uint256) (#543-547)
increaseAllowance(address,uint256) should be declared external:
- FirstZilla.increaseAllowance(address,uint256) (#549-552)
decreaseAllowance(address,uint256) should be declared external:
- FirstZilla.decreaseAllowance(address,uint256) (#554-557)
excludeFromFee(address) should be declared external:
- FirstZilla.excludeFromFee(address) (#576-578)
includeInFee(address) should be declared external:
- FirstZilla.includeInFee(address) (#581-583)
Wallet_Update_Dev(address) should be declared external:
- FirstZilla.Wallet_Update_Dev(address) (#607-610)
set_Swap_And_Liquify_Enabled(bool) should be declared external:
- FirstZilla.set_Swap_And_Liquify_Enabled(bool) (#620-623)
set_Number_Of_Transactions_Before_Liquify_Trigger(uint8) should be declared external:
- FirstZilla.set_Number_Of_Transactions_Before_Liquify_Trigger(uint8) (#626-628)
blacklist_Switch(bool) should be declared external:
- FirstZilla.blacklist_Switch(bool) (#693-695)
process_Tokens_Now(uint256) should be declared external:
- FirstZilla.process_Tokens_Now(uint256) (#895-902)
set_New_Router_and_Make_Pair(address) should be declared external:
- FirstZilla.set_New_Router_and_Make_Pair(address) (#944-948)
set_New_Router_Address(address) should be declared external:
- FirstZilla.set_New_Router_Address(address) (#951-954)
set_New_Pair_Address(address) should be declared external:
- FirstZilla.set_New_Pair_Address(address) (#957-959)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume 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 PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Contract has 10% buy tax and 11% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Twitter account
Telegram account has less than 100 subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account