Eggzilla is a new token launching on the BSC Network, with a P2E style usecase and potential NFT collaborations. We will be launching our own metaverse API in phase 2 of our project with a blockchain crossover.
Both devs are Doxxed, KYC'd and Based, making for a safe and profitable platform.
P2E phase 1 game due for release in 24-48 hours. Roadmap is progressing well, with no hinderance. Main core focus is the P2E game before securing futher partnerships and developing alternative use case.
Eggzilla.swapBack() (#561-600) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#586)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Eggzilla._transferFrom(address,address,uint256) (#482-504):
External calls:
- swapBack() (#487)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#572-578)
- distributor.deposit{value: amountBNBReflection}() (#585)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#586)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#590-597)
- triggerAutoBuyback() (#488)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#638-643)
External calls sending eth:
- swapBack() (#487)
- distributor.deposit{value: amountBNBReflection}() (#585)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#586)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#590-597)
- triggerAutoBuyback() (#488)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#638-643)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#492)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#495)
- amountReceived = takeFee(sender,recipient,amount) (#494)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#548)
- triggerAutoBuyback() (#488)
- inSwap = true (#414)
- inSwap = false (#414)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#310-321) ignores return value by BUSD.transfer(shareholder,amount) (#316)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
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.
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Reentrancy in DividendDistributor.setShare(address,uint256) (#243-257):
External calls:
- distributeDividend(shareholder) (#245)
- BUSD.transfer(shareholder,amount) (#316)
State variables written after the call(s):
- shares[shareholder].amount = amount (#255)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#256)
Apply the check-effects-interactions pattern.
Additional information: link
Eggzilla.swapBack() (#561-600) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#590-597)
Ensure that all the return values of the function calls are used.
Additional information: link
Eggzilla.setTargetLiquidity(uint256,uint256) (#722-725) should emit an event for:
- targetLiquidity = _target (#723)
- targetLiquidityDenominator = _denominator (#724)
Emit an event for critical parameter changes.
Additional information: link
Eggzilla.setFeeReceivers(address,address)._marketingFeeReceiver (#712) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#714)
Check that the address is not zero.
Additional information: link
Reentrancy in Eggzilla.triggerManualBuyback(uint256,bool) (#610-616):
External calls:
- buyTokens(amount,DEAD) (#611)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#638-643)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#613)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Eggzilla.triggerManualBuyback(uint256,bool) (#610-616):
External calls:
- buyTokens(amount,DEAD) (#611)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#638-643)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#614)
Apply the check-effects-interactions pattern.
Additional information: link
Eggzilla.isOverLiquified(uint256,uint256) (#762-764) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#763)
Avoid relying on block.timestamp.
Additional information: link
Eggzilla.transfer(address,uint256) (#466-472) compares to a boolean constant:
-require(bool,string)(canTrade == true,Trade not started yet!) (#470)
Remove the equality to the boolean constant.
Additional information: link
DividendDistributor.process(uint256) (#279-303) has costly operations inside a loop:
- currentIndex ++ (#300)
Use a local variable to hold the loop computation result.
Additional information: link
Eggzilla.swapThreshold (#412) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 200
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
solc-0.8.7 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 Eggzilla.swapBack() (#561-600):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#586)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable Eggzilla._allowances (#370) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#140) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#141)
Prevent variables from having similar names.
Additional information: link
Eggzilla.slitherConstructorVariables() (#354-769) uses literals with too many digits:
- distributorGas = 500000 (#408)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Eggzilla.BUSD (#357) is never used in Eggzilla (#354-769)
Remove unused state variables.
Additional information: link
Eggzilla._totalSupply (#366) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
getUnpaidEarnings(address) should be declared external:
- Eggzilla.getUnpaidEarnings(address) (#745-747)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
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 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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to verify token contract address 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
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Token has relatively low CoinGecko rank
Twitter account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account