egoD IS AN HYPER DEFLATIONARY TOKEN MADE FOR THE COMMUNITY WHICH GUARANTEES REWARDS TO ITS HOLDERS WHILE DECREASING THE SUPPLY THROUGH AN AUTOBURN FUNCTION.
egoD, also known as egoD, has been created with the goal to guarantee its holders a steady passive income over time thanks to the reflection tax. A bullish meme created for the community by the community
Egod.swapAndLiquify(address) (#1133-1162) sends eth to arbitrary user
Dangerous calls:
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
Egod.addLiquidity(address,address,uint256,uint256) (#1181-1195) sends eth to arbitrary user
Dangerous calls:
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in Egod._transfer(address,address,uint256) (#1003-1033):
External calls:
- swapAndLiquify(to) (#1020)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1172-1178)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
External calls sending eth:
- swapAndLiquify(to) (#1020)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _liquidityFee = _previousLiquidityFee (#970)
- _liquidityFee = 0 (#964)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _rOwned[address(this)] += rLiquidity (#930)
- _rOwned[sender] -= rAmount (#1081)
- _rOwned[burnAddress] += rBurn (#935)
- _rOwned[recipient] += rTransferAmount (#1086)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _rTotal = _rTotal - rFee (#828)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _tOwned[address(this)] += tLiquidity (#932)
- _tOwned[sender] -= tAmount (#1083)
- _tOwned[recipient] += tTransferAmount (#1085)
- _tOwned[burnAddress] += tBurn (#937)
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.
Contract ownership is not renounced (belongs to a wallet)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#75-77)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#83-86)
name() should be declared external:
- Egod.name() (#625-627)
symbol() should be declared external:
- Egod.symbol() (#629-631)
decimals() should be declared external:
- Egod.decimals() (#633-635)
totalSupply() should be declared external:
- Egod.totalSupply() (#637-639)
isExcludedFromReward(address) should be declared external:
- Egod.isExcludedFromReward(address) (#650-652)
allowance(address,address) should be declared external:
- Egod.allowance(address,address) (#680-686)
totalFees() should be declared external:
- Egod.totalFees() (#688-690)
approve(address,uint256) should be declared external:
- Egod.approve(address,uint256) (#692-695)
transfer(address,uint256) should be declared external:
- Egod.transfer(address,uint256) (#697-700)
transferFrom(address,address,uint256) should be declared external:
- Egod.transferFrom(address,address,uint256) (#702-714)
increaseAllowance(address,uint256) should be declared external:
- Egod.increaseAllowance(address,uint256) (#716-727)
decreaseAllowance(address,uint256) should be declared external:
- Egod.decreaseAllowance(address,uint256) (#729-740)
setAccountWhitelisted(address,bool) should be declared external:
- Egod.setAccountWhitelisted(address,bool) (#752-755)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Egod.setSwapAndLiquifyEnabled(bool) (#803-806)
isWhitelisted(address) should be declared external:
- Egod.isWhitelisted(address) (#974-976)
excludeFromFee(address) should be declared external:
- Egod.excludeFromFee(address) (#1105-1107)
includeInFee(address) should be declared external:
- Egod.includeInFee(address) (#1109-1111)
manage_blacklist(address[],bool) should be declared external:
- Egod.manage_blacklist(address[],bool) (#1117-1121)
setMaxTxPercent(uint256) should be declared external:
- Egod.setMaxTxPercent(uint256) (#1123-1126)
setMaxWalletPercent(uint256) should be declared external:
- Egod.setMaxWalletPercent(uint256) (#1128-1131)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract ticker (egoĐ) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
Egod._takeLiquidity(uint256) (#923-941) performs a multiplication on the result of a division:
-tBurn = (tLiquidity * totalFeesToBurn) / _liquidityFee (#926)
-rBurn = tBurn * currentRate (#927)
Consider ordering multiplication before division.
Additional information: link
Egod.manage_blacklist(address[],bool).i (#1118) 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
Egod.addLiquidity(address,address,uint256,uint256) (#1181-1195) ignores return value by markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
Ensure that all the return values of the function calls are used.
Additional information: link
Egod.allowance(address,address)._owner (#680) shadows:
- Ownable._owner (#42) (state variable)
Egod._approve(address,address,uint256)._owner (#984) shadows:
- Ownable._owner (#42) (state variable)
Egod.addLiquidity(address,address,uint256,uint256).owner (#1183) shadows:
- Ownable.owner() (#56-58) (function)
Rename the local variables that shadow another component.
Additional information: link
Egod.setTaxFeePercent(uint256) (#757-761) should emit an event for:
- _taxFee = taxFee (#759)
- _previousTaxFee = _taxFee (#760)
Egod.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256) (#763-775) should emit an event for:
- _liquidityFee = totalBNBFee (#764)
- _previousLiquidityFee = _liquidityFee (#765)
- totalFeesToLP = _lpFee (#767)
- totalFeesToBurn = _burnFee (#769)
- sellBias = _sellbias (#771)
- previousSellBias = sellBias (#772)
Egod.setAmountToSell(uint256) (#777-779) should emit an event for:
- minTokenNumberToSell = _tTotal / _divisor (#778)
Egod.updateGnosisGas(uint256) (#1113-1115) should emit an event for:
- gnosisGas = _amount (#1114)
Egod.setMaxTxPercent(uint256) (#1123-1126) should emit an event for:
- _maxTxAmount = maxTxAmount (#1125)
Egod.setMaxWalletPercent(uint256) (#1128-1131) should emit an event for:
- _maxWalletToken = maxWalletAmount (#1130)
Emit an event for critical parameter changes.
Additional information: link
Egod.constructor(address,address)._marketing (#579) lacks a zero-check on :
- marketingWallet = _marketing (#594)
Egod.constructor(address,address)._liquidity (#579) lacks a zero-check on :
- liquidityWallet = _liquidity (#595)
Egod.setMarketingWallet(address)._newAddress (#781) lacks a zero-check on :
- marketingWallet = _newAddress (#782)
Egod.setLiquidityWallet(address)._newAddress (#785) lacks a zero-check on :
- liquidityWallet = _newAddress (#786)
Check that the address is not zero.
Additional information: link
Egod.swapTokensForEth(address,uint256) (#1164-1179) has external calls inside a loop: path[1] = markets[pair].WETH() (#1170)
Egod.swapTokensForEth(address,uint256) (#1164-1179) has external calls inside a loop: markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1172-1178)
Egod.addLiquidity(address,address,uint256,uint256) (#1181-1195) has external calls inside a loop: markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
Egod.swapAndLiquify(address) (#1133-1162) has external calls inside a loop: (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
Egod._transfer(address,address,uint256) (#1003-1033) has external calls inside a loop: antisnipe.onPreTransferCheck(from,to,amount) (#1031)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in Egod._transfer(address,address,uint256) (#1003-1033):
External calls:
- swapAndLiquify(to) (#1020)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1172-1178)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
External calls sending eth:
- swapAndLiquify(to) (#1020)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _previousLiquidityFee = _liquidityFee (#960)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _previousTaxFee = _taxFee (#959)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _tFeeTotal = _tFeeTotal + tFee (#829)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- _taxFee = _previousTaxFee (#969)
- _taxFee = 0 (#963)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- previousSellBias = sellBias (#961)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- sellBias = previousSellBias (#971)
- sellBias = 0 (#965)
Reentrancy in Egod.addMarket(address) (#813-822):
External calls:
- pair = IPancakeFactory(router.factory()).createPair(address(this),router.WETH()) (#815-818)
State variables written after the call(s):
- excludeFromReward(pair) (#821)
- _excluded.push(account) (#663)
- excludeFromReward(pair) (#821)
- _isExcludedFromRewards[account] = true (#662)
- excludeFromReward(pair) (#821)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#660)
- liquidityPools[pair] = true (#819)
- markets[pair] = router (#820)
Reentrancy in Egod.constructor(address,address) (#579-623):
External calls:
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#587-590)
State variables written after the call(s):
- _approve(address(this),routerAddress,_tTotal) (#615)
- _allowances[_owner][spender] = amount (#991)
- _approve(msg.sender,routerAddress,_tTotal) (#616)
- _allowances[_owner][spender] = amount (#991)
- _excluded.push(address(this)) (#603)
- _excluded.push(burnAddress) (#605)
- _excluded.push(msg.sender) (#607)
- _excluded.push(pancakePair) (#609)
- _isExcludedFromFee[owner()] = true (#612)
- _isExcludedFromFee[address(this)] = true (#613)
- _isExcludedFromRewards[address(this)] = true (#602)
- _isExcludedFromRewards[burnAddress] = true (#604)
- _isExcludedFromRewards[msg.sender] = true (#606)
- _isExcludedFromRewards[pancakePair] = true (#608)
- _liqProvWhitelist[msg.sender] = true (#598)
- _taxWhitelist[msg.sender] = true (#597)
- _taxWhitelist[_marketing] = true (#599)
- _taxWhitelist[address(this)] = true (#600)
- antisnipe = IAntiSnipe(0x8EFDb3b642eb2a20607ffe0A56CFefF6a95Df002) (#618)
- liquidityPools[pancakePair] = true (#591)
- liquidityWallet = _liquidity (#595)
- marketingWallet = _marketing (#594)
- markets[pancakePair] = pancakeRouter (#592)
Reentrancy in Egod.transferFrom(address,address,uint256) (#702-714):
External calls:
- _transfer(sender,recipient,amount) (#707)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1172-1178)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
- antisnipe.onPreTransferCheck(from,to,amount) (#1031)
External calls sending eth:
- _transfer(sender,recipient,amount) (#707)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#708-712)
- _allowances[_owner][spender] = amount (#991)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Egod._transfer(address,address,uint256) (#1003-1033):
External calls:
- swapAndLiquify(to) (#1020)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1172-1178)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
External calls sending eth:
- swapAndLiquify(to) (#1020)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
Event emitted after the call(s):
- Transfer(address(this),burnAddress,tBurn) (#939)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
- Transfer(sender,recipient,tTransferAmount) (#1092)
- _tokenTransfer(from,to,amount,takeFee) (#1028)
Reentrancy in Egod.constructor(address,address) (#579-623):
External calls:
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#587-590)
Event emitted after the call(s):
- Approval(_owner,spender,amount) (#992)
- _approve(msg.sender,routerAddress,_tTotal) (#616)
- Approval(_owner,spender,amount) (#992)
- _approve(address(this),routerAddress,_tTotal) (#615)
Reentrancy in Egod.constructor(address,address) (#579-623):
External calls:
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#587-590)
- antisnipe.setTokenOwner(msg.sender) (#620)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#622)
Reentrancy in Egod.swapAndLiquify(address) (#1133-1162):
External calls:
- swapTokensForEth(to,amountToSwap - tokensForLP) (#1141-1144)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1172-1178)
- addLiquidity(to,liquidityWallet,tokensForLP,bnbToBeAddedToLiquidity) (#1152)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
External calls sending eth:
- addLiquidity(to,liquidityWallet,tokensForLP,bnbToBeAddedToLiquidity) (#1152)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
Event emitted after the call(s):
- SwapAndLiquify(amountToSwap,deltaBalance,tokensForLP) (#1161)
Reentrancy in Egod.transferFrom(address,address,uint256) (#702-714):
External calls:
- _transfer(sender,recipient,amount) (#707)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1172-1178)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
- antisnipe.onPreTransferCheck(from,to,amount) (#1031)
External calls sending eth:
- _transfer(sender,recipient,amount) (#707)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1187-1194)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
Event emitted after the call(s):
- Approval(_owner,spender,amount) (#992)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#708-712)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#161-171) uses assembly
- INLINE ASM (#167-169)
Address.verifyCallResult(bool,bytes,string) (#330-350) uses assembly
- INLINE ASM (#342-345)
Do not use evm assembly.
Additional information: link
Egod.includeInReward(address) (#666-677) has costly operations inside a loop:
- _excluded.pop() (#673)
Egod._transfer(address,address,uint256) (#1003-1033) has costly operations inside a loop:
- liquidityLaunched = true (#1014)
Egod.swapping() (#572) has costly operations inside a loop:
- inSwap = true (#572)
Egod.swapping() (#572) has costly operations inside a loop:
- inSwap = false (#572)
Egod.removeAllFee() (#956-966) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#959)
Egod.removeAllFee() (#956-966) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#960)
Egod.removeAllFee() (#956-966) has costly operations inside a loop:
- previousSellBias = sellBias (#961)
Egod.removeAllFee() (#956-966) has costly operations inside a loop:
- _taxFee = 0 (#963)
Egod.removeAllFee() (#956-966) has costly operations inside a loop:
- _liquidityFee = 0 (#964)
Egod.removeAllFee() (#956-966) has costly operations inside a loop:
- sellBias = 0 (#965)
Egod._reflectFee(uint256,uint256) (#827-830) has costly operations inside a loop:
- _rTotal = _rTotal - rFee (#828)
Egod._reflectFee(uint256,uint256) (#827-830) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal + tFee (#829)
Egod.restoreAllFee() (#968-972) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#969)
Egod.restoreAllFee() (#968-972) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#970)
Egod.restoreAllFee() (#968-972) has costly operations inside a loop:
- sellBias = previousSellBias (#971)
Use a local variable to hold the loop computation result.
Additional information: link
Address.functionCall(address,bytes) (#214-216) is never used and should be removed
Address.functionCall(address,bytes,string) (#224-230) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#243-249) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#257-268) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#303-305) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#313-322) is never used and should be removed
Address.functionStaticCall(address,bytes) (#276-278) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#286-295) is never used and should be removed
Address.isContract(address) (#161-171) is never used and should be removed
Address.sendValue(address,uint256) (#189-194) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#330-350) is never used and should be removed
Context._msgData() (#24-26) is never used and should be removed
Remove unused functions.
Additional information: link
Egod._tTotal (#520) is set pre-construction with a non-constant function or state variable:
- 1_000_000_000 * (10 ** _decimals)
Egod._rTotal (#521) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Egod._maxWalletToken (#523) is set pre-construction with a non-constant function or state variable:
- 10_000_000 * (10 ** _decimals)
Egod._maxTxAmount (#524) is set pre-construction with a non-constant function or state variable:
- 5_000_000 * (10 ** _decimals)
Egod._previousTaxFee (#536) is set pre-construction with a non-constant function or state variable:
- _taxFee
Egod.previousSellBias (#541) is set pre-construction with a non-constant function or state variable:
- sellBias
Egod._previousLiquidityFee (#544) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Egod.minTokenNumberToSell (#546) is set pre-construction with a non-constant function or state variable:
- _tTotal / 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.8.8 (#7) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
solc-0.8.8 is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
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 Address.sendValue(address,uint256) (#189-194):
- (success) = recipient.call{value: amount}() (#192)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#257-268):
- (success,returndata) = target.call{value: value}(data) (#266)
Low level call in Address.functionStaticCall(address,bytes,string) (#286-295):
- (success,returndata) = target.staticcall(data) (#293)
Low level call in Address.functionDelegateCall(address,bytes,string) (#313-322):
- (success,returndata) = target.delegatecall(data) (#320)
Low level call in Egod.swapAndLiquify(address) (#1133-1162):
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1157)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeRouter01.WETH() (#355) is not in mixedCase
Parameter Egod.setTeamMember(address,bool)._team (#646) is not in mixedCase
Parameter Egod.setTeamMember(address,bool)._enabled (#646) is not in mixedCase
Parameter Egod.allowance(address,address)._owner (#680) is not in mixedCase
Parameter Egod.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._marketingFee (#763) is not in mixedCase
Parameter Egod.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._lpFee (#763) is not in mixedCase
Parameter Egod.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._burnFee (#763) is not in mixedCase
Parameter Egod.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._sellbias (#763) is not in mixedCase
Parameter Egod.setAmountToSell(uint256)._divisor (#777) is not in mixedCase
Parameter Egod.setMarketingWallet(address)._newAddress (#781) is not in mixedCase
Parameter Egod.setLiquidityWallet(address)._newAddress (#785) is not in mixedCase
Parameter Egod.setLiqidityProviderWhitelisted(address,bool)._address (#789) is not in mixedCase
Parameter Egod.setLiqidityProviderWhitelisted(address,bool)._whitelisted (#789) is not in mixedCase
Parameter Egod.getLPWhitelisted(address)._account (#799) is not in mixedCase
Parameter Egod.setSwapAndLiquifyEnabled(bool)._enabled (#803) is not in mixedCase
Parameter Egod.addMarket(address)._market (#813) is not in mixedCase
Function Egod._getRate() (#901-904) is not in mixedCase
Parameter Egod.calculateTaxFee(uint256,bool)._amount (#943) is not in mixedCase
Parameter Egod.calculateLiquidityFee(uint256,bool)._amount (#948) is not in mixedCase
Parameter Egod.activateLP(bool)._enabled (#978) is not in mixedCase
Parameter Egod.setProtection(IAntiSnipe)._protection (#995) is not in mixedCase
Parameter Egod.setProtection(bool)._enable (#999) is not in mixedCase
Parameter Egod.updateGnosisGas(uint256)._amount (#1113) is not in mixedCase
Function Egod.manage_blacklist(address[],bool) (#1117-1121) is not in mixedCase
Parameter Egod.airdrop(address[],uint256[])._addresses (#1197) is not in mixedCase
Parameter Egod.airdrop(address[],uint256[])._amount (#1197) is not in mixedCase
Variable Egod._maxWalletToken (#523) is not in mixedCase
Variable Egod._maxTxAmount (#524) is not in mixedCase
Variable Egod._taxFee (#535) is not in mixedCase
Variable Egod._liquidityFee (#543) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#360) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#361)
Variable Egod._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#897) is too similar to Egod._getTValues(uint256,bool).tTransferAmount (#876)
Variable Egod._transferStandard(address,address,uint256).rTransferAmount (#1075) is too similar to Egod._getValues(uint256,bool).tTransferAmount (#845)
Variable Egod._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#897) is too similar to Egod._getValues(uint256,bool).tTransferAmount (#845)
Variable Egod._transferStandard(address,address,uint256).rTransferAmount (#1075) is too similar to Egod._transferStandard(address,address,uint256).tTransferAmount (#1077)
Variable Egod._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#897) is too similar to Egod._transferStandard(address,address,uint256).tTransferAmount (#1077)
Variable Egod._getValues(uint256,bool).rTransferAmount (#849) is too similar to Egod._transferStandard(address,address,uint256).tTransferAmount (#1077)
Variable Egod._getValues(uint256,bool).rTransferAmount (#849) is too similar to Egod._getValues(uint256,bool).tTransferAmount (#845)
Variable Egod._transferStandard(address,address,uint256).rTransferAmount (#1075) is too similar to Egod._getTValues(uint256,bool).tTransferAmount (#876)
Variable Egod._getValues(uint256,bool).rTransferAmount (#849) is too similar to Egod._getTValues(uint256,bool).tTransferAmount (#876)
Prevent variables from having similar names.
Additional information: link
Egod.slitherConstructorVariables() (#498-1212) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#528)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Egod._decimals (#503) should be constant
Egod._name (#501) should be constant
Egod._symbol (#502) should be constant
Egod.burnAddress (#528) should be constant
Egod.protectedFrom (#554) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find KYC or doxxing proof
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
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
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
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account