The Most Unforeseen Meme Coin Of 2022! It's All Written In The DAO Contract! Eggpot's Goal Is The Never-Ending Pump! Are You Ready To Break The Big Prize Pool?
A New Unique Contract With Automatic Reward. The Eggpot Contract Contains Thousands Of Golden Eggs And Allows One of The Last 10 Buyers To Win A Huge Jackpot If No Purchases Are Made. OWNERSHIP Will Be Renounced After 24hr on Pancakeswap ✅ KYC&Audit ✅ Anti-Bot ✅ 200 BNB REWARD POOL FOR THE BEGINNING 🤑 x100 Potantial 🚀🚀🚀
Eggpot.random(uint256,uint256,uint256) (contracts/Eggpot.sol#480-501) uses a weak PRNG: "(seed % (to - from)) + from (contracts/Eggpot.sol#500)"
Do not use block.timestamp, now or blockhash as a source of randomness
Additional information: link
Reentrancy in Eggpot._transfer(address,address,uint256) (contracts/Eggpot.sol#307-429):
External calls:
- swapBack() (contracts/Eggpot.sol#365)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Eggpot.sol#530-536)
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
External calls sending eth:
- swapBack() (contracts/Eggpot.sol#365)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
State variables written after the call(s):
- swapping = false (contracts/Eggpot.sol#366)
- tokensForJackpot += (fees * sellJackpotFee) / sellTotalFees (contracts/Eggpot.sol#387)
- tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees (contracts/Eggpot.sol#385)
- tokensForOperations += (fees * sellOperationsFee) / sellTotalFees (contracts/Eggpot.sol#386)
Reentrancy in Eggpot._transfer(address,address,uint256) (contracts/Eggpot.sol#307-429):
External calls:
- swapBack() (contracts/Eggpot.sol#365)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Eggpot.sol#530-536)
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
- payoutRewards(to) (contracts/Eggpot.sol#401)
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#471)
- gasBurn() (contracts/Eggpot.sol#403)
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#455)
External calls sending eth:
- swapBack() (contracts/Eggpot.sol#365)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
- payoutRewards(to) (contracts/Eggpot.sol#401)
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#471)
- gasBurn() (contracts/Eggpot.sol#403)
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#455)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (contracts/Eggpot.sol#422)
- _balances[sender] = senderBalance - amount (contracts/token/ERC20.sol#138)
- _balances[recipient] += amount (contracts/token/ERC20.sol#140)
- super._transfer(from,to,amount) (contracts/Eggpot.sol#428)
- _balances[sender] = senderBalance - amount (contracts/token/ERC20.sol#138)
- _balances[recipient] += amount (contracts/token/ERC20.sol#140)
- buyerList.push(to) (contracts/Eggpot.sol#408)
- lastBuyTimestamp = block.timestamp (contracts/Eggpot.sol#411)
- tokensForJackpot += (fees * buyJackpotFee) / buyTotalFees (contracts/Eggpot.sol#417)
- tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees (contracts/Eggpot.sol#415)
- tokensForOperations += (fees * buyOperationsFee) / buyTotalFees (contracts/Eggpot.sol#416)
Reentrancy in Eggpot.payoutRewards(address) (contracts/Eggpot.sol#459-478):
External calls:
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#471)
State variables written after the call(s):
- delete buyerList (contracts/Eggpot.sol#477)
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)
Eggpot._transfer(address,address,uint256) (contracts/Eggpot.sol#307-429) performs a multiplication on the result of a division:
-fees = (amount * (sellTotalFees)) / FEE_DENOMINATOR (contracts/Eggpot.sol#384)
-tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees (contracts/Eggpot.sol#385)
Eggpot._transfer(address,address,uint256) (contracts/Eggpot.sol#307-429) performs a multiplication on the result of a division:
-fees = (amount * (sellTotalFees)) / FEE_DENOMINATOR (contracts/Eggpot.sol#384)
-tokensForOperations += (fees * sellOperationsFee) / sellTotalFees (contracts/Eggpot.sol#386)
Eggpot._transfer(address,address,uint256) (contracts/Eggpot.sol#307-429) performs a multiplication on the result of a division:
-fees = (amount * (sellTotalFees)) / FEE_DENOMINATOR (contracts/Eggpot.sol#384)
-tokensForJackpot += (fees * sellJackpotFee) / sellTotalFees (contracts/Eggpot.sol#387)
Eggpot._transfer(address,address,uint256) (contracts/Eggpot.sol#307-429) performs a multiplication on the result of a division:
-fees = (amount * (buyTotalFees)) / FEE_DENOMINATOR (contracts/Eggpot.sol#414)
-tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees (contracts/Eggpot.sol#415)
Eggpot._transfer(address,address,uint256) (contracts/Eggpot.sol#307-429) performs a multiplication on the result of a division:
-fees = (amount * (buyTotalFees)) / FEE_DENOMINATOR (contracts/Eggpot.sol#414)
-tokensForOperations += (fees * buyOperationsFee) / buyTotalFees (contracts/Eggpot.sol#416)
Eggpot._transfer(address,address,uint256) (contracts/Eggpot.sol#307-429) performs a multiplication on the result of a division:
-fees = (amount * (buyTotalFees)) / FEE_DENOMINATOR (contracts/Eggpot.sol#414)
-tokensForJackpot += (fees * buyJackpotFee) / buyTotalFees (contracts/Eggpot.sol#417)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in Eggpot.swapBack() (contracts/Eggpot.sol#554-603):
External calls:
- swapTokensForEth(contractBalance - liquidityTokens) (contracts/Eggpot.sol#576)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Eggpot.sol#530-536)
State variables written after the call(s):
- tokensForJackpot = 0 (contracts/Eggpot.sol#590)
- tokensForLiquidity = 0 (contracts/Eggpot.sol#588)
- tokensForOperations = 0 (contracts/Eggpot.sol#589)
Apply the check-effects-interactions pattern.
Additional information: link
Eggpot.addLiquidity(uint256,uint256) (contracts/Eggpot.sol#539-552) ignores return value by dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
Ensure that all the return values of the function calls are used.
Additional information: link
Eggpot.constructor().totalSupply (contracts/Eggpot.sol#115) shadows:
- ERC20.totalSupply() (contracts/token/ERC20.sol#34-36) (function)
- IERC20.totalSupply() (contracts/interface/IERC20.sol#5) (function)
Rename the local variables that shadow another component.
Additional information: link
Eggpot.updateSwapTokensAtAmount(uint256) (contracts/Eggpot.sol#208-212) should emit an event for:
- swapTokensAtAmount = newAmount (contracts/Eggpot.sol#211)
Eggpot.setNumberOfBuysForJackpot(uint256) (contracts/Eggpot.sol#230-236) should emit an event for:
- numberOfBuysForJackpot = num (contracts/Eggpot.sol#235)
Eggpot.updateBuyFees(uint256,uint256,uint256) (contracts/Eggpot.sol#269-279) should emit an event for:
- buyOperationsFee = _operationsFee (contracts/Eggpot.sol#274)
- buyLiquidityFee = _liquidityFee (contracts/Eggpot.sol#275)
- buyJackpotFee = _jackpotFee (contracts/Eggpot.sol#276)
- buyTotalFees = buyOperationsFee + buyLiquidityFee + buyJackpotFee (contracts/Eggpot.sol#277)
Eggpot.updateSellFees(uint256,uint256,uint256) (contracts/Eggpot.sol#281-291) should emit an event for:
- sellOperationsFee = _operationsFee (contracts/Eggpot.sol#286)
- sellLiquidityFee = _liquidityFee (contracts/Eggpot.sol#287)
- sellJackpotFee = _jackpotFee (contracts/Eggpot.sol#288)
- sellTotalFees = sellOperationsFee + sellLiquidityFee + sellJackpotFee (contracts/Eggpot.sol#289)
Eggpot.updateJackpotTimeCooldown(uint256) (contracts/Eggpot.sol#503-506) should emit an event for:
- timeBetweenBuysForJackpot = timeInMinutes * 60 (contracts/Eggpot.sol#505)
Eggpot.updatePercentForJackpot(uint256) (contracts/Eggpot.sol#508-511) should emit an event for:
- percentForJackpot = percent (contracts/Eggpot.sol#510)
Eggpot.updateMinBuyToTriggerReward(uint256) (contracts/Eggpot.sol#513-515) should emit an event for:
- minBuyAmount = minBuy (contracts/Eggpot.sol#514)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in Eggpot.constructor() (contracts/Eggpot.sol#100-153):
External calls:
- lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(address(this),dexRouter.WETH()) (contracts/Eggpot.sol#106-109)
State variables written after the call(s):
- _createInitialSupply(newOwner,totalSupply) (contracts/Eggpot.sol#150)
- _balances[account] += amount (contracts/token/ERC20.sol#152)
- excludeFromFees(newOwner,true) (contracts/Eggpot.sol#143)
- _isExcludedFromFees[account] = excluded (contracts/Eggpot.sol#303)
- excludeFromFees(msg.sender,true) (contracts/Eggpot.sol#144)
- _isExcludedFromFees[account] = excluded (contracts/Eggpot.sol#303)
- excludeFromFees(operationsAddress,true) (contracts/Eggpot.sol#145)
- _isExcludedFromFees[account] = excluded (contracts/Eggpot.sol#303)
- excludeFromFees(address(this),true) (contracts/Eggpot.sol#146)
- _isExcludedFromFees[account] = excluded (contracts/Eggpot.sol#303)
- excludeFromFees(address(0xdead),true) (contracts/Eggpot.sol#147)
- _isExcludedFromFees[account] = excluded (contracts/Eggpot.sol#303)
- excludeFromFees(address(dexRouter),true) (contracts/Eggpot.sol#148)
- _isExcludedFromFees[account] = excluded (contracts/Eggpot.sol#303)
- _excludeFromMaxTransaction(address(lpPair),true) (contracts/Eggpot.sol#110)
- _isExcludedMaxTransactionAmount[updAds] = isExcluded (contracts/Eggpot.sol#215)
- _setAutomatedMarketMakerPair(address(lpPair),true) (contracts/Eggpot.sol#111)
- _isExcludedMaxTransactionAmount[updAds] = isExcluded (contracts/Eggpot.sol#215)
- _excludeFromMaxTransaction(newOwner,true) (contracts/Eggpot.sol#136)
- _isExcludedMaxTransactionAmount[updAds] = isExcluded (contracts/Eggpot.sol#215)
- _excludeFromMaxTransaction(msg.sender,true) (contracts/Eggpot.sol#137)
- _isExcludedMaxTransactionAmount[updAds] = isExcluded (contracts/Eggpot.sol#215)
- _excludeFromMaxTransaction(operationsAddress,true) (contracts/Eggpot.sol#138)
- _isExcludedMaxTransactionAmount[updAds] = isExcluded (contracts/Eggpot.sol#215)
- _excludeFromMaxTransaction(address(this),true) (contracts/Eggpot.sol#139)
- _isExcludedMaxTransactionAmount[updAds] = isExcluded (contracts/Eggpot.sol#215)
- _excludeFromMaxTransaction(address(0xdead),true) (contracts/Eggpot.sol#140)
- _isExcludedMaxTransactionAmount[updAds] = isExcluded (contracts/Eggpot.sol#215)
- _excludeFromMaxTransaction(address(dexRouter),true) (contracts/Eggpot.sol#141)
- _isExcludedMaxTransactionAmount[updAds] = isExcluded (contracts/Eggpot.sol#215)
- transferOwnership(newOwner) (contracts/Eggpot.sol#152)
- _owner = newOwner (contracts/access/Ownable.sol#37)
- _createInitialSupply(newOwner,totalSupply) (contracts/Eggpot.sol#150)
- _totalSupply += amount (contracts/token/ERC20.sol#151)
- _setAutomatedMarketMakerPair(address(lpPair),true) (contracts/Eggpot.sol#111)
- automatedMarketMakerPairs[pair] = value (contracts/Eggpot.sol#262)
- buyJackpotFee = 0 (contracts/Eggpot.sol#124)
- buyLiquidityFee = 0 (contracts/Eggpot.sol#123)
- buyOperationsFee = 0 (contracts/Eggpot.sol#122)
- buyTotalFees = buyOperationsFee + buyLiquidityFee + buyJackpotFee (contracts/Eggpot.sol#125)
- maxBuyAmount = (totalSupply * 4) / 1000 (contracts/Eggpot.sol#117)
- maxSellAmount = (totalSupply * 4) / 1000 (contracts/Eggpot.sol#118)
- maxWalletAmount = (totalSupply * 55) / 10000 (contracts/Eggpot.sol#119)
- operationsAddress = address(0x96fADA4e4e823570F3eE8B678DD3314E31858894) (contracts/Eggpot.sol#113)
- originalSellJackpotFee = 700 (contracts/Eggpot.sol#129)
- originalSellLiquidityFee = 0 (contracts/Eggpot.sol#128)
- originalSellOperationsFee = 400 (contracts/Eggpot.sol#127)
- sellJackpotFee = 1000 (contracts/Eggpot.sol#133)
- sellLiquidityFee = 0 (contracts/Eggpot.sol#132)
- sellOperationsFee = 500 (contracts/Eggpot.sol#131)
- sellTotalFees = sellOperationsFee + sellLiquidityFee + sellJackpotFee (contracts/Eggpot.sol#134)
- swapTokensAtAmount = (totalSupply * 20) / 100000 (contracts/Eggpot.sol#120)
Reentrancy in Eggpot.forceSwapBack() (contracts/Eggpot.sol#630-639):
External calls:
- swapBack() (contracts/Eggpot.sol#636)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Eggpot.sol#530-536)
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
External calls sending eth:
- swapBack() (contracts/Eggpot.sol#636)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
State variables written after the call(s):
- swapping = false (contracts/Eggpot.sol#637)
Reentrancy in Eggpot.swapBack() (contracts/Eggpot.sol#554-603):
External calls:
- swapTokensForEth(contractBalance - liquidityTokens) (contracts/Eggpot.sol#576)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Eggpot.sol#530-536)
- addLiquidity(liquidityTokens,ethForLiquidity) (contracts/Eggpot.sol#593)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
External calls sending eth:
- addLiquidity(liquidityTokens,ethForLiquidity) (contracts/Eggpot.sol#593)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
State variables written after the call(s):
- addLiquidity(liquidityTokens,ethForLiquidity) (contracts/Eggpot.sol#593)
- _allowances[owner][spender] = amount (contracts/token/ERC20.sol#164)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Eggpot._transfer(address,address,uint256) (contracts/Eggpot.sol#307-429):
External calls:
- swapBack() (contracts/Eggpot.sol#365)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Eggpot.sol#530-536)
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
- payoutRewards(to) (contracts/Eggpot.sol#401)
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#471)
External calls sending eth:
- swapBack() (contracts/Eggpot.sol#365)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
- payoutRewards(to) (contracts/Eggpot.sol#401)
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#471)
Event emitted after the call(s):
- JackpotTriggered(winnings,winner) (contracts/Eggpot.sol#475)
- payoutRewards(to) (contracts/Eggpot.sol#401)
Reentrancy in Eggpot._transfer(address,address,uint256) (contracts/Eggpot.sol#307-429):
External calls:
- swapBack() (contracts/Eggpot.sol#365)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Eggpot.sol#530-536)
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
- payoutRewards(to) (contracts/Eggpot.sol#401)
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#471)
- gasBurn() (contracts/Eggpot.sol#403)
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#455)
External calls sending eth:
- swapBack() (contracts/Eggpot.sol#365)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
- payoutRewards(to) (contracts/Eggpot.sol#401)
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#471)
- gasBurn() (contracts/Eggpot.sol#403)
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#455)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (contracts/token/ERC20.sol#142)
- super._transfer(from,address(this),fees) (contracts/Eggpot.sol#422)
- Transfer(sender,recipient,amount) (contracts/token/ERC20.sol#142)
- super._transfer(from,to,amount) (contracts/Eggpot.sol#428)
Reentrancy in Eggpot.constructor() (contracts/Eggpot.sol#100-153):
External calls:
- lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(address(this),dexRouter.WETH()) (contracts/Eggpot.sol#106-109)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (contracts/Eggpot.sol#304)
- excludeFromFees(address(this),true) (contracts/Eggpot.sol#146)
- ExcludeFromFees(account,excluded) (contracts/Eggpot.sol#304)
- excludeFromFees(address(0xdead),true) (contracts/Eggpot.sol#147)
- ExcludeFromFees(account,excluded) (contracts/Eggpot.sol#304)
- excludeFromFees(address(dexRouter),true) (contracts/Eggpot.sol#148)
- ExcludeFromFees(account,excluded) (contracts/Eggpot.sol#304)
- excludeFromFees(newOwner,true) (contracts/Eggpot.sol#143)
- ExcludeFromFees(account,excluded) (contracts/Eggpot.sol#304)
- excludeFromFees(operationsAddress,true) (contracts/Eggpot.sol#145)
- ExcludeFromFees(account,excluded) (contracts/Eggpot.sol#304)
- excludeFromFees(msg.sender,true) (contracts/Eggpot.sol#144)
- MaxTransactionExclusion(updAds,isExcluded) (contracts/Eggpot.sol#216)
- _excludeFromMaxTransaction(address(0xdead),true) (contracts/Eggpot.sol#140)
- MaxTransactionExclusion(updAds,isExcluded) (contracts/Eggpot.sol#216)
- _excludeFromMaxTransaction(address(this),true) (contracts/Eggpot.sol#139)
- MaxTransactionExclusion(updAds,isExcluded) (contracts/Eggpot.sol#216)
- _excludeFromMaxTransaction(operationsAddress,true) (contracts/Eggpot.sol#138)
- MaxTransactionExclusion(updAds,isExcluded) (contracts/Eggpot.sol#216)
- _setAutomatedMarketMakerPair(address(lpPair),true) (contracts/Eggpot.sol#111)
- MaxTransactionExclusion(updAds,isExcluded) (contracts/Eggpot.sol#216)
- _excludeFromMaxTransaction(address(lpPair),true) (contracts/Eggpot.sol#110)
- MaxTransactionExclusion(updAds,isExcluded) (contracts/Eggpot.sol#216)
- _excludeFromMaxTransaction(address(dexRouter),true) (contracts/Eggpot.sol#141)
- MaxTransactionExclusion(updAds,isExcluded) (contracts/Eggpot.sol#216)
- _excludeFromMaxTransaction(msg.sender,true) (contracts/Eggpot.sol#137)
- MaxTransactionExclusion(updAds,isExcluded) (contracts/Eggpot.sol#216)
- _excludeFromMaxTransaction(newOwner,true) (contracts/Eggpot.sol#136)
- OwnershipTransferred(_owner,newOwner) (contracts/access/Ownable.sol#36)
- transferOwnership(newOwner) (contracts/Eggpot.sol#152)
- SetAutomatedMarketMakerPair(pair,value) (contracts/Eggpot.sol#266)
- _setAutomatedMarketMakerPair(address(lpPair),true) (contracts/Eggpot.sol#111)
- Transfer(address(0),account,amount) (contracts/token/ERC20.sol#153)
- _createInitialSupply(newOwner,totalSupply) (contracts/Eggpot.sol#150)
Reentrancy in Eggpot.forceSwapBack() (contracts/Eggpot.sol#630-639):
External calls:
- swapBack() (contracts/Eggpot.sol#636)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Eggpot.sol#530-536)
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
External calls sending eth:
- swapBack() (contracts/Eggpot.sol#636)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
Event emitted after the call(s):
- OwnerForcedSwapBack(block.timestamp) (contracts/Eggpot.sol#638)
Reentrancy in Eggpot.payoutRewards(address) (contracts/Eggpot.sol#459-478):
External calls:
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#471)
Event emitted after the call(s):
- JackpotTriggered(winnings,winner) (contracts/Eggpot.sol#475)
Reentrancy in Eggpot.swapBack() (contracts/Eggpot.sol#554-603):
External calls:
- swapTokensForEth(contractBalance - liquidityTokens) (contracts/Eggpot.sol#576)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Eggpot.sol#530-536)
- addLiquidity(liquidityTokens,ethForLiquidity) (contracts/Eggpot.sol#593)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
External calls sending eth:
- addLiquidity(liquidityTokens,ethForLiquidity) (contracts/Eggpot.sol#593)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (contracts/Eggpot.sol#544-551)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/token/ERC20.sol#165)
- addLiquidity(liquidityTokens,ethForLiquidity) (contracts/Eggpot.sol#593)
Reentrancy in Eggpot.transferForeignToken(address,address) (contracts/Eggpot.sol#605-615):
External calls:
- _sent = IERC20(_token).transfer(_to,_contractBalance) (contracts/Eggpot.sol#613)
Event emitted after the call(s):
- TransferForeignToken(_token,_contractBalance) (contracts/Eggpot.sol#614)
Apply the check-effects-interactions pattern.
Additional information: link
Eggpot._transfer(address,address,uint256) (contracts/Eggpot.sol#307-429) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp >= lastBuyTimestamp + timeBetweenBuysForJackpot && address(this).balance > 100000000000000000 && buyerList.length >= numberOfBuysForJackpot (contracts/Eggpot.sol#397-399)
Avoid relying on block.timestamp.
Additional information: link
EnumerableSet.values(EnumerableSet.AddressSet) (contracts/utils/EnumerableSet.sol#106-120) uses assembly
- INLINE ASM (contracts/utils/EnumerableSet.sol#115-117)
Do not use evm assembly.
Additional information: link
Context._msgData() (contracts/utils/Context.sol#9-12) is never used and should be removed
EnumerableSet._add(EnumerableSet.Set,bytes32) (contracts/utils/EnumerableSet.sol#10-18) is never used and should be removed
EnumerableSet._at(EnumerableSet.Set,uint256) (contracts/utils/EnumerableSet.sol#55-57) is never used and should be removed
EnumerableSet._contains(EnumerableSet.Set,bytes32) (contracts/utils/EnumerableSet.sol#43-49) is never used and should be removed
EnumerableSet._length(EnumerableSet.Set) (contracts/utils/EnumerableSet.sol#51-53) is never used and should be removed
EnumerableSet._remove(EnumerableSet.Set,bytes32) (contracts/utils/EnumerableSet.sol#20-41) is never used and should be removed
EnumerableSet._values(EnumerableSet.Set) (contracts/utils/EnumerableSet.sol#59-61) is never used and should be removed
EnumerableSet.add(EnumerableSet.AddressSet,address) (contracts/utils/EnumerableSet.sol#69-71) is never used and should be removed
EnumerableSet.at(EnumerableSet.AddressSet,uint256) (contracts/utils/EnumerableSet.sol#98-104) is never used and should be removed
EnumerableSet.contains(EnumerableSet.AddressSet,address) (contracts/utils/EnumerableSet.sol#83-89) is never used and should be removed
EnumerableSet.length(EnumerableSet.AddressSet) (contracts/utils/EnumerableSet.sol#94-96) is never used and should be removed
EnumerableSet.remove(EnumerableSet.AddressSet,address) (contracts/utils/EnumerableSet.sol#73-78) is never used and should be removed
EnumerableSet.values(EnumerableSet.AddressSet) (contracts/utils/EnumerableSet.sol#106-120) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version0.8.15 (contracts/Eggpot.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version0.8.15 (contracts/access/Ownable.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version0.8.15 (contracts/interface/IERC20.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version0.8.15 (contracts/interface/IUniswapV2Factory.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version0.8.15 (contracts/interface/IUniswapV2Pair.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version0.8.15 (contracts/interface/IUniswapV2Router02.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version0.8.15 (contracts/token/ERC20.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version0.8.15 (contracts/utils/Context.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version0.8.15 (contracts/utils/EnumerableSet.sol#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.15 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 Eggpot.gasBurn() (contracts/Eggpot.sol#442-457):
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#455)
Low level call in Eggpot.payoutRewards(address) (contracts/Eggpot.sol#459-478):
- (success,None) = address(winner).call{value: winnings}() (contracts/Eggpot.sol#471)
Low level call in Eggpot.swapBack() (contracts/Eggpot.sol#554-603):
- (success,None) = address(operationsAddress).call{value: ethForOperations}() (contracts/Eggpot.sol#597-599)
Low level call in Eggpot.withdrawStuckETH() (contracts/Eggpot.sol#618-622):
- (success,None) = address(owner()).call{value: address(this).balance}() (contracts/Eggpot.sol#620)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter Eggpot.addPresaleAddressForExclusions(address)._presaleAddress (contracts/Eggpot.sol#158) is not in mixedCase
Parameter Eggpot.updateBuyFees(uint256,uint256,uint256)._operationsFee (contracts/Eggpot.sol#270) is not in mixedCase
Parameter Eggpot.updateBuyFees(uint256,uint256,uint256)._liquidityFee (contracts/Eggpot.sol#271) is not in mixedCase
Parameter Eggpot.updateBuyFees(uint256,uint256,uint256)._jackpotFee (contracts/Eggpot.sol#272) is not in mixedCase
Parameter Eggpot.updateSellFees(uint256,uint256,uint256)._operationsFee (contracts/Eggpot.sol#282) is not in mixedCase
Parameter Eggpot.updateSellFees(uint256,uint256,uint256)._liquidityFee (contracts/Eggpot.sol#283) is not in mixedCase
Parameter Eggpot.updateSellFees(uint256,uint256,uint256)._jackpotFee (contracts/Eggpot.sol#284) is not in mixedCase
Parameter Eggpot.transferForeignToken(address,address)._token (contracts/Eggpot.sol#605) is not in mixedCase
Parameter Eggpot.transferForeignToken(address,address)._to (contracts/Eggpot.sol#605) is not in mixedCase
Parameter Eggpot.setOperationsAddress(address)._operationsAddress (contracts/Eggpot.sol#624) is not in mixedCase
Variable Eggpot._isExcludedFromFees (contracts/Eggpot.sol#63) is not in mixedCase
Variable Eggpot._isExcludedMaxTransactionAmount (contracts/Eggpot.sol#64) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (contracts/interface/IUniswapV2Pair.sol#30) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/interface/IUniswapV2Pair.sol#32) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/interface/IUniswapV2Pair.sol#46) is not in mixedCase
Function IUniswapV2Router02.WETH() (contracts/interface/IUniswapV2Router02.sol#7) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (contracts/utils/Context.sol#10)" inContext (contracts/utils/Context.sol#4-13)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Eggpot.constructor() (contracts/Eggpot.sol#100-153) uses literals with too many digits:
- swapTokensAtAmount = (totalSupply * 20) / 100000 (contracts/Eggpot.sol#120)
Eggpot.updateSwapTokensAtAmount(uint256) (contracts/Eggpot.sol#208-212) uses literals with too many digits:
- require(bool)(newAmount >= (totalSupply() * 1) / 100000) (contracts/Eggpot.sol#209)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Eggpot.botsCaught (contracts/Eggpot.sol#37) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
name() should be declared external:
- ERC20.name() (contracts/token/ERC20.sol#22-24)
symbol() should be declared external:
- ERC20.symbol() (contracts/token/ERC20.sol#26-28)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (contracts/token/ERC20.sol#48-56)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (contracts/token/ERC20.sol#58-66)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (contracts/token/ERC20.sol#68-76)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (contracts/token/ERC20.sol#78-95)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (contracts/token/ERC20.sol#97-108)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (contracts/token/ERC20.sol#110-125)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
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
Young tokens have high risks of scam / 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 CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts