Elon Cat Coin Token Logo

$ElonCat [Elon Cat Coin] Token

ALERT: honeypot scam

About $ElonCat

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 10 May 2022

report
Token seems to be a scam (type: honeypot scam).


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

ElonCatCoin.sendETHToMarketing(uint256) (#917-920) sends eth to arbitrary user
Dangerous calls:
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#918)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ElonCatCoin._transfer(address,address,uint256) (#858-897):
External calls:
- swapTokensForEth(contractTokenBalance) (#879)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#908-914)
External calls sending eth:
- sendETHToMarketing(address(this).balance) (#883)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#918)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1001)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#960)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#969)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#961)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#980)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#990)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#971)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#981)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#992)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _rTotal = _rTotal.sub(rFee) (#1007)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing) (#1003)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#979)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#989)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#970)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#991)
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)

ElonCatCoin._setTaxFee(uint256) (#1064-1067) contains a tautology or contradiction:
- require(bool,string)(taxFee >= 0 && taxFee <= 99,taxFee should be in 0 - 99) (#1065)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link

Contract ticker ($ElonCat) 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.

Ownable.unlock() (#436-441) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#438)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#253-262) uses assembly
- INLINE ASM (#260)
Address._functionCallWithValue(address,bytes,uint256,string) (#346-367) uses assembly
- INLINE ASM (#359-362)
Do not use evm assembly.

Additional information: link

ElonCatCoin.allowance(address,address).owner (#745) shadows:
- Ownable.owner() (#389-391) (function)
ElonCatCoin._approve(address,address,uint256).owner (#850) shadows:
- Ownable.owner() (#389-391) (function)
Rename the local variables that shadow another component.

Additional information: link

ElonCatCoin._setTaxFee(uint256) (#1064-1067) should emit an event for:
- _taxFee = taxFee (#1066)
ElonCatCoin._setMarketingFee(uint256) (#1069-1072) should emit an event for:
- _MarketingFee = MarketingFee (#1071)
ElonCatCoin._setMaxTxAmount(uint256) (#1079-1081) should emit an event for:
- _maxTxAmount = maxTxAmount (#1080)
Emit an event for critical parameter changes.

Additional information: link

ElonCatCoin.constructor(address).MarketingWalletAddress (#697) lacks a zero-check on :
- _MarketingWalletAddress = MarketingWalletAddress (#698)
ElonCatCoin._setMarketingWallet(address).MarketingWalletAddress (#1074) lacks a zero-check on :
- _MarketingWalletAddress = MarketingWalletAddress (#1075)
Check that the address is not zero.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#408-411)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#417-421)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#423-425)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#428-433)
unlock() should be declared external:
- Ownable.unlock() (#436-441)
name() should be declared external:
- ElonCatCoin.name() (#719-721)
symbol() should be declared external:
- ElonCatCoin.symbol() (#723-725)
decimals() should be declared external:
- ElonCatCoin.decimals() (#727-729)
totalSupply() should be declared external:
- ElonCatCoin.totalSupply() (#731-733)
transfer(address,uint256) should be declared external:
- ElonCatCoin.transfer(address,uint256) (#740-743)
allowance(address,address) should be declared external:
- ElonCatCoin.allowance(address,address) (#745-747)
approve(address,uint256) should be declared external:
- ElonCatCoin.approve(address,uint256) (#749-752)
transferFrom(address,address,uint256) should be declared external:
- ElonCatCoin.transferFrom(address,address,uint256) (#754-758)
increaseAllowance(address,uint256) should be declared external:
- ElonCatCoin.increaseAllowance(address,uint256) (#760-763)
decreaseAllowance(address,uint256) should be declared external:
- ElonCatCoin.decreaseAllowance(address,uint256) (#765-768)
isExcluded(address) should be declared external:
- ElonCatCoin.isExcluded(address) (#770-772)
totalFees() should be declared external:
- ElonCatCoin.totalFees() (#778-780)
deliver(uint256) should be declared external:
- ElonCatCoin.deliver(uint256) (#782-789)
reflectionFromToken(uint256,bool) should be declared external:
- ElonCatCoin.reflectionFromToken(uint256,bool) (#791-800)
isExcludedFromFee(address) should be declared external:
- ElonCatCoin.isExcludedFromFee(address) (#846-848)
_getETHBalance() should be declared external:
- ElonCatCoin._getETHBalance() (#1060-1062)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in ElonCatCoin._transfer(address,address,uint256) (#858-897):
External calls:
- swapTokensForEth(contractTokenBalance) (#879)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#908-914)
External calls sending eth:
- sendETHToMarketing(address(this).balance) (#883)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#918)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _MarketingFee = _previousMarketingFee (#843)
- _MarketingFee = 0 (#838)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _previousMarketingFee = _MarketingFee (#835)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _previousTaxFee = _taxFee (#834)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1008)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _taxFee = _previousTaxFee (#842)
- _taxFee = 0 (#837)
Reentrancy in ElonCatCoin.constructor(address) (#697-717):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#704-705)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#711)
- _isExcludedFromFee[address(this)] = true (#712)
- _isExcludedFromFee[_MarketingWalletAddress] = true (#713)
- uniswapV2Router = _uniswapV2Router (#708)
Reentrancy in ElonCatCoin.transferFrom(address,address,uint256) (#754-758):
External calls:
- _transfer(sender,recipient,amount) (#755)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#908-914)
External calls sending eth:
- _transfer(sender,recipient,amount) (#755)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#918)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#756)
- _allowances[owner][spender] = amount (#854)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ElonCatCoin._transfer(address,address,uint256) (#858-897):
External calls:
- swapTokensForEth(contractTokenBalance) (#879)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#908-914)
External calls sending eth:
- sendETHToMarketing(address(this).balance) (#883)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#918)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#964)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- Transfer(sender,recipient,tTransferAmount) (#974)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- Transfer(sender,recipient,tTransferAmount) (#984)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- Transfer(sender,recipient,tTransferAmount) (#995)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
Reentrancy in ElonCatCoin.constructor(address) (#697-717):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#704-705)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#716)
Reentrancy in ElonCatCoin.transferFrom(address,address,uint256) (#754-758):
External calls:
- _transfer(sender,recipient,amount) (#755)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#908-914)
External calls sending eth:
- _transfer(sender,recipient,amount) (#755)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#918)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#855)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#756)
Apply the check-effects-interactions pattern.

Additional information: link

ElonCatCoin.includeAccount(address) (#818-829) has costly operations inside a loop:
- _excluded.pop() (#825)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#346-367) is never used and should be removed
Address.functionCall(address,bytes) (#306-308) is never used and should be removed
Address.functionCall(address,bytes,string) (#316-318) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#331-333) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#341-344) is never used and should be removed
Address.isContract(address) (#253-262) is never used and should be removed
Address.sendValue(address,uint256) (#280-286) is never used and should be removed
Context._msgData() (#15-18) is never used and should be removed
ElonCatCoin._getMaxTxAmount() (#1056-1058) is never used and should be removed
ElonCatCoin._getTaxFee() (#1052-1054) is never used and should be removed
SafeMath.mod(uint256,uint256) (#213-215) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#229-232) is never used and should be removed
Remove unused functions.

Additional information: link

ElonCatCoin._rTotal (#662) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ElonCatCoin._previousTaxFee (#673) is set pre-construction with a non-constant function or state variable:
- _taxFee
ElonCatCoin._previousMarketingFee (#674) is set pre-construction with a non-constant function or state variable:
- _MarketingFee
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

Low level call in Address.sendValue(address,uint256) (#280-286):
- (success) = recipient.call{value: amount}() (#284)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#346-367):
- (success,returndata) = target.call{value: weiValue}(data) (#350)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#475) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#476) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#493) is not in mixedCase
Function IUniswapV2Router01.WETH() (#513) is not in mixedCase
Function ElonCatCoin._getETHBalance() (#1060-1062) is not in mixedCase
Function ElonCatCoin._setTaxFee(uint256) (#1064-1067) is not in mixedCase
Function ElonCatCoin._setMarketingFee(uint256) (#1069-1072) is not in mixedCase
Parameter ElonCatCoin._setMarketingFee(uint256).MarketingFee (#1069) is not in mixedCase
Function ElonCatCoin._setMarketingWallet(address) (#1074-1077) is not in mixedCase
Parameter ElonCatCoin._setMarketingWallet(address).MarketingWalletAddress (#1074) is not in mixedCase
Function ElonCatCoin._setMaxTxAmount(uint256) (#1079-1081) is not in mixedCase
Variable ElonCatCoin._MarketingFee (#672) is not in mixedCase
Variable ElonCatCoin._MarketingWalletAddress (#676) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#16)" inContext (#10-19)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in ElonCatCoin._transfer(address,address,uint256) (#858-897):
External calls:
- sendETHToMarketing(address(this).balance) (#883)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#918)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _MarketingFee = _previousMarketingFee (#843)
- _MarketingFee = 0 (#838)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _previousMarketingFee = _MarketingFee (#835)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _previousTaxFee = _taxFee (#834)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1001)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#960)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#969)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#961)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#980)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#990)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#971)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#981)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#992)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _rTotal = _rTotal.sub(rFee) (#1007)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1008)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing) (#1003)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#979)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#989)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#970)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#991)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- _taxFee = _previousTaxFee (#842)
- _taxFee = 0 (#837)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#964)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- Transfer(sender,recipient,tTransferAmount) (#984)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- Transfer(sender,recipient,tTransferAmount) (#974)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
- Transfer(sender,recipient,tTransferAmount) (#995)
- _tokenTransfer(sender,recipient,amount,takeFee) (#896)
Reentrancy in ElonCatCoin.transferFrom(address,address,uint256) (#754-758):
External calls:
- _transfer(sender,recipient,amount) (#755)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#918)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#756)
- _allowances[owner][spender] = amount (#854)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#855)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#756)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#518) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#519)
Variable ElonCatCoin._getRValues(uint256,uint256,uint256).rTransferAmount (#1031) is too similar to ElonCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#968)
Variable ElonCatCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#988) is too similar to ElonCatCoin._getValues(uint256).tTransferAmount (#1015)
Variable ElonCatCoin._getValues(uint256).rTransferAmount (#1017) is too similar to ElonCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#968)
Variable ElonCatCoin.reflectionFromToken(uint256,bool).rTransferAmount (#797) is too similar to ElonCatCoin._getValues(uint256).tTransferAmount (#1015)
Variable ElonCatCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#988) is too similar to ElonCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#978)
Variable ElonCatCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#978) is too similar to ElonCatCoin._getValues(uint256).tTransferAmount (#1015)
Variable ElonCatCoin._transferToExcluded(address,address,uint256).rTransferAmount (#968) is too similar to ElonCatCoin._getTValues(uint256,uint256,uint256).tTransferAmount (#1024)
Variable ElonCatCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#978) is too similar to ElonCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#978)
Variable ElonCatCoin.reflectionFromToken(uint256,bool).rTransferAmount (#797) is too similar to ElonCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#978)
Variable ElonCatCoin._getRValues(uint256,uint256,uint256).rTransferAmount (#1031) is too similar to ElonCatCoin._getTValues(uint256,uint256,uint256).tTransferAmount (#1024)
Variable ElonCatCoin._getValues(uint256).rTransferAmount (#1017) is too similar to ElonCatCoin._getTValues(uint256,uint256,uint256).tTransferAmount (#1024)
Variable ElonCatCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#988) is too similar to ElonCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#968)
Variable ElonCatCoin.reflectionFromToken(uint256,bool).rTransferAmount (#797) is too similar to ElonCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#968)
Variable ElonCatCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#978) is too similar to ElonCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#968)
Variable ElonCatCoin._getRValues(uint256,uint256,uint256).rTransferAmount (#1031) is too similar to ElonCatCoin._getValues(uint256).tTransferAmount (#1015)
Variable ElonCatCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#988) is too similar to ElonCatCoin._getTValues(uint256,uint256,uint256).tTransferAmount (#1024)
Variable ElonCatCoin.reflectionFromToken(uint256,bool).rTransferAmount (#797) is too similar to ElonCatCoin._getTValues(uint256,uint256,uint256).tTransferAmount (#1024)
Variable ElonCatCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#988) is too similar to ElonCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#988)
Variable ElonCatCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#978) is too similar to ElonCatCoin._getTValues(uint256,uint256,uint256).tTransferAmount (#1024)
Variable ElonCatCoin._transferToExcluded(address,address,uint256).rTransferAmount (#968) is too similar to ElonCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#968)
Variable ElonCatCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#978) is too similar to ElonCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#988)
Variable ElonCatCoin.reflectionFromToken(uint256,bool).rTransferAmount (#797) is too similar to ElonCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#988)
Variable ElonCatCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#988) is too similar to ElonCatCoin._transferStandard(address,address,uint256).tTransferAmount (#959)
Variable ElonCatCoin._transferStandard(address,address,uint256).rTransferAmount (#959) is too similar to ElonCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#988)
Variable ElonCatCoin._transferStandard(address,address,uint256).rTransferAmount (#959) is too similar to ElonCatCoin._transferStandard(address,address,uint256).tTransferAmount (#959)
Variable ElonCatCoin._transferStandard(address,address,uint256).rTransferAmount (#959) is too similar to ElonCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#978)
Variable ElonCatCoin._getRValues(uint256,uint256,uint256).rTransferAmount (#1031) is too similar to ElonCatCoin._transferStandard(address,address,uint256).tTransferAmount (#959)
Variable ElonCatCoin._transferToExcluded(address,address,uint256).rTransferAmount (#968) is too similar to ElonCatCoin._getValues(uint256).tTransferAmount (#1015)
Variable ElonCatCoin._getRValues(uint256,uint256,uint256).rTransferAmount (#1031) is too similar to ElonCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#988)
Variable ElonCatCoin._getRValues(uint256,uint256,uint256).rTransferAmount (#1031) is too similar to ElonCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#978)
Variable ElonCatCoin.reflectionFromToken(uint256,bool).rTransferAmount (#797) is too similar to ElonCatCoin._transferStandard(address,address,uint256).tTransferAmount (#959)
Variable ElonCatCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#978) is too similar to ElonCatCoin._transferStandard(address,address,uint256).tTransferAmount (#959)
Variable ElonCatCoin._getValues(uint256).rTransferAmount (#1017) is too similar to ElonCatCoin._getValues(uint256).tTransferAmount (#1015)
Variable ElonCatCoin._transferStandard(address,address,uint256).rTransferAmount (#959) is too similar to ElonCatCoin._getValues(uint256).tTransferAmount (#1015)
Variable ElonCatCoin._transferToExcluded(address,address,uint256).rTransferAmount (#968) is too similar to ElonCatCoin._transferStandard(address,address,uint256).tTransferAmount (#959)
Variable ElonCatCoin._transferToExcluded(address,address,uint256).rTransferAmount (#968) is too similar to ElonCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#988)
Variable ElonCatCoin._transferStandard(address,address,uint256).rTransferAmount (#959) is too similar to ElonCatCoin._getTValues(uint256,uint256,uint256).tTransferAmount (#1024)
Variable ElonCatCoin._transferStandard(address,address,uint256).rTransferAmount (#959) is too similar to ElonCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#968)
Variable ElonCatCoin._transferToExcluded(address,address,uint256).rTransferAmount (#968) is too similar to ElonCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#978)
Variable ElonCatCoin._getValues(uint256).rTransferAmount (#1017) is too similar to ElonCatCoin._transferStandard(address,address,uint256).tTransferAmount (#959)
Variable ElonCatCoin._getValues(uint256).rTransferAmount (#1017) is too similar to ElonCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#988)
Variable ElonCatCoin._getValues(uint256).rTransferAmount (#1017) is too similar to ElonCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#978)
Prevent variables from having similar names.

Additional information: link

ElonCatCoin._decimals (#667) should be constant
ElonCatCoin._name (#665) should be constant
ElonCatCoin._numOfTokensToExchangeForMarketing (#686) should be constant
ElonCatCoin._symbol (#666) should be constant
ElonCatCoin._tTotal (#661) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:


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


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


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


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


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.


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


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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 $ElonCat