StopElon Token Logo

STOPELON Token

About STOPELON

Listings

Token 2 years
CoinMarketCap 2 years
white paper

A community driven movement to STOP one of the biggest market manipulators.

Laser Scorebeta Last Audit: 2 March 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

StopElon.addLiquidity(uint256,uint256) (#1117-1130) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in StopElon._transfer(address,address,uint256) (#1028-1074):
External calls:
- swapAndLiquify(contractTokenBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1108-1114)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#984)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1155)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1164)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1175)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#901)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1156)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1166)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1176)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#903)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _rTotal = _rTotal.sub(rFee) (#939)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#986)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#900)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1174)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1165)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#902)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

StopElon.addLiquidity(uint256,uint256) (#1117-1130) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
Ensure that all the return values of the function calls are used.

Additional information: link

StopElon.allowance(address,address).owner (#796) shadows:
- Ownable.owner() (#434-436) (function)
StopElon._approve(address,address,uint256).owner (#1020) shadows:
- Ownable.owner() (#434-436) (function)
Rename the local variables that shadow another component.

Additional information: link

StopElon.setTaxFeePercent(uint256) (#917-919) should emit an event for:
- _taxFee = taxFee (#918)
StopElon.setLiquidityFeePercent(uint256) (#921-923) should emit an event for:
- _liquidityFee = liquidityFee (#922)
StopElon.setMaxTxPercent(uint256) (#925-929) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 3) (#926-928)
Emit an event for critical parameter changes.

Additional information: link

StopElon.updateRouterAndPair(address,address)._uniswapV2Pair (#829) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#831)
StopElon.safeTransferETH(address,uint256).to (#1183) lacks a zero-check on :
- (success) = to.call{value: value}(new bytes(0)) (#1184)
StopElon.safeTransfer(address,address,uint256).to (#1188) lacks a zero-check on :
- (success,data) = token.call(abi.encodeWithSelector(0xa9059cbb,to,value)) (#1190)
StopElon.safeTransfer(address,address,uint256).token (#1188) lacks a zero-check on :
- (success,data) = token.call(abi.encodeWithSelector(0xa9059cbb,to,value)) (#1190)
Check that the address is not zero.

Additional information: link

Reentrancy in StopElon._transfer(address,address,uint256) (#1028-1074):
External calls:
- swapAndLiquify(contractTokenBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1108-1114)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _liquidityFee = _previousLiquidityFee (#1013)
- _liquidityFee = 0 (#1008)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _previousLiquidityFee = _liquidityFee (#1005)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _previousTaxFee = _taxFee (#1004)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _tFeeTotal = _tFeeTotal.add(tFee) (#940)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _taxFee = _previousTaxFee (#1012)
- _taxFee = 0 (#1007)
Reentrancy in StopElon.constructor() (#754-768):
External calls:
- uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),WETH) (#760-761)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#764)
- _isExcludedFromFee[address(this)] = true (#765)
Reentrancy in StopElon.swapAndLiquify(uint256) (#1076-1097):
External calls:
- swapTokensForEth(half) (#1088)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1108-1114)
- addLiquidity(otherHalf,newBalance) (#1094)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1094)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1094)
- _allowances[owner][spender] = amount (#1024)
Reentrancy in StopElon.transferFrom(address,address,uint256) (#805-809):
External calls:
- _transfer(sender,recipient,amount) (#806)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1108-1114)
External calls sending eth:
- _transfer(sender,recipient,amount) (#806)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#807)
- _allowances[owner][spender] = amount (#1024)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in StopElon._transfer(address,address,uint256) (#1028-1074):
External calls:
- swapAndLiquify(contractTokenBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1108-1114)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1159)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- Transfer(sender,recipient,tTransferAmount) (#1179)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- Transfer(sender,recipient,tTransferAmount) (#1169)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- Transfer(sender,recipient,tTransferAmount) (#906)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
Reentrancy in StopElon.constructor() (#754-768):
External calls:
- uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),WETH) (#760-761)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#767)
Reentrancy in StopElon.swapAndLiquify(uint256) (#1076-1097):
External calls:
- swapTokensForEth(half) (#1088)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1108-1114)
- addLiquidity(otherHalf,newBalance) (#1094)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1094)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1025)
- addLiquidity(otherHalf,newBalance) (#1094)
- SwapAndLiquify(half,newBalance,otherHalf) (#1096)
Reentrancy in StopElon.transferFrom(address,address,uint256) (#805-809):
External calls:
- _transfer(sender,recipient,amount) (#806)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1108-1114)
External calls sending eth:
- _transfer(sender,recipient,amount) (#806)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1122-1129)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1025)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#807)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#286-295) uses assembly
- INLINE ASM (#293)
Address._functionCallWithValue(address,bytes,uint256,string) (#379-400) uses assembly
- INLINE ASM (#392-395)
Do not use evm assembly.

Additional information: link

StopElon.includeInReward(address) (#872-896) has costly operations inside a loop:
- _rTotal = _rTotal.sub(_rOwned[account] - newrOwned) (#880)
StopElon.includeInReward(address) (#872-896) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(_rOwned[account] - newrOwned) (#881)
StopElon.includeInReward(address) (#872-896) has costly operations inside a loop:
- _excluded.pop() (#892)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#379-400) is never used and should be removed
Address.functionCall(address,bytes) (#339-341) is never used and should be removed
Address.functionCall(address,bytes,string) (#349-351) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#364-366) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#374-377) is never used and should be removed
Address.isContract(address) (#286-295) is never used and should be removed
Address.sendValue(address,uint256) (#313-319) is never used and should be removed
Context._msgData() (#258-261) is never used and should be removed
SafeMath.mod(uint256,uint256) (#231-233) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#247-250) is never used and should be removed
Remove unused functions.

Additional information: link

StopElon._rTotal (#718) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
StopElon._previousTaxFee (#726) is set pre-construction with a non-constant function or state variable:
- _taxFee
StopElon._previousLiquidityFee (#729) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#313-319):
- (success) = recipient.call{value: amount}() (#317)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#379-400):
- (success,returndata) = target.call{value: weiValue}(data) (#383)
Low level call in StopElon.safeTransferETH(address,uint256) (#1183-1186):
- (success) = to.call{value: value}(new bytes(0)) (#1184)
Low level call in StopElon.safeTransfer(address,address,uint256) (#1188-1192):
- (success,data) = token.call(abi.encodeWithSelector(0xa9059cbb,to,value)) (#1190)
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() (#525) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#526) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#543) is not in mixedCase
Function IUniswapV2Router01.WETH() (#565) is not in mixedCase
Parameter StopElon.updateRouterAndPair(address,address)._uniswapV2Router (#829) is not in mixedCase
Parameter StopElon.updateRouterAndPair(address,address)._uniswapV2Pair (#829) is not in mixedCase
Parameter StopElon.setSwapAndLiquifyEnabled(bool)._enabled (#931) is not in mixedCase
Parameter StopElon.calculateTaxFee(uint256)._amount (#989) is not in mixedCase
Parameter StopElon.calculateLiquidityFee(uint256)._amount (#995) is not in mixedCase
Variable StopElon._taxFee (#725) is not in mixedCase
Variable StopElon._liquidityFee (#728) is not in mixedCase
Variable StopElon._maxTxAmount (#737) is not in mixedCase
Constant StopElon.numTokensSellToAddToLiquidity (#738) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#259)" inContext (#253-262)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#570) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#571)
Variable StopElon._transferBothExcluded(address,address,uint256).rTransferAmount (#899) is too similar to StopElon._transferBothExcluded(address,address,uint256).tTransferAmount (#899)
Variable StopElon.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to StopElon._getTValues(uint256).tTransferAmount (#952)
Variable StopElon._transferFromExcluded(address,address,uint256).rTransferAmount (#1173) is too similar to StopElon._transferFromExcluded(address,address,uint256).tTransferAmount (#1173)
Variable StopElon._transferBothExcluded(address,address,uint256).rTransferAmount (#899) is too similar to StopElon._transferStandard(address,address,uint256).tTransferAmount (#1154)
Variable StopElon.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to StopElon._transferFromExcluded(address,address,uint256).tTransferAmount (#1173)
Variable StopElon._transferBothExcluded(address,address,uint256).rTransferAmount (#899) is too similar to StopElon._transferToExcluded(address,address,uint256).tTransferAmount (#1163)
Variable StopElon._getValues(uint256).rTransferAmount (#945) is too similar to StopElon._transferStandard(address,address,uint256).tTransferAmount (#1154)
Variable StopElon._transferBothExcluded(address,address,uint256).rTransferAmount (#899) is too similar to StopElon._getTValues(uint256).tTransferAmount (#952)
Variable StopElon._transferBothExcluded(address,address,uint256).rTransferAmount (#899) is too similar to StopElon._getValues(uint256).tTransferAmount (#944)
Variable StopElon._transferToExcluded(address,address,uint256).rTransferAmount (#1163) is too similar to StopElon._transferStandard(address,address,uint256).tTransferAmount (#1154)
Variable StopElon._transferBothExcluded(address,address,uint256).rTransferAmount (#899) is too similar to StopElon._transferFromExcluded(address,address,uint256).tTransferAmount (#1173)
Variable StopElon._getValues(uint256).rTransferAmount (#945) is too similar to StopElon._getTValues(uint256).tTransferAmount (#952)
Variable StopElon._transferToExcluded(address,address,uint256).rTransferAmount (#1163) is too similar to StopElon._getTValues(uint256).tTransferAmount (#952)
Variable StopElon._transferToExcluded(address,address,uint256).rTransferAmount (#1163) is too similar to StopElon._getValues(uint256).tTransferAmount (#944)
Variable StopElon._transferToExcluded(address,address,uint256).rTransferAmount (#1163) is too similar to StopElon._transferToExcluded(address,address,uint256).tTransferAmount (#1163)
Variable StopElon._getValues(uint256).rTransferAmount (#945) is too similar to StopElon._transferFromExcluded(address,address,uint256).tTransferAmount (#1173)
Variable StopElon._transferToExcluded(address,address,uint256).rTransferAmount (#1163) is too similar to StopElon._transferFromExcluded(address,address,uint256).tTransferAmount (#1173)
Variable StopElon.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to StopElon._transferStandard(address,address,uint256).tTransferAmount (#1154)
Variable StopElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#960) is too similar to StopElon._transferBothExcluded(address,address,uint256).tTransferAmount (#899)
Variable StopElon._transferFromExcluded(address,address,uint256).rTransferAmount (#1173) is too similar to StopElon._transferStandard(address,address,uint256).tTransferAmount (#1154)
Variable StopElon._transferStandard(address,address,uint256).rTransferAmount (#1154) is too similar to StopElon._transferFromExcluded(address,address,uint256).tTransferAmount (#1173)
Variable StopElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#960) is too similar to StopElon._getValues(uint256).tTransferAmount (#944)
Variable StopElon._transferFromExcluded(address,address,uint256).rTransferAmount (#1173) is too similar to StopElon._getTValues(uint256).tTransferAmount (#952)
Variable StopElon.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to StopElon._transferBothExcluded(address,address,uint256).tTransferAmount (#899)
Variable StopElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#960) is too similar to StopElon._transferToExcluded(address,address,uint256).tTransferAmount (#1163)
Variable StopElon.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to StopElon._getValues(uint256).tTransferAmount (#944)
Variable StopElon.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to StopElon._transferToExcluded(address,address,uint256).tTransferAmount (#1163)
Variable StopElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#960) is too similar to StopElon._transferStandard(address,address,uint256).tTransferAmount (#1154)
Variable StopElon._getValues(uint256).rTransferAmount (#945) is too similar to StopElon._transferBothExcluded(address,address,uint256).tTransferAmount (#899)
Variable StopElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#960) is too similar to StopElon._getTValues(uint256).tTransferAmount (#952)
Variable StopElon._getValues(uint256).rTransferAmount (#945) is too similar to StopElon._getValues(uint256).tTransferAmount (#944)
Variable StopElon._getValues(uint256).rTransferAmount (#945) is too similar to StopElon._transferToExcluded(address,address,uint256).tTransferAmount (#1163)
Variable StopElon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#960) is too similar to StopElon._transferFromExcluded(address,address,uint256).tTransferAmount (#1173)
Variable StopElon._transferStandard(address,address,uint256).rTransferAmount (#1154) is too similar to StopElon._transferBothExcluded(address,address,uint256).tTransferAmount (#899)
Variable StopElon._transferToExcluded(address,address,uint256).rTransferAmount (#1163) is too similar to StopElon._transferBothExcluded(address,address,uint256).tTransferAmount (#899)
Variable StopElon._transferStandard(address,address,uint256).rTransferAmount (#1154) is too similar to StopElon._getValues(uint256).tTransferAmount (#944)
Variable StopElon._transferStandard(address,address,uint256).rTransferAmount (#1154) is too similar to StopElon._transferToExcluded(address,address,uint256).tTransferAmount (#1163)
Variable StopElon._transferStandard(address,address,uint256).rTransferAmount (#1154) is too similar to StopElon._transferStandard(address,address,uint256).tTransferAmount (#1154)
Variable StopElon._transferFromExcluded(address,address,uint256).rTransferAmount (#1173) is too similar to StopElon._transferBothExcluded(address,address,uint256).tTransferAmount (#899)
Variable StopElon._transferFromExcluded(address,address,uint256).rTransferAmount (#1173) is too similar to StopElon._getValues(uint256).tTransferAmount (#944)
Variable StopElon._transferStandard(address,address,uint256).rTransferAmount (#1154) is too similar to StopElon._getTValues(uint256).tTransferAmount (#952)
Variable StopElon._transferFromExcluded(address,address,uint256).rTransferAmount (#1173) is too similar to StopElon._transferToExcluded(address,address,uint256).tTransferAmount (#1163)
Prevent variables from having similar names.

Additional information: link

StopElon.slitherConstructorVariables() (#703-1194) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 9 (#717)
StopElon.slitherConstructorVariables() (#703-1194) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 9 (#737)
StopElon.slitherConstructorConstantVariables() (#703-1194) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 200000000 * 10 ** 9 (#738)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

StopElon._decimals (#723) should be constant
StopElon._name (#721) should be constant
StopElon._symbol (#722) should be constant
StopElon._tTotal (#717) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#453-456)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#462-466)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#468-470)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#473-478)
unlock() should be declared external:
- Ownable.unlock() (#481-486)
name() should be declared external:
- StopElon.name() (#770-772)
symbol() should be declared external:
- StopElon.symbol() (#774-776)
decimals() should be declared external:
- StopElon.decimals() (#778-780)
totalSupply() should be declared external:
- StopElon.totalSupply() (#782-784)
transfer(address,uint256) should be declared external:
- StopElon.transfer(address,uint256) (#791-794)
allowance(address,address) should be declared external:
- StopElon.allowance(address,address) (#796-798)
approve(address,uint256) should be declared external:
- StopElon.approve(address,uint256) (#800-803)
transferFrom(address,address,uint256) should be declared external:
- StopElon.transferFrom(address,address,uint256) (#805-809)
increaseAllowance(address,uint256) should be declared external:
- StopElon.increaseAllowance(address,uint256) (#811-814)
decreaseAllowance(address,uint256) should be declared external:
- StopElon.decreaseAllowance(address,uint256) (#816-819)
isExcludedFromReward(address) should be declared external:
- StopElon.isExcludedFromReward(address) (#821-823)
totalFees() should be declared external:
- StopElon.totalFees() (#825-827)
updateRouterAndPair(address,address) should be declared external:
- StopElon.updateRouterAndPair(address,address) (#829-832)
deliver(uint256) should be declared external:
- StopElon.deliver(uint256) (#834-841)
reflectionFromToken(uint256,bool) should be declared external:
- StopElon.reflectionFromToken(uint256,bool) (#843-852)
excludeFromReward(address) should be declared external:
- StopElon.excludeFromReward(address) (#862-870)
excludeFromFee(address) should be declared external:
- StopElon.excludeFromFee(address) (#909-911)
includeInFee(address) should be declared external:
- StopElon.includeInFee(address) (#913-915)
setSwapAndLiquifyEnabled(bool) should be declared external:
- StopElon.setSwapAndLiquifyEnabled(bool) (#931-934)
isExcludedFromFee(address) should be declared external:
- StopElon.isExcludedFromFee(address) (#1016-1018)
safeTransferETH(address,uint256) should be declared external:
- StopElon.safeTransferETH(address,uint256) (#1183-1186)
safeTransfer(address,address,uint256) should be declared external:
- StopElon.safeTransfer(address,address,uint256) (#1188-1192)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Average 30d number of PancakeSwap swaps is low.


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


Token is deployed only at one blockchain

Contract has 10% buy tax and 10% sell tax.
Taxes are low and contract ownership is renounced.

No disclosed threats


Unable to find code repository for the project


Alexa traffic rank is very low

Additional information: link


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


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for STOPELON

News for STOPELON