Traditional Elon Token Logo

TELON [Traditional Elon] Token

About TELON

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 8 February 2022

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...)

TraditionalElon.swapBack() (#570-612) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(externalAddress).call{gas: 30000,value: amountBNBExternal}() (#597)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in TraditionalElon._transferFrom(address,address,uint256) (#515-548):
External calls:
- swapBack() (#534)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#580-586)
- distributor.deposit{value: amountBNBReflection.add(balanceBefore)}() (#596)
- (tmpSuccess) = address(externalAddress).call{gas: 30000,value: amountBNBExternal}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#602-609)
External calls sending eth:
- swapBack() (#534)
- distributor.deposit{value: amountBNBReflection.add(balanceBefore)}() (#596)
- (tmpSuccess) = address(externalAddress).call{gas: 30000,value: amountBNBExternal}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#602-609)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance.) (#536)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#539)
- amountReceived = takeFee(sender,amount) (#538)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#564)
Apply the check-effects-interactions pattern.

Additional information: link

BUSD_DISTRIBUTOR.distributeDividend(address) (#323-334) ignores return value by BUSD.transfer(shareholder,amount) (#329)
TraditionalElon.recoverTokens(address,uint256) (#707-714) ignores return value by token.transfer(msg.sender,amountToRecover) (#713)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

TraditionalElon.swapBack().tmpSuccess (#597) is written in both
(tmpSuccess) = address(externalAddress).call{gas: 30000,value: amountBNBExternal}() (#597)
tmpSuccess = false (#599)
Fix or remove the writes.

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.


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.

TraditionalElon.swapBack() (#570-612) performs a multiplication on the result of a division:
-amountToLiquify = minTokensBeforeSwapThreshold.mul(liquidityFee / 2).div(totalBNBFee) (#571)
TraditionalElon.swapBack() (#570-612) performs a multiplication on the result of a division:
-amountBNBLiquidity = receivedBNB.mul(liquidityFee / 2).div(swapPercent) (#592)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in BUSD_DISTRIBUTOR.distributeDividend(address) (#323-334):
External calls:
- BUSD.transfer(shareholder,amount) (#329)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#331)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#332)
Reentrancy in BUSD_DISTRIBUTOR.process(uint256) (#292-316):
External calls:
- distributeDividend(shareholders[currentIndex]) (#308)
- BUSD.transfer(shareholder,amount) (#329)
State variables written after the call(s):
- currentIndex ++ (#313)
Reentrancy in BUSD_DISTRIBUTOR.setShare(address,uint256) (#256-270):
External calls:
- distributeDividend(shareholder) (#258)
- BUSD.transfer(shareholder,amount) (#329)
State variables written after the call(s):
- shares[shareholder].amount = amount (#268)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#269)
Apply the check-effects-interactions pattern.

Additional information: link

TraditionalElon.swapBack() (#570-612) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#602-609)
Ensure that all the return values of the function calls are used.

Additional information: link

TraditionalElon.tradingStatus(bool)._status (#649) shadows:
- ReentrancyGuard._status (#373) (state variable)
Rename the local variables that shadow another component.

Additional information: link

BUSD_DISTRIBUTOR.setDistributionCriteria(uint256,uint256) (#251-254) should emit an event for:
- minPeriod = _minPeriod (#252)
- minDistribution = _minDistribution (#253)
TraditionalElon.setTransactionCooldownTime(uint256) (#614-616) should emit an event for:
- _transactionLockTime = transactiontime (#615)
TraditionalElon.setMaxTxAmount(uint256) (#618-620) should emit an event for:
- _maxTxAmount = amount.mul(10 ** _decimals) (#619)
TraditionalElon.setMaxWallet(uint256) (#622-624) should emit an event for:
- _maxWallet = amount.mul(10 ** _decimals) (#623)
TraditionalElon.setSwapBackSettings(bool,uint256) (#626-629) should emit an event for:
- minTokensBeforeSwapThreshold = _amount.mul(10 ** _decimals) (#628)
TraditionalElon.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#653-668) should emit an event for:
- reflectionFee = _reflectionFee (#655)
- sellReflectionFee = _sellReflectionFee (#656)
- externalFee = _externalFee (#657)
- sellExternalFee = _sellExternalFee (#658)
- liquidityFee = _liquidityFee (#659)
- sellLiquidityFee = _sellLiquidityFee (#660)
- totalBNBFee = _reflectionFee + _externalFee + _liquidityFee (#662)
- feeDenominator = _feeDenominator (#665)
TraditionalElon.setBUSDDistributorSettings(uint256) (#682-685) should emit an event for:
- distributorGas = gas (#684)
Emit an event for critical parameter changes.

Additional information: link

TraditionalElon.setLiquidityAddress(address).wallet (#670) lacks a zero-check on :
- autoLiquidityReceiver = wallet (#671)
TraditionalElon.setExternalAddress(address).wallet (#674) lacks a zero-check on :
- externalAddress = wallet (#675)
TraditionalElon.recoverETH().recipient (#717) lacks a zero-check on :
- recipient.transfer(address(this).balance) (#719)
Check that the address is not zero.

Additional information: link

BUSD_DISTRIBUTOR.distributeDividend(address) (#323-334) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#329)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in TraditionalElon.constructor() (#450-482):
External calls:
- pair = IPancakeFactory(router.factory()).createPair(WBNB,address(this)) (#452)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = ~ uint256(0) (#453)
- _balances[msg.sender] = _totalSupply (#480)
- autoLiquidityReceiver = msg.sender (#478)
- distributor = new BUSD_DISTRIBUTOR(address(router)) (#455)
- isBUSDDividendExempt[pair] = true (#459)
- isBUSDDividendExempt[address(this)] = true (#460)
- isBUSDDividendExempt[burnAddress] = true (#461)
- isBUSDDividendExempt[zeroAddress] = true (#462)
- isExcludedFromAntiWhale[pair] = true (#470)
- isExcludedFromAntiWhale[msg.sender] = true (#471)
- isExcludedFromAntiWhale[burnAddress] = true (#472)
- isExcludedFromAntiWhale[zeroAddress] = true (#473)
- isExcludedFromAntiWhale[address(this)] = true (#474)
- isExcludedFromAntiWhale[externalAddress] = true (#475)
- isExcludedFromAntiWhale[address(router)] = true (#476)
- isExcludedFromTransactionlock[pair] = true (#464)
- isExcludedFromTransactionlock[msg.sender] = true (#465)
- isExcludedFromTransactionlock[address(this)] = true (#466)
- isExcludedFromTransactionlock[externalAddress] = true (#467)
- isExcludedFromTransactionlock[address(router)] = true (#468)
- isFeeExempt[msg.sender] = true (#457)
- isTxLimitExempt[msg.sender] = true (#458)
Reentrancy in BUSD_DISTRIBUTOR.deposit() (#272-290):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#279-284)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#289)
- totalDividends = totalDividends.add(amount) (#288)
Reentrancy in BUSD_DISTRIBUTOR.distributeDividend(address) (#323-334):
External calls:
- BUSD.transfer(shareholder,amount) (#329)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#330)
Reentrancy in BUSD_DISTRIBUTOR.setShare(address,uint256) (#256-270):
External calls:
- distributeDividend(shareholder) (#258)
- BUSD.transfer(shareholder,amount) (#329)
State variables written after the call(s):
- addShareholder(shareholder) (#262)
- shareholderIndexes[shareholder] = shareholders.length (#356)
- removeShareholder(shareholder) (#264)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#362)
- addShareholder(shareholder) (#262)
- shareholders.push(shareholder) (#357)
- removeShareholder(shareholder) (#264)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#361)
- shareholders.pop() (#363)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#267)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TraditionalElon._transferFrom(address,address,uint256) (#515-548):
External calls:
- swapBack() (#534)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#580-586)
- distributor.deposit{value: amountBNBReflection.add(balanceBefore)}() (#596)
- (tmpSuccess) = address(externalAddress).call{gas: 30000,value: amountBNBExternal}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#602-609)
- distributor.setShare(sender,_balances[sender]) (#541)
- distributor.setShare(recipient,_balances[recipient]) (#542)
- distributor.process(distributorGas) (#544)
External calls sending eth:
- swapBack() (#534)
- distributor.deposit{value: amountBNBReflection.add(balanceBefore)}() (#596)
- (tmpSuccess) = address(externalAddress).call{gas: 30000,value: amountBNBExternal}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#602-609)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#546)
Reentrancy in TraditionalElon._transferFrom(address,address,uint256) (#515-548):
External calls:
- swapBack() (#534)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#580-586)
- distributor.deposit{value: amountBNBReflection.add(balanceBefore)}() (#596)
- (tmpSuccess) = address(externalAddress).call{gas: 30000,value: amountBNBExternal}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#602-609)
External calls sending eth:
- swapBack() (#534)
- distributor.deposit{value: amountBNBReflection.add(balanceBefore)}() (#596)
- (tmpSuccess) = address(externalAddress).call{gas: 30000,value: amountBNBExternal}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#602-609)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#565)
- amountReceived = takeFee(sender,amount) (#538)
Reentrancy in TraditionalElon.constructor() (#450-482):
External calls:
- pair = IPancakeFactory(router.factory()).createPair(WBNB,address(this)) (#452)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#481)
Reentrancy in TraditionalElon.swapBack() (#570-612):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#580-586)
- distributor.deposit{value: amountBNBReflection.add(balanceBefore)}() (#596)
- (tmpSuccess) = address(externalAddress).call{gas: 30000,value: amountBNBExternal}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#602-609)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection.add(balanceBefore)}() (#596)
- (tmpSuccess) = address(externalAddress).call{gas: 30000,value: amountBNBExternal}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#602-609)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#610)
Apply the check-effects-interactions pattern.

Additional information: link

BUSD_DISTRIBUTOR.shouldDistribute(address) (#318-321) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#319-320)
TraditionalElon._transferFrom(address,address,uint256) (#515-548) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(isExcludedFromTransactionlock[sender] || block.timestamp >= _transactionCheckpoint[sender] + _transactionLockTime,Wait for transaction cooldown time to end before making a transaction.) (#524-525)
- require(bool,string)(isExcludedFromTransactionlock[recipient] || block.timestamp >= _transactionCheckpoint[recipient] + _transactionLockTime,Wait for transaction cooldown time to end before making a transaction.) (#526-527)
Avoid relying on block.timestamp.

Additional information: link

TraditionalElon._transferFrom(address,address,uint256) (#515-548) compares to a boolean constant:
-require(bool,string)(isBlacklisted[sender] == false,You are banned.) (#519)
TraditionalElon._transferFrom(address,address,uint256) (#515-548) compares to a boolean constant:
-require(bool,string)(isBlacklisted[recipient] == false,The recipient has been banned.) (#520)
TraditionalElon.blacklistSingleWallet(address) (#695-699) compares to a boolean constant:
-isBlacklisted[account] == true (#696)
TraditionalElon.unBlacklistSingleWallet(address) (#701-705) compares to a boolean constant:
-isBlacklisted[account] == false (#702)
Remove the equality to the boolean constant.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.8.3', '>=0.6.0<0.8.4']
- >=0.6.0<0.8.4 (#19)
- >=0.6.0<0.8.4 (#79)
- >=0.6.0<0.8.4 (#143)
- 0.8.3 (#200)
- >=0.6.0<0.8.4 (#367)
Use one Solidity version.

Additional information: link

BUSD_DISTRIBUTOR.process(uint256) (#292-316) has costly operations inside a loop:
- currentIndex = 0 (#304)
BUSD_DISTRIBUTOR.distributeDividend(address) (#323-334) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#328)
BUSD_DISTRIBUTOR.process(uint256) (#292-316) has costly operations inside a loop:
- currentIndex ++ (#313)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#100-103) is never used and should be removed
Roles.add(Roles.Role,address) (#63-66) is never used and should be removed
Roles.has(Roles.Role,address) (#73-76) is never used and should be removed
Roles.remove(Roles.Role,address) (#68-71) is never used and should be removed
Remove unused functions.

Additional information: link

TraditionalElon.totalBNBFee (#427) is set pre-construction with a non-constant function or state variable:
- reflectionFee + externalFee + liquidityFee
TraditionalElon.totalSellFee (#428) is set pre-construction with a non-constant function or state variable:
- sellReflectionFee + sellExternalFee + sellLiquidityFee
TraditionalElon._maxTxAmount (#441) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100
TraditionalElon._maxWallet (#442) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 50
TraditionalElon.minTokensBeforeSwapThreshold (#443) 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

Pragma version>=0.6.0<0.8.4 (#19) is too complex
Pragma version>=0.6.0<0.8.4 (#79) is too complex
Pragma version>=0.6.0<0.8.4 (#143) is too complex
Pragma version0.8.3 (#200) allows old versions
Pragma version>=0.6.0<0.8.4 (#367) is too complex
solc-0.8.3 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 TraditionalElon.swapBack() (#570-612):
- (tmpSuccess) = address(externalAddress).call{gas: 30000,value: amountBNBExternal}() (#597)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPANCAKERouter.WETH() (#147) is not in mixedCase
Contract BUSD_DISTRIBUTOR (#202-365) is not in CapWords
Parameter BUSD_DISTRIBUTOR.setDistributionCriteria(uint256,uint256)._minPeriod (#251) is not in mixedCase
Parameter BUSD_DISTRIBUTOR.setDistributionCriteria(uint256,uint256)._minDistribution (#251) is not in mixedCase
Variable BUSD_DISTRIBUTOR._token (#205) is not in mixedCase
Variable BUSD_DISTRIBUTOR.BUSD (#213) is not in mixedCase
Variable BUSD_DISTRIBUTOR.WBNB (#214) is not in mixedCase
Parameter TraditionalElon.setSwapBackSettings(bool,uint256)._enabled (#626) is not in mixedCase
Parameter TraditionalElon.setSwapBackSettings(bool,uint256)._amount (#626) is not in mixedCase
Parameter TraditionalElon.tradingStatus(bool)._status (#649) is not in mixedCase
Parameter TraditionalElon.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#653) is not in mixedCase
Parameter TraditionalElon.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._sellReflectionFee (#653) is not in mixedCase
Parameter TraditionalElon.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._externalFee (#653) is not in mixedCase
Parameter TraditionalElon.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._sellExternalFee (#653) is not in mixedCase
Parameter TraditionalElon.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#653) is not in mixedCase
Parameter TraditionalElon.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._sellLiquidityFee (#653) is not in mixedCase
Parameter TraditionalElon.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#653) is not in mixedCase
Parameter TraditionalElon.setBUSDDistributionCriteria(uint256,uint256)._minPeriod (#678) is not in mixedCase
Parameter TraditionalElon.setBUSDDistributionCriteria(uint256,uint256)._minDistribution (#678) is not in mixedCase
Variable TraditionalElon.BUSD (#393) is not in mixedCase
Variable TraditionalElon.WBNB (#394) is not in mixedCase
Constant TraditionalElon._name (#400) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TraditionalElon._symbol (#401) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TraditionalElon._decimals (#402) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TraditionalElon._totalSupply (#404) is not in mixedCase
Variable TraditionalElon._balances (#406) is not in mixedCase
Variable TraditionalElon._allowances (#407) is not in mixedCase
Variable TraditionalElon._maxTxAmount (#441) is not in mixedCase
Variable TraditionalElon._maxWallet (#442) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#101)" inContext (#95-104)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IPANCAKERouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#152) is too similar to IPANCAKERouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#153)
Prevent variables from having similar names.

Additional information: link

TraditionalElon.slitherConstructorVariables() (#390-722) uses literals with too many digits:
- zeroAddress = 0x0000000000000000000000000000000000000000 (#395)
TraditionalElon.slitherConstructorVariables() (#390-722) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#396)
TraditionalElon.slitherConstructorVariables() (#390-722) uses literals with too many digits:
- _totalSupply = 1000000000 * (10 ** _decimals) (#404)
TraditionalElon.slitherConstructorVariables() (#390-722) uses literals with too many digits:
- distributorGas = 500000 (#438)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TraditionalElon.BUSD (#393) is never used in TraditionalElon (#390-722)
Remove unused state variables.

Additional information: link

BUSD_DISTRIBUTOR.WBNB (#214) should be constant
BUSD_DISTRIBUTOR.dividendsPerShareAccuracyFactor (#227) should be constant
TraditionalElon.BUSD (#393) should be constant
TraditionalElon.WBNB (#394) should be constant
TraditionalElon._totalSupply (#404) should be constant
TraditionalElon.burnAddress (#396) should be constant
TraditionalElon.zeroAddress (#395) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#118-120)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#127-130)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#132-136)
setTransactionCooldownTime(uint256) should be declared external:
- TraditionalElon.setTransactionCooldownTime(uint256) (#614-616)
tradingStatus(bool) should be declared external:
- TraditionalElon.tradingStatus(bool) (#649-651)
setIsExcludedFromAntiWhale(address,bool) should be declared external:
- TraditionalElon.setIsExcludedFromAntiWhale(address,bool) (#687-689)
setIsExcludedFromTransactionCooldown(address,bool) should be declared external:
- TraditionalElon.setIsExcludedFromTransactionCooldown(address,bool) (#691-693)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.

Contract has 12% buy tax and 14% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Telegram and Twitter accounts


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


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for TELON