Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in CatanaElon._transfer(address,address,uint256) (#611-644):
External calls:
- swapAndLiquify(contractTokenBalance) (#632)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#661-667)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#632)
- recipient.transfer(amount) (#868)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#789)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#706)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#695)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#731)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#696)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#719)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#720)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#708)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#733)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _rTotal = _rTotal.sub(rFee).sub(rBurn) (#740)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#791)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#718)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#730)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#707)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#732)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _tTotal = _tTotal.sub(tBurn) (#743)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ticker (Catana Elon) 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.
CatanaElon.allowance(address,address).owner (#526) shadows:
- Ownable.owner() (#167-169) (function)
CatanaElon._approve(address,address,uint256).owner (#603) shadows:
- Ownable.owner() (#167-169) (function)
Rename the local variables that shadow another component.
Additional information: link
CatanaElon.setTaxFeePercent(uint256) (#842-844) should emit an event for:
- _taxFee = taxFee (#843)
CatanaElon.setBurnFeePercent(uint256) (#846-848) should emit an event for:
- _burnFee = burnFee (#847)
CatanaElon.setMaxTxPercent(uint256,uint256) (#851-855) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** (uint256(maxTxDecimals) + 2)) (#852-854)
CatanaElon.setNumTokensSellToAddToLiquidity(uint256) (#857-859) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#858)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in CatanaElon._transfer(address,address,uint256) (#611-644):
External calls:
- swapAndLiquify(contractTokenBalance) (#632)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#661-667)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#632)
- recipient.transfer(amount) (#868)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _burnFee = _previousBurnFee (#826)
- _burnFee = 0 (#820)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _liquidFee = _previousLiquidFee (#827)
- _liquidFee = 0 (#821)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _previousBurnFee = _burnFee (#816)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _previousLiquidFee = _liquidFee (#817)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _previousTaxFee = _taxFee (#815)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _tBurnTotal = _tBurnTotal.add(tBurn) (#742)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _tFeeTotal = _tFeeTotal.add(tFee) (#741)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _taxFee = _previousTaxFee (#825)
- _taxFee = 0 (#819)
Reentrancy in CatanaElon.constructor() (#485-498):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#489-490)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#494)
- _isExcludedFromFee[address(this)] = true (#495)
- uniswapV2Router = _uniswapV2Router (#492)
Reentrancy in CatanaElon.swapAndLiquify(uint256) (#646-650):
External calls:
- swapTokensForEth(contractTokenBalance) (#647)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#661-667)
State variables written after the call(s):
- _tLiquidTotal = _tLiquidTotal.add(address(this).balance) (#648)
Reentrancy in CatanaElon.transferFrom(address,address,uint256) (#535-539):
External calls:
- _transfer(sender,recipient,amount) (#536)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#661-667)
External calls sending eth:
- _transfer(sender,recipient,amount) (#536)
- recipient.transfer(amount) (#868)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#537)
- _allowances[owner][spender] = amount (#607)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CatanaElon._transfer(address,address,uint256) (#611-644):
External calls:
- swapAndLiquify(contractTokenBalance) (#632)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#661-667)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#632)
- recipient.transfer(amount) (#868)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#699)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- Transfer(sender,recipient,tTransferAmount) (#711)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- Transfer(sender,recipient,tTransferAmount) (#723)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- Transfer(sender,recipient,tTransferAmount) (#736)
- _tokenTransfer(from,to,amount,takeFee) (#643)
Reentrancy in CatanaElon.constructor() (#485-498):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#489-490)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#497)
Reentrancy in CatanaElon.transferFrom(address,address,uint256) (#535-539):
External calls:
- _transfer(sender,recipient,amount) (#536)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#661-667)
External calls sending eth:
- _transfer(sender,recipient,amount) (#536)
- recipient.transfer(amount) (#868)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#608)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#537)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#90-99) uses assembly
- INLINE ASM (#97)
Address._functionCallWithValue(address,bytes,uint256,string) (#127-144) uses assembly
- INLINE ASM (#136-139)
Do not use evm assembly.
Additional information: link
CatanaElon.includeInReward(address) (#590-601) has costly operations inside a loop:
- _excluded.pop() (#597)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#127-144) is never used and should be removed
Address.functionCall(address,bytes) (#110-112) is never used and should be removed
Address.functionCall(address,bytes,string) (#114-116) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#118-120) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#122-125) is never used and should be removed
Address.isContract(address) (#90-99) is never used and should be removed
Address.sendValue(address,uint256) (#101-107) is never used and should be removed
CatanaElon.minimumTokensBeforeSwapAmount() (#559-561) is never used and should be removed
Context._msgData() (#13-16) is never used and should be removed
SafeMath.mod(uint256,uint256) (#78-80) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#82-85) is never used and should be removed
Remove unused functions.
Additional information: link
CatanaElon._rTotal (#440) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CatanaElon._previousTaxFee (#451) is set pre-construction with a non-constant function or state variable:
- _taxFee
CatanaElon._previousBurnFee (#454) is set pre-construction with a non-constant function or state variable:
- _burnFee
CatanaElon._previousLiquidFee (#458) is set pre-construction with a non-constant function or state variable:
- _liquidFee
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) (#101-107):
- (success) = recipient.call{value: amount}() (#105)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#127-144):
- (success,returndata) = target.call{value: weiValue}(data) (#130)
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() (#249) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#250) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#266) is not in mixedCase
Function IUniswapV2Router01.WETH() (#287) is not in mixedCase
Parameter CatanaElon.calculateTaxFee(uint256)._amount (#794) is not in mixedCase
Parameter CatanaElon.calculateBurnFee(uint256)._amount (#800) is not in mixedCase
Parameter CatanaElon.calculateLiquidityFee(uint256)._amount (#806) is not in mixedCase
Parameter CatanaElon.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#857) is not in mixedCase
Parameter CatanaElon.setSwapAndLiquifyEnabled(bool)._enabled (#861) is not in mixedCase
Function CatanaElon.TransferLiquidETH(address,uint256) (#867-869) is not in mixedCase
Variable CatanaElon._taxFee (#450) is not in mixedCase
Variable CatanaElon._burnFee (#453) is not in mixedCase
Variable CatanaElon._liquidFee (#457) is not in mixedCase
Variable CatanaElon._maxTxAmount (#460) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#14)" inContext (#8-17)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in CatanaElon._transfer(address,address,uint256) (#611-644):
External calls:
- swapAndLiquify(contractTokenBalance) (#632)
- recipient.transfer(amount) (#868)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _burnFee = _previousBurnFee (#826)
- _burnFee = 0 (#820)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _liquidFee = _previousLiquidFee (#827)
- _liquidFee = 0 (#821)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _previousBurnFee = _burnFee (#816)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _previousLiquidFee = _liquidFee (#817)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _previousTaxFee = _taxFee (#815)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#789)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#706)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#695)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#731)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#696)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#719)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#720)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#708)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#733)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _rTotal = _rTotal.sub(rFee).sub(rBurn) (#740)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _tBurnTotal = _tBurnTotal.add(tBurn) (#742)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _tFeeTotal = _tFeeTotal.add(tFee) (#741)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#791)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#718)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#730)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#707)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#732)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _tTotal = _tTotal.sub(tBurn) (#743)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _taxFee = _previousTaxFee (#825)
- _taxFee = 0 (#819)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#699)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- Transfer(sender,recipient,tTransferAmount) (#711)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- Transfer(sender,recipient,tTransferAmount) (#723)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- Transfer(sender,recipient,tTransferAmount) (#736)
- _tokenTransfer(from,to,amount,takeFee) (#643)
Reentrancy in CatanaElon.transferFrom(address,address,uint256) (#535-539):
External calls:
- _transfer(sender,recipient,amount) (#536)
- recipient.transfer(amount) (#868)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#537)
- _allowances[owner][spender] = amount (#607)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#608)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#537)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#292) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#293)
Variable CatanaElon._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#765) is too similar to CatanaElon._getTValues(uint256).tTransferAmount (#756)
Variable CatanaElon._transferFromExcluded(address,address,uint256).rTransferAmount (#716) is too similar to CatanaElon._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable CatanaElon._transferToExcluded(address,address,uint256).rTransferAmount (#704) is too similar to CatanaElon._transferBothExcluded(address,address,uint256).tTransferAmount (#728)
Variable CatanaElon._getValues(uint256).rTransferAmount (#748) is too similar to CatanaElon._transferBothExcluded(address,address,uint256).tTransferAmount (#728)
Variable CatanaElon.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to CatanaElon._transferBothExcluded(address,address,uint256).tTransferAmount (#728)
Variable CatanaElon._transferBothExcluded(address,address,uint256).rTransferAmount (#728) is too similar to CatanaElon._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable CatanaElon._transferStandard(address,address,uint256).rTransferAmount (#693) is too similar to CatanaElon._transferBothExcluded(address,address,uint256).tTransferAmount (#728)
Variable CatanaElon._getValues(uint256).rTransferAmount (#748) is too similar to CatanaElon._transferFromExcluded(address,address,uint256).tTransferAmount (#716)
Variable CatanaElon._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#765) is too similar to CatanaElon._transferBothExcluded(address,address,uint256).tTransferAmount (#728)
Variable CatanaElon._transferFromExcluded(address,address,uint256).rTransferAmount (#716) is too similar to CatanaElon._getTValues(uint256).tTransferAmount (#756)
Variable CatanaElon._transferToExcluded(address,address,uint256).rTransferAmount (#704) is too similar to CatanaElon._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable CatanaElon._getValues(uint256).rTransferAmount (#748) is too similar to CatanaElon._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable CatanaElon.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to CatanaElon._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable CatanaElon._transferStandard(address,address,uint256).rTransferAmount (#693) is too similar to CatanaElon._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable CatanaElon._transferFromExcluded(address,address,uint256).rTransferAmount (#716) is too similar to CatanaElon._transferBothExcluded(address,address,uint256).tTransferAmount (#728)
Variable CatanaElon._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#765) is too similar to CatanaElon._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable CatanaElon._transferToExcluded(address,address,uint256).rTransferAmount (#704) is too similar to CatanaElon._getTValues(uint256).tTransferAmount (#756)
Variable CatanaElon._transferBothExcluded(address,address,uint256).rTransferAmount (#728) is too similar to CatanaElon._transferBothExcluded(address,address,uint256).tTransferAmount (#728)
Variable CatanaElon._transferFromExcluded(address,address,uint256).rTransferAmount (#716) is too similar to CatanaElon._transferFromExcluded(address,address,uint256).tTransferAmount (#716)
Variable CatanaElon._getValues(uint256).rTransferAmount (#748) is too similar to CatanaElon._getTValues(uint256).tTransferAmount (#756)
Variable CatanaElon.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to CatanaElon._getTValues(uint256).tTransferAmount (#756)
Variable CatanaElon._transferBothExcluded(address,address,uint256).rTransferAmount (#728) is too similar to CatanaElon._transferFromExcluded(address,address,uint256).tTransferAmount (#716)
Variable CatanaElon._transferBothExcluded(address,address,uint256).rTransferAmount (#728) is too similar to CatanaElon._getValues(uint256).tTransferAmount (#747)
Variable CatanaElon._transferStandard(address,address,uint256).rTransferAmount (#693) is too similar to CatanaElon._transferToExcluded(address,address,uint256).tTransferAmount (#704)
Variable CatanaElon._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#765) is too similar to CatanaElon._transferToExcluded(address,address,uint256).tTransferAmount (#704)
Variable CatanaElon._transferStandard(address,address,uint256).rTransferAmount (#693) is too similar to CatanaElon._getTValues(uint256).tTransferAmount (#756)
Variable CatanaElon._transferFromExcluded(address,address,uint256).rTransferAmount (#716) is too similar to CatanaElon._getValues(uint256).tTransferAmount (#747)
Variable CatanaElon._transferStandard(address,address,uint256).rTransferAmount (#693) is too similar to CatanaElon._transferFromExcluded(address,address,uint256).tTransferAmount (#716)
Variable CatanaElon._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#765) is too similar to CatanaElon._transferFromExcluded(address,address,uint256).tTransferAmount (#716)
Variable CatanaElon._transferStandard(address,address,uint256).rTransferAmount (#693) is too similar to CatanaElon._getValues(uint256).tTransferAmount (#747)
Variable CatanaElon._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#765) is too similar to CatanaElon._getValues(uint256).tTransferAmount (#747)
Variable CatanaElon.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to CatanaElon._transferToExcluded(address,address,uint256).tTransferAmount (#704)
Variable CatanaElon._getValues(uint256).rTransferAmount (#748) is too similar to CatanaElon._transferToExcluded(address,address,uint256).tTransferAmount (#704)
Variable CatanaElon._transferToExcluded(address,address,uint256).rTransferAmount (#704) is too similar to CatanaElon._transferToExcluded(address,address,uint256).tTransferAmount (#704)
Variable CatanaElon.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to CatanaElon._transferFromExcluded(address,address,uint256).tTransferAmount (#716)
Variable CatanaElon._transferToExcluded(address,address,uint256).rTransferAmount (#704) is too similar to CatanaElon._transferFromExcluded(address,address,uint256).tTransferAmount (#716)
Variable CatanaElon.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to CatanaElon._getValues(uint256).tTransferAmount (#747)
Variable CatanaElon._getValues(uint256).rTransferAmount (#748) is too similar to CatanaElon._getValues(uint256).tTransferAmount (#747)
Variable CatanaElon._transferToExcluded(address,address,uint256).rTransferAmount (#704) is too similar to CatanaElon._getValues(uint256).tTransferAmount (#747)
Variable CatanaElon._transferBothExcluded(address,address,uint256).rTransferAmount (#728) is too similar to CatanaElon._transferToExcluded(address,address,uint256).tTransferAmount (#704)
Variable CatanaElon._transferBothExcluded(address,address,uint256).rTransferAmount (#728) is too similar to CatanaElon._getTValues(uint256).tTransferAmount (#756)
Variable CatanaElon._transferFromExcluded(address,address,uint256).rTransferAmount (#716) is too similar to CatanaElon._transferToExcluded(address,address,uint256).tTransferAmount (#704)
Prevent variables from having similar names.
Additional information: link
CatanaElon.slitherConstructorVariables() (#425-875) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#439)
CatanaElon.slitherConstructorVariables() (#425-875) uses literals with too many digits:
- _maxTxAmount = 500000000000000 * 10 ** 6 * 10 ** 9 (#460)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CatanaElon._decimals (#447) should be constant
CatanaElon._name (#445) should be constant
CatanaElon._symbol (#446) should be constant
CatanaElon.liquidAddress (#463) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#186-189)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#195-197)
name() should be declared external:
- CatanaElon.name() (#500-502)
symbol() should be declared external:
- CatanaElon.symbol() (#504-506)
decimals() should be declared external:
- CatanaElon.decimals() (#508-510)
totalSupply() should be declared external:
- CatanaElon.totalSupply() (#512-514)
transfer(address,uint256) should be declared external:
- CatanaElon.transfer(address,uint256) (#521-524)
allowance(address,address) should be declared external:
- CatanaElon.allowance(address,address) (#526-528)
approve(address,uint256) should be declared external:
- CatanaElon.approve(address,uint256) (#530-533)
transferFrom(address,address,uint256) should be declared external:
- CatanaElon.transferFrom(address,address,uint256) (#535-539)
increaseAllowance(address,uint256) should be declared external:
- CatanaElon.increaseAllowance(address,uint256) (#541-544)
decreaseAllowance(address,uint256) should be declared external:
- CatanaElon.decreaseAllowance(address,uint256) (#546-549)
isExcludedFromReward(address) should be declared external:
- CatanaElon.isExcludedFromReward(address) (#551-553)
totalFees() should be declared external:
- CatanaElon.totalFees() (#555-557)
deliver(uint256) should be declared external:
- CatanaElon.deliver(uint256) (#563-570)
reflectionFromToken(uint256,bool) should be declared external:
- CatanaElon.reflectionFromToken(uint256,bool) (#573-582)
isExcludedFromFee(address) should be declared external:
- CatanaElon.isExcludedFromFee(address) (#830-832)
excludeFromFee(address) should be declared external:
- CatanaElon.excludeFromFee(address) (#834-836)
includeInFee(address) should be declared external:
- CatanaElon.includeInFee(address) (#838-840)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CatanaElon.setSwapAndLiquifyEnabled(bool) (#861-864)
Use the external attribute for functions never called from the contract.
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.
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 17% buy tax and 12% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Token is deployed only at one blockchain
Token has only one trading pair
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
Unable to find Telegram and Twitter accounts