FegZilla Token Logo

FEGZ [FegZilla] Token

About FEGZ

Listings

Token 2 years
CoinMarketCap 2 years
white paper

The Only Official Twitter Account of FegZillaToken 🦍 . A Token Built On The BSC Network . TG : https://t.co/0bJnukGL8c

Laser Scorebeta Last Audit: 17 January 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

FegZilla.contractSwap(uint256) (#780-822) sends eth to arbitrary user
Dangerous calls:
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
- _marketingWallet.transfer(address(this).balance * _ratios.marketing / (_ratios.marketing + _ratios.buyback)) (#819)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FegZilla._transfer(address,address,uint256) (#745-778):
External calls:
- contractSwap(contractTokenBalance) (#773)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(toSwapForEth,0,path,address(this),block.timestamp) (#796-802)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- antiSnipe.checkUser(from,to,tAmount) (#904-908)
External calls sending eth:
- contractSwap(contractTokenBalance) (#773)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
- _marketingWallet.transfer(address(this).balance * _ratios.marketing / (_ratios.marketing + _ratios.buyback)) (#819)
- _buybackWallet.transfer(address(this).balance) (#820)
State variables written after the call(s):
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- _liquidityHolders[from] = true (#827)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- _rOwned[address(this)] = _rOwned[address(this)] + (tLiquidity * _getRate()) (#959)
- _rOwned[from] = _rOwned[from] - values.rAmount (#874)
- _rOwned[to] = _rOwned[to] + values.rTransferAmount (#875)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- _rTotal -= values.rFee (#889)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- _tOwned[address(this)] = _tOwned[address(this)] + tLiquidity (#961)
- _tOwned[from] = _tOwned[from] - tAmount (#878)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#880)
- _tOwned[from] = _tOwned[from] - tAmount (#882)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#883)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- contractSwapEnabled = true (#832)
Reentrancy in FegZilla.transferOwner(address) (#483-499):
External calls:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#493)
- antiSnipe.checkUser(from,to,tAmount) (#904-908)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(toSwapForEth,0,path,address(this),block.timestamp) (#796-802)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
External calls sending eth:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#493)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
- _marketingWallet.transfer(address(this).balance * _ratios.marketing / (_ratios.marketing + _ratios.buyback)) (#819)
- _buybackWallet.transfer(address(this).balance) (#820)
State variables written after the call(s):
- _owner = newOwner (#496)
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 (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.

Additional information: link

FegZilla.setExcludedFromReward(address,bool) (#602-628) has costly operations inside a loop:
- _excluded.pop() (#622)
Use a local variable to hold the loop computation result.

Additional information: link

Reentrancy in FegZilla._finalizeTransfer(address,address,uint256,bool) (#864-894):
External calls:
- values = _getValues(from,to,tAmount,takeFee) (#872)
- antiSnipe.checkUser(from,to,tAmount) (#904-908)
State variables written after the call(s):
- _rOwned[from] = _rOwned[from] - values.rAmount (#874)
- _rOwned[to] = _rOwned[to] + values.rTransferAmount (#875)
- _takeLiquidity(from,values.tLiquidity) (#887)
- _rOwned[address(this)] = _rOwned[address(this)] + (tLiquidity * _getRate()) (#959)
- _rTotal -= values.rFee (#889)
- _tOwned[from] = _tOwned[from] - tAmount (#878)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#880)
- _tOwned[from] = _tOwned[from] - tAmount (#882)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#883)
- _takeLiquidity(from,values.tLiquidity) (#887)
- _tOwned[address(this)] = _tOwned[address(this)] + tLiquidity (#961)
Reentrancy in FegZilla.enableTrading() (#837-847):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp)) (#845)
State variables written after the call(s):
- tradingEnabled = true (#846)
Apply the check-effects-interactions pattern.

Additional information: link

FegZilla._getValues(address,address,uint256,bool).check (#904) is a local variable never initialized
FegZilla._getValues(address,address,uint256,bool).values (#897) is a local variable never initialized
FegZilla._getValues(address,address,uint256,bool).checked (#903) 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

FegZilla.contractSwap(uint256) (#780-822) ignores return value by dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
FegZilla._getValues(address,address,uint256,bool) (#896-944) ignores return value by antiSnipe.checkUser(from,to,tAmount) (#904-908)
Ensure that all the return values of the function calls are used.

Additional information: link

FegZilla.setMaxTxPercent(uint256,uint256) (#701-706) should emit an event for:
- _maxTxAmount = check (#704)
FegZilla.setMaxWalletSize(uint256,uint256) (#708-713) should emit an event for:
- _maxWalletSize = check (#711)
FegZilla.setSwapSettings(uint256,uint256,uint256,uint256) (#715-718) should emit an event for:
- swapThreshold = (_tTotal * thresholdPercent) / thresholdDivisor (#716)
- swapAmount = (_tTotal * amountPercent) / amountDivisor (#717)
Emit an event for critical parameter changes.

Additional information: link

FegZilla.setWallets(address).marketingWallet (#720) lacks a zero-check on :
- _marketingWallet = address(marketingWallet) (#721)
Check that the address is not zero.

Additional information: link

Variable 'FegZilla._getValues(address,address,uint256,bool).check (#904)' in FegZilla._getValues(address,address,uint256,bool) (#896-944) potentially used before declaration: checked = check (#905)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in FegZilla._finalizeTransfer(address,address,uint256,bool) (#864-894):
External calls:
- values = _getValues(from,to,tAmount,takeFee) (#872)
- antiSnipe.checkUser(from,to,tAmount) (#904-908)
State variables written after the call(s):
- _tFeeTotal += values.tFee (#890)
Reentrancy in FegZilla._getValues(address,address,uint256,bool) (#896-944):
External calls:
- antiSnipe.checkUser(from,to,tAmount) (#904-908)
State variables written after the call(s):
- currentTaxes.reflectFee = _sellTaxes.reflectFee (#917)
- currentTaxes.liquidityFee = _sellTaxes.liquidityFee (#918)
- currentTaxes.marketingFee = _sellTaxes.marketingFee (#919)
- currentTaxes.reflectFee = _buyTaxes.reflectFee (#921)
- currentTaxes.liquidityFee = _buyTaxes.liquidityFee (#922)
- currentTaxes.marketingFee = _buyTaxes.marketingFee (#923)
- currentTaxes.reflectFee = _transferTaxes.reflectFee (#925)
- currentTaxes.liquidityFee = _transferTaxes.liquidityFee (#926)
- currentTaxes.marketingFee = _transferTaxes.marketingFee (#927)
Reentrancy in FegZilla.constructor() (#451-470):
External calls:
- lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#458)
State variables written after the call(s):
- _approve(_msgSender(),_routerAddress,type()(uint256).max) (#461)
- _allowances[sender][spender] = amount (#536)
- _approve(address(this),_routerAddress,type()(uint256).max) (#462)
- _allowances[sender][spender] = amount (#536)
- _isExcludedFromFees[owner()] = true (#464)
- _isExcludedFromFees[address(this)] = true (#465)
- _isExcludedFromFees[DEAD] = true (#466)
- _liquidityHolders[owner()] = true (#467)
- lpPairs[lpPair] = true (#459)
Reentrancy in FegZilla.setNewRouter(address) (#563-574):
External calls:
- lpPair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#567)
State variables written after the call(s):
- _approve(address(this),address(dexRouter),type()(uint256).max) (#573)
- _allowances[sender][spender] = amount (#536)
- dexRouter = _newRouter (#572)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FegZilla._finalizeTransfer(address,address,uint256,bool) (#864-894):
External calls:
- values = _getValues(from,to,tAmount,takeFee) (#872)
- antiSnipe.checkUser(from,to,tAmount) (#904-908)
Event emitted after the call(s):
- Transfer(sender,address(this),tLiquidity) (#962)
- _takeLiquidity(from,values.tLiquidity) (#887)
- Transfer(from,to,values.tTransferAmount) (#892)
Reentrancy in FegZilla._transfer(address,address,uint256) (#745-778):
External calls:
- contractSwap(contractTokenBalance) (#773)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(toSwapForEth,0,path,address(this),block.timestamp) (#796-802)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- antiSnipe.checkUser(from,to,tAmount) (#904-908)
External calls sending eth:
- contractSwap(contractTokenBalance) (#773)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
- _marketingWallet.transfer(address(this).balance * _ratios.marketing / (_ratios.marketing + _ratios.buyback)) (#819)
- _buybackWallet.transfer(address(this).balance) (#820)
Event emitted after the call(s):
- ContractSwapEnabledUpdated(true) (#833)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- Transfer(sender,address(this),tLiquidity) (#962)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- Transfer(from,to,values.tTransferAmount) (#892)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
Reentrancy in FegZilla.constructor() (#451-470):
External calls:
- lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#458)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#537)
- _approve(address(this),_routerAddress,type()(uint256).max) (#462)
- Approval(sender,spender,amount) (#537)
- _approve(_msgSender(),_routerAddress,type()(uint256).max) (#461)
- Transfer(address(0),_msgSender(),_tTotal) (#469)
Reentrancy in FegZilla.contractSwap(uint256) (#780-822):
External calls:
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(toSwapForEth,0,path,address(this),block.timestamp) (#796-802)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
External calls sending eth:
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
Event emitted after the call(s):
- SwapAndLiquify(toLiquify,liquidityBalance,toLiquify) (#816)
Reentrancy in FegZilla.setNewRouter(address) (#563-574):
External calls:
- lpPair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#567)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#537)
- _approve(address(this),address(dexRouter),type()(uint256).max) (#573)
Reentrancy in FegZilla.transferOwner(address) (#483-499):
External calls:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#493)
- antiSnipe.checkUser(from,to,tAmount) (#904-908)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(toSwapForEth,0,path,address(this),block.timestamp) (#796-802)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
External calls sending eth:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#493)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
- _marketingWallet.transfer(address(this).balance * _ratios.marketing / (_ratios.marketing + _ratios.buyback)) (#819)
- _buybackWallet.transfer(address(this).balance) (#820)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#497)
Apply the check-effects-interactions pattern.

Additional information: link

FegZilla.setLpPair(address,bool) (#576-588) uses timestamp for comparisons
Dangerous comparisons:
- timeSinceLastPair != 0 (#581)
- require(bool,string)(block.timestamp - timeSinceLastPair > 604800,Cannot set a new pair this week!) (#582)
Avoid relying on block.timestamp.

Additional information: link

FegZilla.setLpPair(address,bool) (#576-588) compares to a boolean constant:
-enabled == false (#577)
FegZilla.setExcludedFromReward(address,bool) (#602-628) compares to a boolean constant:
-enabled == false (#610)
FegZilla.setExcludedFromReward(address,bool) (#602-628) compares to a boolean constant:
-enabled == true (#603)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (#9-12) is never used and should be removed
Remove unused functions.

Additional information: link

FegZilla._tTotal (#396) is set pre-construction with a non-constant function or state variable:
- startingSupply * 10 ** _decimals
FegZilla._rTotal (#397) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FegZilla._maxTxAmount (#415) is set pre-construction with a non-constant function or state variable:
- (_tTotal * maxTxPercent) / maxTxDivisor
FegZilla.maxTxAmountUI (#416) is set pre-construction with a non-constant function or state variable:
- (startingSupply * maxTxPercent) / maxTxDivisor
FegZilla._maxWalletSize (#420) is set pre-construction with a non-constant function or state variable:
- (_tTotal * maxWalletPercent) / maxWalletDivisor
FegZilla.maxWalletSizeUI (#421) is set pre-construction with a non-constant function or state variable:
- (startingSupply * maxWalletPercent) / maxWalletDivisor
FegZilla.swapThreshold (#423) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 5) / 10000
FegZilla.swapAmount (#424) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 5) / 1000
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 version>=0.6.0<0.9.0 (#2) is too complex
solc-0.8.9 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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#131) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#132) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#146) is not in mixedCase
Function IUniswapV2Router01.WETH() (#164) is not in mixedCase
Parameter FegZilla.setProtectionSettings(bool,bool,bool,bool)._antiSnipe (#648) is not in mixedCase
Parameter FegZilla.setProtectionSettings(bool,bool,bool,bool)._antiGas (#648) is not in mixedCase
Parameter FegZilla.setProtectionSettings(bool,bool,bool,bool)._antiBlock (#648) is not in mixedCase
Parameter FegZilla.setProtectionSettings(bool,bool,bool,bool)._antiSpecial (#648) is not in mixedCase
Parameter FegZilla.setContractSwapEnabled(bool)._enabled (#724) is not in mixedCase
Constant FegZilla._name (#326) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FegZilla._symbol (#327) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FegZilla._buyTaxes (#358-363) is not in mixedCase
Variable FegZilla._sellTaxes (#365-370) is not in mixedCase
Variable FegZilla._transferTaxes (#372-377) is not in mixedCase
Variable FegZilla._ratios (#379-384) is not in mixedCase
Constant FegZilla._routerAddress (#404) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FegZilla._hasLiqBeenAdded (#427) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in FegZilla._transfer(address,address,uint256) (#745-778):
External calls:
- contractSwap(contractTokenBalance) (#773)
- _marketingWallet.transfer(address(this).balance * _ratios.marketing / (_ratios.marketing + _ratios.buyback)) (#819)
- _buybackWallet.transfer(address(this).balance) (#820)
External calls sending eth:
- contractSwap(contractTokenBalance) (#773)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
- _marketingWallet.transfer(address(this).balance * _ratios.marketing / (_ratios.marketing + _ratios.buyback)) (#819)
- _buybackWallet.transfer(address(this).balance) (#820)
State variables written after the call(s):
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- _hasLiqBeenAdded = true (#828)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- _liquidityHolders[from] = true (#827)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- _rOwned[address(this)] = _rOwned[address(this)] + (tLiquidity * _getRate()) (#959)
- _rOwned[from] = _rOwned[from] - values.rAmount (#874)
- _rOwned[to] = _rOwned[to] + values.rTransferAmount (#875)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- _rTotal -= values.rFee (#889)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- _tFeeTotal += values.tFee (#890)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- _tOwned[address(this)] = _tOwned[address(this)] + tLiquidity (#961)
- _tOwned[from] = _tOwned[from] - tAmount (#878)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#880)
- _tOwned[from] = _tOwned[from] - tAmount (#882)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#883)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- antiSnipe = AntiSnipe(address(this)) (#830)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- contractSwapEnabled = true (#832)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- currentTaxes.reflectFee = _sellTaxes.reflectFee (#917)
- currentTaxes.liquidityFee = _sellTaxes.liquidityFee (#918)
- currentTaxes.marketingFee = _sellTaxes.marketingFee (#919)
- currentTaxes.reflectFee = _buyTaxes.reflectFee (#921)
- currentTaxes.liquidityFee = _buyTaxes.liquidityFee (#922)
- currentTaxes.marketingFee = _buyTaxes.marketingFee (#923)
- currentTaxes.reflectFee = _transferTaxes.reflectFee (#925)
- currentTaxes.liquidityFee = _transferTaxes.liquidityFee (#926)
- currentTaxes.marketingFee = _transferTaxes.marketingFee (#927)
Event emitted after the call(s):
- ContractSwapEnabledUpdated(true) (#833)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- Transfer(sender,address(this),tLiquidity) (#962)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
- Transfer(from,to,values.tTransferAmount) (#892)
- _finalizeTransfer(from,to,amount,takeFee) (#777)
Reentrancy in FegZilla.transferOwner(address) (#483-499):
External calls:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#493)
- _marketingWallet.transfer(address(this).balance * _ratios.marketing / (_ratios.marketing + _ratios.buyback)) (#819)
- _buybackWallet.transfer(address(this).balance) (#820)
External calls sending eth:
- _transfer(_owner,newOwner,balanceOf(_owner)) (#493)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#808-815)
- _marketingWallet.transfer(address(this).balance * _ratios.marketing / (_ratios.marketing + _ratios.buyback)) (#819)
- _buybackWallet.transfer(address(this).balance) (#820)
State variables written after the call(s):
- _owner = newOwner (#496)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#497)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#168) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#169)
Prevent variables from having similar names.

Additional information: link

FegZilla.slitherConstructorConstantVariables() (#307-965) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#406)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

FegZilla._isSniper (#321) is never used in FegZilla (#307-965)
Remove unused state variables.

Additional information: link

FegZilla._buybackWallet (#408) should be constant
FegZilla._decimals (#395) should be constant
FegZilla.maxTxDivisor (#414) should be constant
FegZilla.maxTxPercent (#413) should be constant
FegZilla.maxWalletDivisor (#419) should be constant
FegZilla.maxWalletPercent (#418) should be constant
FegZilla.startingSupply (#324) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- FegZilla.renounceOwnership() (#501-505)
transfer(address,uint256) should be declared external:
- FegZilla.transfer(address,uint256) (#522-525)
approve(address,uint256) should be declared external:
- FegZilla.approve(address,uint256) (#527-530)
approveContractContingency() should be declared external:
- FegZilla.approveContractContingency() (#540-543)
increaseAllowance(address,uint256) should be declared external:
- FegZilla.increaseAllowance(address,uint256) (#553-556)
decreaseAllowance(address,uint256) should be declared external:
- FegZilla.decreaseAllowance(address,uint256) (#558-561)
setNewRouter(address) should be declared external:
- FegZilla.setNewRouter(address) (#563-574)
isExcludedFromFees(address) should be declared external:
- FegZilla.isExcludedFromFees(address) (#590-592)
isExcludedFromReward(address) should be declared external:
- FegZilla.isExcludedFromReward(address) (#598-600)
isBlacklisted(address) should be declared external:
- FegZilla.isBlacklisted(address) (#636-638)
getSniperAmt() should be declared external:
- FegZilla.getSniperAmt() (#644-646)
setContractSwapEnabled(bool) should be declared external:
- FegZilla.setContractSwapEnabled(bool) (#724-727)
enableTrading() should be declared external:
- FegZilla.enableTrading() (#837-847)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

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


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for FEGZ

News for FEGZ