Elon Bells Token Logo

ElonBells [Elon Bells] Token

About ElonBells

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 23 December 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

ElonBells.swapAndLiquify() (#1071-1098) sends eth to arbitrary user
Dangerous calls:
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
ElonBells.addLiquidity(address,uint256,uint256) (#1116-1129) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ElonBells._transfer(address,address,uint256) (#979-1014):
External calls:
- swapAndLiquify() (#997)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1107-1113)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
External calls sending eth:
- swapAndLiquify() (#997)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1009)
- _rOwned[address(this)] += rLiquidity (#929)
- _rOwned[sender] -= rAmount (#1040)
- _rOwned[recipient] += rTransferAmount (#1047)
- _tokenTransfer(from,to,amount,takeFee) (#1009)
- _rTotal = _rTotal - rFee (#828)
- _tokenTransfer(from,to,amount,takeFee) (#1009)
- _tOwned[address(this)] += tLiquidity (#931)
- _tOwned[sender] -= tAmount (#1043)
- _tOwned[recipient] += tTransferAmount (#1045)
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.

Variable 'ElonBells.swapAndLiquify().sent (#1089)' in ElonBells.swapAndLiquify() (#1071-1098) potentially used before declaration: (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
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

ElonBells.addLiquidity(address,uint256,uint256) (#1116-1129) ignores return value by router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
Ensure that all the return values of the function calls are used.

Additional information: link

ElonBells.allowance(address,address)._owner (#681) shadows:
- Ownable._owner (#37) (state variable)
ElonBells._approve(address,address,uint256)._owner (#956) shadows:
- Ownable._owner (#37) (state variable)
ElonBells.addLiquidity(address,uint256,uint256).owner (#1117) shadows:
- Ownable.owner() (#51-53) (function)
Rename the local variables that shadow another component.

Additional information: link

ElonBells.setMaxWallet(uint256,uint256) (#658-662) should emit an event for:
- maxWallet = (_tTotal * numerator) / divisor (#661)
ElonBells.setMaxBuyTx(uint256,uint256) (#664-668) should emit an event for:
- maxBuyTxAmount = (_tTotal * numerator) / divisor (#667)
ElonBells.setMaxSellTx(uint256,uint256) (#670-674) should emit an event for:
- maxSellTxAmount = (_tTotal * numerator) / divisor (#673)
ElonBells.setTaxFeeThousandth(uint256,uint256) (#767-771) should emit an event for:
- _taxFee = taxFee (#769)
- _taxSellBias = taxSellBias (#770)
ElonBells.setBNBFeeThousandth(uint256,uint256,uint256,uint256) (#773-782) should emit an event for:
- _liquidityFee = _marketingFee + _lpFee + _rewardsFee (#775)
- totalFeesToLP = _lpFee (#777)
- totalFeesToMarketing = _marketingFee (#778)
- _liquiditySellBias = _sellBias (#781)
ElonBells.setAmountToSell(uint256,uint256) (#784-787) should emit an event for:
- minTokenNumberToSell = _tTotal / _divisorMin (#785)
- tokenNumberToSell = _tTotal / _divisorMax (#786)
ElonBells.updateGnosisGas(uint256) (#1067-1069) should emit an event for:
- gnosisGas = _amount (#1068)
Emit an event for critical parameter changes.

Additional information: link

ElonBells.setMarketingWallet(address)._newAddress (#789) lacks a zero-check on :
- marketingWallet = _newAddress (#790)
ElonBells.setGiveawayWallet(address)._newAddress (#792) lacks a zero-check on :
- rewardsWallet = _newAddress (#793)
Check that the address is not zero.

Additional information: link

ElonBells.swapTokensForEth(uint256) (#1100-1114) has external calls inside a loop: path[1] = router.WETH() (#1105)
ElonBells.swapTokensForEth(uint256) (#1100-1114) has external calls inside a loop: router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1107-1113)
ElonBells.addLiquidity(address,uint256,uint256) (#1116-1129) has external calls inside a loop: router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
ElonBells.swapAndLiquify() (#1071-1098) has external calls inside a loop: (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
ElonBells.swapAndLiquify() (#1071-1098) has external calls inside a loop: (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
ElonBells._transfer(address,address,uint256) (#979-1014) has external calls inside a loop: antisnipe.onPreTransferCheck(from,to,amount) (#1012)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in ElonBells._transfer(address,address,uint256) (#979-1014):
External calls:
- swapAndLiquify() (#997)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1107-1113)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
External calls sending eth:
- swapAndLiquify() (#997)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1009)
- _tFeeTotal = _tFeeTotal + tFee (#829)
Reentrancy in ElonBells.constructor() (#573-602):
External calls:
- pair = IPancakeFactory(router.factory()).createPair(address(this),router.WETH()) (#581-584)
State variables written after the call(s):
- _approve(address(this),routerAddress,_tTotal) (#598)
- _allowances[_owner][spender] = amount (#963)
- _approve(0x5A37b1383EbaeeC67685Ce18B005bE7b7Ed83f42,routerAddress,_tTotal) (#599)
- _allowances[_owner][spender] = amount (#963)
- _excluded.push(address(this)) (#594)
- _excluded.push(pair) (#596)
- _isExcludedFromRewards[address(this)] = true (#593)
- _isExcludedFromRewards[pair] = true (#595)
- _liqProvWhitelist[msg.sender] = true (#588)
- _liqProvWhitelist[0x5A37b1383EbaeeC67685Ce18B005bE7b7Ed83f42] = true (#590)
- _taxWhitelist[msg.sender] = true (#587)
- _taxWhitelist[0x5A37b1383EbaeeC67685Ce18B005bE7b7Ed83f42] = true (#589)
- _taxWhitelist[address(this)] = true (#591)
- liquidityPools[pair] = true (#585)
Reentrancy in ElonBells.transferFrom(address,address,uint256) (#703-715):
External calls:
- _transfer(sender,recipient,amount) (#708)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1107-1113)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
- antisnipe.onPreTransferCheck(from,to,amount) (#1012)
External calls sending eth:
- _transfer(sender,recipient,amount) (#708)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#709-713)
- _allowances[_owner][spender] = amount (#963)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ElonBells._transfer(address,address,uint256) (#979-1014):
External calls:
- swapAndLiquify() (#997)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1107-1113)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
External calls sending eth:
- swapAndLiquify() (#997)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1054)
- _tokenTransfer(from,to,amount,takeFee) (#1009)
Reentrancy in ElonBells.constructor() (#573-602):
External calls:
- pair = IPancakeFactory(router.factory()).createPair(address(this),router.WETH()) (#581-584)
Event emitted after the call(s):
- Approval(_owner,spender,amount) (#964)
- _approve(0x5A37b1383EbaeeC67685Ce18B005bE7b7Ed83f42,routerAddress,_tTotal) (#599)
- Approval(_owner,spender,amount) (#964)
- _approve(address(this),routerAddress,_tTotal) (#598)
- Transfer(address(0),0x5A37b1383EbaeeC67685Ce18B005bE7b7Ed83f42,_tTotal) (#601)
Reentrancy in ElonBells.swapAndLiquify() (#1071-1098):
External calls:
- swapTokensForEth(amountToSwap - tokensForLP) (#1076-1078)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1107-1113)
- addLiquidity(burnAddress,tokensForLP,bnbToBeAddedToLiquidity) (#1085)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
External calls sending eth:
- addLiquidity(burnAddress,tokensForLP,bnbToBeAddedToLiquidity) (#1085)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
Event emitted after the call(s):
- SwapAndLiquify(amountToSwap,deltaBalance,tokensForLP) (#1097)
Reentrancy in ElonBells.transferFrom(address,address,uint256) (#703-715):
External calls:
- _transfer(sender,recipient,amount) (#708)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1107-1113)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
- antisnipe.onPreTransferCheck(from,to,amount) (#1012)
External calls sending eth:
- _transfer(sender,recipient,amount) (#708)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1121-1128)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
Event emitted after the call(s):
- Approval(_owner,spender,amount) (#964)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#709-713)
Apply the check-effects-interactions pattern.

Additional information: link

ElonBells.calculateLiquidityFee(uint256,bool) (#940-943) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp < launchedTime + sellPeriod (#942)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#156-166) uses assembly
- INLINE ASM (#162-164)
Address.verifyCallResult(bool,bytes,string) (#325-345) uses assembly
- INLINE ASM (#337-340)
Do not use evm assembly.

Additional information: link

ElonBells.includeInReward(address) (#645-656) has costly operations inside a loop:
- _excluded.pop() (#652)
ElonBells._transfer(address,address,uint256) (#979-1014) has costly operations inside a loop:
- liquidityLaunched = true (#990)
ElonBells._transfer(address,address,uint256) (#979-1014) has costly operations inside a loop:
- launchedTime = block.timestamp (#991)
ElonBells.swapping() (#566) has costly operations inside a loop:
- inSwap = true (#566)
ElonBells.swapping() (#566) has costly operations inside a loop:
- inSwap = false (#566)
ElonBells._reflectFee(uint256,uint256) (#827-830) has costly operations inside a loop:
- _rTotal = _rTotal - rFee (#828)
ElonBells._reflectFee(uint256,uint256) (#827-830) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal + tFee (#829)
Use a local variable to hold the loop computation result.

Additional information: link

Address.functionCall(address,bytes) (#209-211) is never used and should be removed
Address.functionCall(address,bytes,string) (#219-225) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#238-244) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#252-263) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#298-300) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#308-317) is never used and should be removed
Address.functionStaticCall(address,bytes) (#271-273) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#281-290) is never used and should be removed
Address.isContract(address) (#156-166) is never used and should be removed
Address.sendValue(address,uint256) (#184-189) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#325-345) is never used and should be removed
Context._msgData() (#19-21) is never used and should be removed
Remove unused functions.

Additional information: link

ElonBells._tTotal (#515) is set pre-construction with a non-constant function or state variable:
- 1_000_000_000_000_000 * (10 ** _decimals)
ElonBells._rTotal (#516) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ElonBells.maxWallet (#517) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 2) / 100
ElonBells.maxBuyTxAmount (#518) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 3) / 214
ElonBells.maxSellTxAmount (#519) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 3) / 214
ElonBells.minTokenNumberToSell (#541) is set pre-construction with a non-constant function or state variable:
- _tTotal / 100000
ElonBells.tokenNumberToSell (#542) 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 (#1) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
solc-0.8.10 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 Address.sendValue(address,uint256) (#184-189):
- (success) = recipient.call{value: amount}() (#187)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#252-263):
- (success,returndata) = target.call{value: value}(data) (#261)
Low level call in Address.functionStaticCall(address,bytes,string) (#281-290):
- (success,returndata) = target.staticcall(data) (#288)
Low level call in Address.functionDelegateCall(address,bytes,string) (#308-317):
- (success,returndata) = target.delegatecall(data) (#315)
Low level call in ElonBells.swapAndLiquify() (#1071-1098):
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1089)
- (sent) = rewardsWallet.call{gas: gnosisGas,value: bnbToBeAddedToGiveaway}() (#1094)
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() (#350) is not in mixedCase
Parameter ElonBells.setTeamMember(address,bool)._team (#625) is not in mixedCase
Parameter ElonBells.setTeamMember(address,bool)._enabled (#625) is not in mixedCase
Parameter ElonBells.allowance(address,address)._owner (#681) is not in mixedCase
Parameter ElonBells.currentReflection(address)._wallet (#753) is not in mixedCase
Parameter ElonBells.setBNBFeeThousandth(uint256,uint256,uint256,uint256)._marketingFee (#773) is not in mixedCase
Parameter ElonBells.setBNBFeeThousandth(uint256,uint256,uint256,uint256)._lpFee (#773) is not in mixedCase
Parameter ElonBells.setBNBFeeThousandth(uint256,uint256,uint256,uint256)._rewardsFee (#773) is not in mixedCase
Parameter ElonBells.setBNBFeeThousandth(uint256,uint256,uint256,uint256)._sellBias (#773) is not in mixedCase
Parameter ElonBells.setAmountToSell(uint256,uint256)._divisorMin (#784) is not in mixedCase
Parameter ElonBells.setAmountToSell(uint256,uint256)._divisorMax (#784) is not in mixedCase
Parameter ElonBells.setMarketingWallet(address)._newAddress (#789) is not in mixedCase
Parameter ElonBells.setGiveawayWallet(address)._newAddress (#792) is not in mixedCase
Parameter ElonBells.setLiqidityProviderWhitelisted(address,bool)._address (#796) is not in mixedCase
Parameter ElonBells.setLiqidityProviderWhitelisted(address,bool)._whitelisted (#796) is not in mixedCase
Parameter ElonBells.getLPWhitelisted(address)._account (#805) is not in mixedCase
Parameter ElonBells.setSwapAndLiquifyEnabled(bool)._enabled (#809) is not in mixedCase
Parameter ElonBells.updateRouter(address,address)._router (#819) is not in mixedCase
Parameter ElonBells.updateRouter(address,address)._pair (#819) is not in mixedCase
Function ElonBells._getRate() (#903-906) is not in mixedCase
Parameter ElonBells.calculateTaxFee(uint256,bool)._amount (#935) is not in mixedCase
Parameter ElonBells.calculateLiquidityFee(uint256,bool)._amount (#940) is not in mixedCase
Parameter ElonBells.setProtection(IAntiSnipe)._protection (#967) is not in mixedCase
Parameter ElonBells.setProtectionEnabled(bool)._enable (#971) is not in mixedCase
Parameter ElonBells.setAutoStart(bool)._enable (#975) is not in mixedCase
Parameter ElonBells.updateGnosisGas(uint256)._amount (#1067) is not in mixedCase
Parameter ElonBells.airdrop(address[],uint256[])._addresses (#1131) is not in mixedCase
Parameter ElonBells.airdrop(address[],uint256[])._amount (#1131) is not in mixedCase
Variable ElonBells._taxFee (#530) is not in mixedCase
Variable ElonBells._taxSellBias (#531) is not in mixedCase
Variable ElonBells._liquidityFee (#536) is not in mixedCase
Variable ElonBells._liquiditySellBias (#537) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#355) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#356)
Variable ElonBells._getValues(uint256,bool,bool).rTransferAmount (#851) is too similar to ElonBells._getTValues(uint256,bool,bool).tTransferAmount (#878)
Variable ElonBells._getValues(uint256,bool,bool).rTransferAmount (#851) is too similar to ElonBells._getValues(uint256,bool,bool).tTransferAmount (#846)
Variable ElonBells._transferStandard(address,address,uint256,bool).rTransferAmount (#1033) is too similar to ElonBells._transferStandard(address,address,uint256,bool).tTransferAmount (#1035)
Variable ElonBells._transferStandard(address,address,uint256,bool).rTransferAmount (#1033) is too similar to ElonBells._getTValues(uint256,bool,bool).tTransferAmount (#878)
Variable ElonBells._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to ElonBells._transferStandard(address,address,uint256,bool).tTransferAmount (#1035)
Variable ElonBells._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to ElonBells._getTValues(uint256,bool,bool).tTransferAmount (#878)
Variable ElonBells._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#899) is too similar to ElonBells._getValues(uint256,bool,bool).tTransferAmount (#846)
Variable ElonBells._transferStandard(address,address,uint256,bool).rTransferAmount (#1033) is too similar to ElonBells._getValues(uint256,bool,bool).tTransferAmount (#846)
Variable ElonBells._getValues(uint256,bool,bool).rTransferAmount (#851) is too similar to ElonBells._transferStandard(address,address,uint256,bool).tTransferAmount (#1035)
Prevent variables from having similar names.

Additional information: link

ElonBells.slitherConstructorVariables() (#493-1147) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#522)
ElonBells.slitherConstructorVariables() (#493-1147) uses literals with too many digits:
- minTokenNumberToSell = _tTotal / 100000 (#541)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ElonBells._decimals (#498) should be constant
ElonBells._name (#496) should be constant
ElonBells._symbol (#497) should be constant
ElonBells.burnAddress (#522) should be constant
ElonBells.sellIncrease (#538) should be constant
ElonBells.sellPeriod (#539) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#70-72)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#78-81)
name() should be declared external:
- ElonBells.name() (#604-606)
symbol() should be declared external:
- ElonBells.symbol() (#608-610)
decimals() should be declared external:
- ElonBells.decimals() (#612-614)
totalSupply() should be declared external:
- ElonBells.totalSupply() (#616-618)
isExcludedFromReward(address) should be declared external:
- ElonBells.isExcludedFromReward(address) (#629-631)
allowance(address,address) should be declared external:
- ElonBells.allowance(address,address) (#681-687)
totalFees() should be declared external:
- ElonBells.totalFees() (#689-691)
approve(address,uint256) should be declared external:
- ElonBells.approve(address,uint256) (#693-696)
transfer(address,uint256) should be declared external:
- ElonBells.transfer(address,uint256) (#698-701)
transferFrom(address,address,uint256) should be declared external:
- ElonBells.transferFrom(address,address,uint256) (#703-715)
increaseAllowance(address,uint256) should be declared external:
- ElonBells.increaseAllowance(address,uint256) (#717-728)
decreaseAllowance(address,uint256) should be declared external:
- ElonBells.decreaseAllowance(address,uint256) (#730-741)
setTaxWhitelisted(address,bool) should be declared external:
- ElonBells.setTaxWhitelisted(address,bool) (#762-765)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ElonBells.setSwapAndLiquifyEnabled(bool) (#809-812)
isWhitelisted(address) should be declared external:
- ElonBells.isWhitelisted(address) (#945-947)
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.


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.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for ElonBells