Tourist Shiba Inu is a utility blockchain platform which focuses in Developing many major security technologies, BSC contract scanner launched.
Reentrancy in TOURISTSHIBAINU._transfer(address,address,uint256) (#636-662):
External calls:
- swapTokens(contractTokenBalance) (#651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- swapTokens(contractTokenBalance) (#651)
- recipient.transfer(amount) (#926)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _liquidityFee = 0 (#836)
- _liquidityFee = _previousLiquidityFee (#843)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _marketingFee = 0 (#837)
- _marketingFee = _previousMarketingFee (#844)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#818)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#734)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#743)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#754)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#764)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#735)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#745)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#755)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#766)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _rTotal = _rTotal.sub(rFee) (#773)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#820)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#753)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#763)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#744)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#765)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
TOURISTSHIBAINU.slitherConstructorVariables() (#443-974) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#448)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
TOURISTSHIBAINU._decimals (#465) should be constant
TOURISTSHIBAINU._name (#463) should be constant
TOURISTSHIBAINU._symbol (#464) should be constant
TOURISTSHIBAINU._tTotal (#459) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
TOURISTSHIBAINU.setMarketingAddress(address)._marketingAddress (#889) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#890)
Check that the address is not zero.
Additional information: link
TOURISTSHIBAINU.slitherConstructorVariables() (#443-974) performs a multiplication on the result of a division:
-maxLimit = _tTotal.div(100).mul(2) (#937)
Consider ordering multiplication before division.
Additional information: link
TOURISTSHIBAINU.addLiquidity(uint256,uint256) (#700-712) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
Ensure that all the return values of the function calls are used.
Additional information: link
TOURISTSHIBAINU.allowance(address,address).owner (#549) shadows:
- Ownable.owner() (#164-166) (function)
TOURISTSHIBAINU._approve(address,address,uint256).owner (#628) shadows:
- Ownable.owner() (#164-166) (function)
Rename the local variables that shadow another component.
Additional information: link
TOURISTSHIBAINU.setTaxFeePercent(uint256) (#860-863) should emit an event for:
- _taxFee = taxFee (#861)
- _previousTaxFee = _taxFee (#862)
TOURISTSHIBAINU.setLiquidityFeePercent(uint256) (#865-868) should emit an event for:
- _liquidityFee = liquidityFee (#866)
- _previousLiquidityFee = _liquidityFee (#867)
TOURISTSHIBAINU.setMarketingFeePercent(uint256) (#870-873) should emit an event for:
- _marketingFee = marketingFee (#871)
- _previousMarketingFee = _marketingFee (#872)
TOURISTSHIBAINU.setBurnFeePercent(uint256) (#875-878) should emit an event for:
- _burnFee = burnFee (#876)
- _previousBurnFee = _burnFee (#877)
TOURISTSHIBAINU.setMaxTxAmount(uint256) (#880-882) should emit an event for:
- _maxTxAmount = maxTxAmount (#881)
TOURISTSHIBAINU.setNumTokensSellToAddToLiquidity(uint256) (#885-887) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#886)
TOURISTSHIBAINU.setMaxWalletLimit(uint256) (#966-969) should emit an event for:
- maxLimit = amount (#968)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in TOURISTSHIBAINU._transfer(address,address,uint256) (#636-662):
External calls:
- swapTokens(contractTokenBalance) (#651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- swapTokens(contractTokenBalance) (#651)
- recipient.transfer(amount) (#926)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _burnFee = 0 (#838)
- _burnFee = _previousBurnFee (#845)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _tFeeTotal = _tFeeTotal.add(tFee) (#774)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _taxFee = _previousTaxFee (#842)
- _taxFee = 0 (#835)
Reentrancy in TOURISTSHIBAINU.constructor() (#511-521):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#514-515)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#517)
- _isExcludedFromFee[address(this)] = true (#518)
- excludeWalletsFromWhales() (#519)
- _isExcludedFromWhale[owner()] = true (#940)
- _isExcludedFromWhale[address(this)] = true (#941)
- _isExcludedFromWhale[address(0)] = true (#942)
- _isExcludedFromWhale[uniswapV2Pair] = true (#943)
- uniswapV2Router = _uniswapV2Router (#516)
Reentrancy in TOURISTSHIBAINU.swapTokens(uint256) (#664-677):
External calls:
- swapTokensForEth(swapableTokens) (#669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
- addLiquidity(halfLiquidityTokens,bnbForLiquidity) (#672)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,bnbForLiquidity) (#672)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
State variables written after the call(s):
- addLiquidity(halfLiquidityTokens,bnbForLiquidity) (#672)
- _allowances[owner][spender] = amount (#632)
Reentrancy in TOURISTSHIBAINU.transferFrom(address,address,uint256) (#558-562):
External calls:
- _transfer(sender,recipient,amount) (#559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- _transfer(sender,recipient,amount) (#559)
- recipient.transfer(amount) (#926)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#560)
- _allowances[owner][spender] = amount (#632)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TOURISTSHIBAINU._transfer(address,address,uint256) (#636-662):
External calls:
- swapTokens(contractTokenBalance) (#651)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- swapTokens(contractTokenBalance) (#651)
- recipient.transfer(amount) (#926)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#738)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- Transfer(sender,recipient,tTransferAmount) (#758)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- Transfer(sender,recipient,tTransferAmount) (#748)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- Transfer(sender,recipient,tTransferAmount) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#661)
Reentrancy in TOURISTSHIBAINU.constructor() (#511-521):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#514-515)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#520)
Reentrancy in TOURISTSHIBAINU.swapTokens(uint256) (#664-677):
External calls:
- swapTokensForEth(swapableTokens) (#669)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
- addLiquidity(halfLiquidityTokens,bnbForLiquidity) (#672)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,bnbForLiquidity) (#672)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#633)
- addLiquidity(halfLiquidityTokens,bnbForLiquidity) (#672)
- SwapAndLiquify(halfLiquidityTokens,bnbForLiquidity,halfLiquidityTokens) (#673)
Reentrancy in TOURISTSHIBAINU.swapTokensForEth(uint256) (#680-697):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#696)
Reentrancy in TOURISTSHIBAINU.transferFrom(address,address,uint256) (#558-562):
External calls:
- _transfer(sender,recipient,amount) (#559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#689-695)
External calls sending eth:
- _transfer(sender,recipient,amount) (#559)
- recipient.transfer(amount) (#926)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#633)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#560)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#199-204) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#201)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#94-103) uses assembly
- INLINE ASM (#101)
Address._functionCallWithValue(address,bytes,uint256,string) (#131-148) uses assembly
- INLINE ASM (#140-143)
Do not use evm assembly.
Additional information: link
TOURISTSHIBAINU.includeInReward(address) (#615-626) has costly operations inside a loop:
- _excluded.pop() (#622)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#131-148) is never used and should be removed
Address.functionCall(address,bytes) (#114-116) is never used and should be removed
Address.functionCall(address,bytes,string) (#118-120) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#122-124) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#126-129) is never used and should be removed
Address.isContract(address) (#94-103) is never used and should be removed
Address.sendValue(address,uint256) (#105-111) is never used and should be removed
Context._msgData() (#17-20) is never used and should be removed
SafeMath.mod(uint256,uint256) (#82-84) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#86-89) is never used and should be removed
Remove unused functions.
Additional information: link
TOURISTSHIBAINU._rTotal (#460) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
TOURISTSHIBAINU._previousTaxFee (#468) is set pre-construction with a non-constant function or state variable:
- _taxFee
TOURISTSHIBAINU._previousLiquidityFee (#471) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
TOURISTSHIBAINU._previousMarketingFee (#474) is set pre-construction with a non-constant function or state variable:
- _marketingFee
TOURISTSHIBAINU._previousBurnFee (#477) is set pre-construction with a non-constant function or state variable:
- _burnFee
TOURISTSHIBAINU.maxLimit (#937) is set pre-construction with a non-constant function or state variable:
- _tTotal.div(100).mul(2)
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Pragma version0.8.11 (#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#105-111):
- (success) = recipient.call{value: amount}() (#109)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#131-148):
- (success,returndata) = target.call{value: weiValue}(data) (#134)
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() (#243) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#244) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#260) is not in mixedCase
Function IUniswapV2Router01.WETH() (#281) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#436) is not in mixedCase
Parameter TOURISTSHIBAINU.calculateTaxFee(uint256)._amount (#823) is not in mixedCase
Parameter TOURISTSHIBAINU.calculateLiquidityFee(uint256)._amount (#829) is not in mixedCase
Parameter TOURISTSHIBAINU.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#885) is not in mixedCase
Parameter TOURISTSHIBAINU.setMarketingAddress(address)._marketingAddress (#889) is not in mixedCase
Parameter TOURISTSHIBAINU.setSwapAndLiquifyEnabled(bool)._enabled (#893) is not in mixedCase
Parameter TOURISTSHIBAINU.setExcludedFromWhale(address,bool)._enabled (#961) is not in mixedCase
Variable TOURISTSHIBAINU._taxFee (#467) is not in mixedCase
Variable TOURISTSHIBAINU._liquidityFee (#470) is not in mixedCase
Variable TOURISTSHIBAINU._marketingFee (#473) is not in mixedCase
Variable TOURISTSHIBAINU._burnFee (#476) is not in mixedCase
Variable TOURISTSHIBAINU._maxTxAmount (#479) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#18)" inContext (#12-21)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in TOURISTSHIBAINU._transfer(address,address,uint256) (#636-662):
External calls:
- swapTokens(contractTokenBalance) (#651)
- recipient.transfer(amount) (#926)
External calls sending eth:
- swapTokens(contractTokenBalance) (#651)
- recipient.transfer(amount) (#926)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _burnFee = 0 (#838)
- _burnFee = _previousBurnFee (#845)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _liquidityFee = 0 (#836)
- _liquidityFee = _previousLiquidityFee (#843)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _marketingFee = 0 (#837)
- _marketingFee = _previousMarketingFee (#844)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#818)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#734)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#743)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#754)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#764)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#735)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#745)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#755)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#766)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _rTotal = _rTotal.sub(rFee) (#773)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _tFeeTotal = _tFeeTotal.add(tFee) (#774)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#820)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#753)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#763)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#744)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#765)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _taxFee = _previousTaxFee (#842)
- _taxFee = 0 (#835)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#738)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- Transfer(sender,recipient,tTransferAmount) (#758)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- Transfer(sender,recipient,tTransferAmount) (#748)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- Transfer(sender,recipient,tTransferAmount) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#661)
Reentrancy in TOURISTSHIBAINU.transferFrom(address,address,uint256) (#558-562):
External calls:
- _transfer(sender,recipient,amount) (#559)
- recipient.transfer(amount) (#926)
External calls sending eth:
- _transfer(sender,recipient,amount) (#559)
- recipient.transfer(amount) (#926)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#704-711)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#560)
- _allowances[owner][spender] = amount (#632)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#633)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#560)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#286) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#287)
Variable TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).rTransferAmount (#762) is too similar to TOURISTSHIBAINU._getValues(uint256).tTransferAmount (#778)
Variable TOURISTSHIBAINU._transferToExcluded(address,address,uint256).rTransferAmount (#742) is too similar to TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).tTransferAmount (#762)
Variable TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).rTransferAmount (#752) is too similar to TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).tTransferAmount (#762)
Variable TOURISTSHIBAINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#794) is too similar to TOURISTSHIBAINU._getValues(uint256).tTransferAmount (#778)
Variable TOURISTSHIBAINU._transferToExcluded(address,address,uint256).rTransferAmount (#742) is too similar to TOURISTSHIBAINU._transferStandard(address,address,uint256).tTransferAmount (#733)
Variable TOURISTSHIBAINU._transferStandard(address,address,uint256).rTransferAmount (#733) is too similar to TOURISTSHIBAINU._transferStandard(address,address,uint256).tTransferAmount (#733)
Variable TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).rTransferAmount (#752) is too similar to TOURISTSHIBAINU._transferStandard(address,address,uint256).tTransferAmount (#733)
Variable TOURISTSHIBAINU._transferToExcluded(address,address,uint256).rTransferAmount (#742) is too similar to TOURISTSHIBAINU._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).rTransferAmount (#752) is too similar to TOURISTSHIBAINU._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable TOURISTSHIBAINU.reflectionFromToken(uint256,bool).rTransferAmount (#594) is too similar to TOURISTSHIBAINU._getValues(uint256).tTransferAmount (#778)
Variable TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).rTransferAmount (#762) is too similar to TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).tTransferAmount (#762)
Variable TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).rTransferAmount (#762) is too similar to TOURISTSHIBAINU._transferStandard(address,address,uint256).tTransferAmount (#733)
Variable TOURISTSHIBAINU._transferToExcluded(address,address,uint256).rTransferAmount (#742) is too similar to TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Variable TOURISTSHIBAINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#794) is too similar to TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).tTransferAmount (#762)
Variable TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).rTransferAmount (#752) is too similar to TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Variable TOURISTSHIBAINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#794) is too similar to TOURISTSHIBAINU._transferStandard(address,address,uint256).tTransferAmount (#733)
Variable TOURISTSHIBAINU.reflectionFromToken(uint256,bool).rTransferAmount (#594) is too similar to TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).tTransferAmount (#762)
Variable TOURISTSHIBAINU.reflectionFromToken(uint256,bool).rTransferAmount (#594) is too similar to TOURISTSHIBAINU._transferStandard(address,address,uint256).tTransferAmount (#733)
Variable TOURISTSHIBAINU._transferToExcluded(address,address,uint256).rTransferAmount (#742) is too similar to TOURISTSHIBAINU._getValues(uint256).tTransferAmount (#778)
Variable TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).rTransferAmount (#752) is too similar to TOURISTSHIBAINU._getValues(uint256).tTransferAmount (#778)
Variable TOURISTSHIBAINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#794) is too similar to TOURISTSHIBAINU._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable TOURISTSHIBAINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#794) is too similar to TOURISTSHIBAINU._getTValues(uint256).tTransferAmount (#786)
Variable TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).rTransferAmount (#762) is too similar to TOURISTSHIBAINU._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).rTransferAmount (#762) is too similar to TOURISTSHIBAINU._getTValues(uint256).tTransferAmount (#786)
Variable TOURISTSHIBAINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#794) is too similar to TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Variable TOURISTSHIBAINU._transferStandard(address,address,uint256).rTransferAmount (#733) is too similar to TOURISTSHIBAINU._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable TOURISTSHIBAINU._transferStandard(address,address,uint256).rTransferAmount (#733) is too similar to TOURISTSHIBAINU._getTValues(uint256).tTransferAmount (#786)
Variable TOURISTSHIBAINU.reflectionFromToken(uint256,bool).rTransferAmount (#594) is too similar to TOURISTSHIBAINU._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable TOURISTSHIBAINU.reflectionFromToken(uint256,bool).rTransferAmount (#594) is too similar to TOURISTSHIBAINU._getTValues(uint256).tTransferAmount (#786)
Variable TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).rTransferAmount (#762) is too similar to TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Variable TOURISTSHIBAINU._transferToExcluded(address,address,uint256).rTransferAmount (#742) is too similar to TOURISTSHIBAINU._getTValues(uint256).tTransferAmount (#786)
Variable TOURISTSHIBAINU._getValues(uint256).rTransferAmount (#779) is too similar to TOURISTSHIBAINU._transferToExcluded(address,address,uint256).tTransferAmount (#742)
Variable TOURISTSHIBAINU._transferStandard(address,address,uint256).rTransferAmount (#733) is too similar to TOURISTSHIBAINU._getValues(uint256).tTransferAmount (#778)
Variable TOURISTSHIBAINU._getValues(uint256).rTransferAmount (#779) is too similar to TOURISTSHIBAINU._getTValues(uint256).tTransferAmount (#786)
Variable TOURISTSHIBAINU._transferStandard(address,address,uint256).rTransferAmount (#733) is too similar to TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Variable TOURISTSHIBAINU._getValues(uint256).rTransferAmount (#779) is too similar to TOURISTSHIBAINU._getValues(uint256).tTransferAmount (#778)
Variable TOURISTSHIBAINU.reflectionFromToken(uint256,bool).rTransferAmount (#594) is too similar to TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Variable TOURISTSHIBAINU._transferStandard(address,address,uint256).rTransferAmount (#733) is too similar to TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).tTransferAmount (#762)
Variable TOURISTSHIBAINU._getValues(uint256).rTransferAmount (#779) is too similar to TOURISTSHIBAINU._transferStandard(address,address,uint256).tTransferAmount (#733)
Variable TOURISTSHIBAINU._getValues(uint256).rTransferAmount (#779) is too similar to TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Variable TOURISTSHIBAINU._transferFromExcluded(address,address,uint256).rTransferAmount (#752) is too similar to TOURISTSHIBAINU._getTValues(uint256).tTransferAmount (#786)
Variable TOURISTSHIBAINU._getValues(uint256).rTransferAmount (#779) is too similar to TOURISTSHIBAINU._transferBothExcluded(address,address,uint256).tTransferAmount (#762)
Prevent variables from having similar names.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#173-176)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#178-182)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#184-186)
getTime() should be declared external:
- Ownable.getTime() (#188-190)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#192-197)
unlock() should be declared external:
- Ownable.unlock() (#199-204)
name() should be declared external:
- TOURISTSHIBAINU.name() (#523-525)
symbol() should be declared external:
- TOURISTSHIBAINU.symbol() (#527-529)
decimals() should be declared external:
- TOURISTSHIBAINU.decimals() (#531-533)
totalSupply() should be declared external:
- TOURISTSHIBAINU.totalSupply() (#535-537)
transfer(address,uint256) should be declared external:
- TOURISTSHIBAINU.transfer(address,uint256) (#544-547)
allowance(address,address) should be declared external:
- TOURISTSHIBAINU.allowance(address,address) (#549-551)
approve(address,uint256) should be declared external:
- TOURISTSHIBAINU.approve(address,uint256) (#553-556)
transferFrom(address,address,uint256) should be declared external:
- TOURISTSHIBAINU.transferFrom(address,address,uint256) (#558-562)
increaseAllowance(address,uint256) should be declared external:
- TOURISTSHIBAINU.increaseAllowance(address,uint256) (#564-567)
decreaseAllowance(address,uint256) should be declared external:
- TOURISTSHIBAINU.decreaseAllowance(address,uint256) (#569-572)
isExcludedFromReward(address) should be declared external:
- TOURISTSHIBAINU.isExcludedFromReward(address) (#574-576)
totalFees() should be declared external:
- TOURISTSHIBAINU.totalFees() (#578-580)
minimumTokensBeforeSwapAmount() should be declared external:
- TOURISTSHIBAINU.minimumTokensBeforeSwapAmount() (#582-584)
reflectionFromToken(uint256,bool) should be declared external:
- TOURISTSHIBAINU.reflectionFromToken(uint256,bool) (#588-597)
excludeFromReward(address) should be declared external:
- TOURISTSHIBAINU.excludeFromReward(address) (#605-613)
isExcludedFromFee(address) should be declared external:
- TOURISTSHIBAINU.isExcludedFromFee(address) (#848-850)
excludeFromFee(address) should be declared external:
- TOURISTSHIBAINU.excludeFromFee(address) (#852-854)
includeInFee(address) should be declared external:
- TOURISTSHIBAINU.includeInFee(address) (#856-858)
setExcludedFromWhale(address,bool) should be declared external:
- TOURISTSHIBAINU.setExcludedFromWhale(address,bool) (#961-964)
setMaxWalletLimit(uint256) should be declared external:
- TOURISTSHIBAINU.setMaxWalletLimit(uint256) (#966-969)
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 number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Contract has 11% buy tax and 11% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Average 30d PancakeSwap volume is low.
Number of Binance Smart Chain (BSC) token holders is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
Unable to crawl data from the website
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has relatively low CoinMarketCap rank
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account