Shenron Inu Token Logo

ShenronInu [Shenron Inu] Token

About ShenronInu

Listings

Not Found
Token 4 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 12 January 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...)

ShenronInu.sendETHToMarketing(uint256) (#945-948) sends eth to arbitrary user
Dangerous calls:
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#946)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ShenronInu._transfer(address,address,uint256) (#886-925):
External calls:
- swapTokensForEth(contractTokenBalance) (#907)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#936-942)
External calls sending eth:
- sendETHToMarketing(address(this).balance) (#911)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#946)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1029)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#988)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#997)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1008)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1018)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#989)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#999)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1009)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1020)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _rTotal = _rTotal.sub(rFee) (#1035)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing) (#1031)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1017)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1007)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#998)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1019)
Apply the check-effects-interactions pattern.

Additional information: link

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

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.

Low level call in Address.sendValue(address,uint256) (#308-314):
- (success) = recipient.call{value: amount}() (#312)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#374-395):
- (success,returndata) = target.call{value: weiValue}(data) (#378)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

ShenronInu.allowance(address,address).owner (#773) shadows:
- Ownable.owner() (#417-419) (function)
ShenronInu._approve(address,address,uint256).owner (#878) shadows:
- Ownable.owner() (#417-419) (function)
Rename the local variables that shadow another component.

Additional information: link

ShenronInu._setTaxFee(uint256) (#1092-1095) should emit an event for:
- _taxFee = taxFee (#1094)
ShenronInu._setMarketingFee(uint256) (#1097-1100) should emit an event for:
- _MarketingFee = MarketingFee (#1099)
ShenronInu._setMaxTxAmount(uint256) (#1107-1109) should emit an event for:
- _maxTxAmount = maxTxAmount (#1108)
Emit an event for critical parameter changes.

Additional information: link

ShenronInu.constructor(address).MarketingWalletAddress (#725) lacks a zero-check on :
- _MarketingWalletAddress = MarketingWalletAddress (#726)
ShenronInu._setMarketingWallet(address).MarketingWalletAddress (#1102) lacks a zero-check on :
- _MarketingWalletAddress = MarketingWalletAddress (#1103)
Check that the address is not zero.

Additional information: link

Reentrancy in ShenronInu._transfer(address,address,uint256) (#886-925):
External calls:
- swapTokensForEth(contractTokenBalance) (#907)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#936-942)
External calls sending eth:
- sendETHToMarketing(address(this).balance) (#911)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#946)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _MarketingFee = _previousMarketingFee (#871)
- _MarketingFee = 0 (#866)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _previousMarketingFee = _MarketingFee (#863)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _previousTaxFee = _taxFee (#862)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1036)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _taxFee = _previousTaxFee (#870)
- _taxFee = 0 (#865)
Reentrancy in ShenronInu.constructor(address) (#725-745):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#732-733)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#739)
- _isExcludedFromFee[address(this)] = true (#740)
- _isExcludedFromFee[_MarketingWalletAddress] = true (#741)
- uniswapV2Router = _uniswapV2Router (#736)
Reentrancy in ShenronInu.transferFrom(address,address,uint256) (#782-786):
External calls:
- _transfer(sender,recipient,amount) (#783)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#936-942)
External calls sending eth:
- _transfer(sender,recipient,amount) (#783)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#946)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#784)
- _allowances[owner][spender] = amount (#882)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ShenronInu._transfer(address,address,uint256) (#886-925):
External calls:
- swapTokensForEth(contractTokenBalance) (#907)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#936-942)
External calls sending eth:
- sendETHToMarketing(address(this).balance) (#911)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#946)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#992)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- Transfer(sender,recipient,tTransferAmount) (#1012)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- Transfer(sender,recipient,tTransferAmount) (#1002)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- Transfer(sender,recipient,tTransferAmount) (#1023)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
Reentrancy in ShenronInu.constructor(address) (#725-745):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#732-733)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#744)
Reentrancy in ShenronInu.transferFrom(address,address,uint256) (#782-786):
External calls:
- _transfer(sender,recipient,amount) (#783)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#936-942)
External calls sending eth:
- _transfer(sender,recipient,amount) (#783)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#946)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#883)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#784)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#281-290) uses assembly
- INLINE ASM (#288)
Address._functionCallWithValue(address,bytes,uint256,string) (#374-395) uses assembly
- INLINE ASM (#387-390)
Do not use evm assembly.

Additional information: link

ShenronInu.includeAccount(address) (#846-857) has costly operations inside a loop:
- _excluded.pop() (#853)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#374-395) is never used and should be removed
Address.functionCall(address,bytes) (#334-336) is never used and should be removed
Address.functionCall(address,bytes,string) (#344-346) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#359-361) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#369-372) is never used and should be removed
Address.isContract(address) (#281-290) is never used and should be removed
Address.sendValue(address,uint256) (#308-314) is never used and should be removed
Context._msgData() (#43-46) is never used and should be removed
SafeMath.mod(uint256,uint256) (#241-243) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#257-260) is never used and should be removed
ShenronInu._getMaxTxAmount() (#1084-1086) is never used and should be removed
ShenronInu._getTaxFee() (#1080-1082) is never used and should be removed
Remove unused functions.

Additional information: link

ShenronInu._rTotal (#690) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ShenronInu._previousTaxFee (#701) is set pre-construction with a non-constant function or state variable:
- _taxFee
ShenronInu._previousMarketingFee (#702) 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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#503) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#504) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#521) is not in mixedCase
Function IUniswapV2Router01.WETH() (#541) is not in mixedCase
Function ShenronInu._getETHBalance() (#1088-1090) is not in mixedCase
Function ShenronInu._setTaxFee(uint256) (#1092-1095) is not in mixedCase
Function ShenronInu._setMarketingFee(uint256) (#1097-1100) is not in mixedCase
Parameter ShenronInu._setMarketingFee(uint256).MarketingFee (#1097) is not in mixedCase
Function ShenronInu._setMarketingWallet(address) (#1102-1105) is not in mixedCase
Parameter ShenronInu._setMarketingWallet(address).MarketingWalletAddress (#1102) is not in mixedCase
Function ShenronInu._setMaxTxAmount(uint256) (#1107-1109) is not in mixedCase
Variable ShenronInu._MarketingFee (#700) is not in mixedCase
Variable ShenronInu._MarketingWalletAddress (#704) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#44)" inContext (#38-47)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in ShenronInu._transfer(address,address,uint256) (#886-925):
External calls:
- sendETHToMarketing(address(this).balance) (#911)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#946)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _MarketingFee = _previousMarketingFee (#871)
- _MarketingFee = 0 (#866)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _previousMarketingFee = _MarketingFee (#863)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _previousTaxFee = _taxFee (#862)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1029)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#988)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#997)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1008)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1018)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#989)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#999)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1009)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1020)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _rTotal = _rTotal.sub(rFee) (#1035)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1036)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing) (#1031)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1017)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1007)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#998)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1019)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- _taxFee = _previousTaxFee (#870)
- _taxFee = 0 (#865)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#992)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- Transfer(sender,recipient,tTransferAmount) (#1002)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- Transfer(sender,recipient,tTransferAmount) (#1012)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
- Transfer(sender,recipient,tTransferAmount) (#1023)
- _tokenTransfer(sender,recipient,amount,takeFee) (#924)
Reentrancy in ShenronInu.transferFrom(address,address,uint256) (#782-786):
External calls:
- _transfer(sender,recipient,amount) (#783)
- _MarketingWalletAddress.transfer(amount.mul(3).div(8)) (#946)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#784)
- _allowances[owner][spender] = amount (#882)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#883)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#784)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#546) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#547)
Variable ShenronInu._getValues(uint256).rTransferAmount (#1045) is too similar to ShenronInu._getValues(uint256).tTransferAmount (#1043)
Variable ShenronInu._transferToExcluded(address,address,uint256).rTransferAmount (#996) is too similar to ShenronInu._transferToExcluded(address,address,uint256).tTransferAmount (#996)
Variable ShenronInu._getValues(uint256).rTransferAmount (#1045) is too similar to ShenronInu._transferToExcluded(address,address,uint256).tTransferAmount (#996)
Variable ShenronInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1016) is too similar to ShenronInu._transferStandard(address,address,uint256).tTransferAmount (#987)
Variable ShenronInu._transferToExcluded(address,address,uint256).rTransferAmount (#996) is too similar to ShenronInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1006)
Variable ShenronInu._getValues(uint256).rTransferAmount (#1045) is too similar to ShenronInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1006)
Variable ShenronInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1016) is too similar to ShenronInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1016)
Variable ShenronInu.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to ShenronInu._transferStandard(address,address,uint256).tTransferAmount (#987)
Variable ShenronInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1006) is too similar to ShenronInu._transferStandard(address,address,uint256).tTransferAmount (#987)
Variable ShenronInu.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to ShenronInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1016)
Variable ShenronInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1006) is too similar to ShenronInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1016)
Variable ShenronInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1016) is too similar to ShenronInu._transferToExcluded(address,address,uint256).tTransferAmount (#996)
Variable ShenronInu.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to ShenronInu._transferToExcluded(address,address,uint256).tTransferAmount (#996)
Variable ShenronInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1016) is too similar to ShenronInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1006)
Variable ShenronInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1006) is too similar to ShenronInu._transferToExcluded(address,address,uint256).tTransferAmount (#996)
Variable ShenronInu._transferStandard(address,address,uint256).rTransferAmount (#987) is too similar to ShenronInu._transferStandard(address,address,uint256).tTransferAmount (#987)
Variable ShenronInu.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to ShenronInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1006)
Variable ShenronInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1006) is too similar to ShenronInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1006)
Variable ShenronInu._transferToExcluded(address,address,uint256).rTransferAmount (#996) is too similar to ShenronInu._transferStandard(address,address,uint256).tTransferAmount (#987)
Variable ShenronInu._getValues(uint256).rTransferAmount (#1045) is too similar to ShenronInu._getTValues(uint256,uint256,uint256).tTransferAmount (#1052)
Variable ShenronInu._getValues(uint256).rTransferAmount (#1045) is too similar to ShenronInu._transferStandard(address,address,uint256).tTransferAmount (#987)
Variable ShenronInu._getValues(uint256).rTransferAmount (#1045) is too similar to ShenronInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1016)
Variable ShenronInu._getRValues(uint256,uint256,uint256).rTransferAmount (#1059) is too similar to ShenronInu._transferStandard(address,address,uint256).tTransferAmount (#987)
Variable ShenronInu.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to ShenronInu._getTValues(uint256,uint256,uint256).tTransferAmount (#1052)
Variable ShenronInu._transferToExcluded(address,address,uint256).rTransferAmount (#996) is too similar to ShenronInu._getTValues(uint256,uint256,uint256).tTransferAmount (#1052)
Variable ShenronInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1006) is too similar to ShenronInu._getTValues(uint256,uint256,uint256).tTransferAmount (#1052)
Variable ShenronInu._getRValues(uint256,uint256,uint256).rTransferAmount (#1059) is too similar to ShenronInu._getTValues(uint256,uint256,uint256).tTransferAmount (#1052)
Variable ShenronInu._getRValues(uint256,uint256,uint256).rTransferAmount (#1059) is too similar to ShenronInu._transferToExcluded(address,address,uint256).tTransferAmount (#996)
Variable ShenronInu._transferStandard(address,address,uint256).rTransferAmount (#987) is too similar to ShenronInu._getValues(uint256).tTransferAmount (#1043)
Variable ShenronInu._transferStandard(address,address,uint256).rTransferAmount (#987) is too similar to ShenronInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1016)
Variable ShenronInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1016) is too similar to ShenronInu._getValues(uint256).tTransferAmount (#1043)
Variable ShenronInu._transferStandard(address,address,uint256).rTransferAmount (#987) is too similar to ShenronInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1006)
Variable ShenronInu.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to ShenronInu._getValues(uint256).tTransferAmount (#1043)
Variable ShenronInu._transferToExcluded(address,address,uint256).rTransferAmount (#996) is too similar to ShenronInu._getValues(uint256).tTransferAmount (#1043)
Variable ShenronInu._transferToExcluded(address,address,uint256).rTransferAmount (#996) is too similar to ShenronInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1016)
Variable ShenronInu._getRValues(uint256,uint256,uint256).rTransferAmount (#1059) is too similar to ShenronInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1016)
Variable ShenronInu._transferStandard(address,address,uint256).rTransferAmount (#987) is too similar to ShenronInu._getTValues(uint256,uint256,uint256).tTransferAmount (#1052)
Variable ShenronInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1006) is too similar to ShenronInu._getValues(uint256).tTransferAmount (#1043)
Variable ShenronInu._getRValues(uint256,uint256,uint256).rTransferAmount (#1059) is too similar to ShenronInu._getValues(uint256).tTransferAmount (#1043)
Variable ShenronInu._transferStandard(address,address,uint256).rTransferAmount (#987) is too similar to ShenronInu._transferToExcluded(address,address,uint256).tTransferAmount (#996)
Variable ShenronInu._getRValues(uint256,uint256,uint256).rTransferAmount (#1059) is too similar to ShenronInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1006)
Variable ShenronInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1016) is too similar to ShenronInu._getTValues(uint256,uint256,uint256).tTransferAmount (#1052)
Prevent variables from having similar names.

Additional information: link

ShenronInu.slitherConstructorVariables() (#675-1111) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 9 (#689)
ShenronInu.slitherConstructorVariables() (#675-1111) uses literals with too many digits:
- _maxTxAmount = 100000000000000e9 (#712)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ShenronInu._decimals (#695) should be constant
ShenronInu._name (#693) should be constant
ShenronInu._numOfTokensToExchangeForMarketing (#714) should be constant
ShenronInu._symbol (#694) should be constant
ShenronInu._tTotal (#689) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#436-439)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#445-449)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#451-453)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#456-461)
unlock() should be declared external:
- Ownable.unlock() (#464-469)
name() should be declared external:
- ShenronInu.name() (#747-749)
symbol() should be declared external:
- ShenronInu.symbol() (#751-753)
decimals() should be declared external:
- ShenronInu.decimals() (#755-757)
totalSupply() should be declared external:
- ShenronInu.totalSupply() (#759-761)
transfer(address,uint256) should be declared external:
- ShenronInu.transfer(address,uint256) (#768-771)
allowance(address,address) should be declared external:
- ShenronInu.allowance(address,address) (#773-775)
approve(address,uint256) should be declared external:
- ShenronInu.approve(address,uint256) (#777-780)
transferFrom(address,address,uint256) should be declared external:
- ShenronInu.transferFrom(address,address,uint256) (#782-786)
increaseAllowance(address,uint256) should be declared external:
- ShenronInu.increaseAllowance(address,uint256) (#788-791)
decreaseAllowance(address,uint256) should be declared external:
- ShenronInu.decreaseAllowance(address,uint256) (#793-796)
isExcluded(address) should be declared external:
- ShenronInu.isExcluded(address) (#798-800)
totalFees() should be declared external:
- ShenronInu.totalFees() (#806-808)
deliver(uint256) should be declared external:
- ShenronInu.deliver(uint256) (#810-817)
reflectionFromToken(uint256,bool) should be declared external:
- ShenronInu.reflectionFromToken(uint256,bool) (#819-828)
isExcludedFromFee(address) should be declared external:
- ShenronInu.isExcludedFromFee(address) (#874-876)
_getETHBalance() should be declared external:
- ShenronInu._getETHBalance() (#1088-1090)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Telegram and Twitter accounts


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for ShenronInu