ShibaColor Token Logo

SHICO [ShibaColor] Token

About SHICO

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 17 February 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...)

Reentrancy in ShibaColor._transfer(address,address,uint256) (#659-698):
External calls:
- swapAndLiquify(contractTokenBalance) (#674)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#762-768)
- buyBackTokens(balance.mul(50).div(100)) (#683)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#778-783)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#674)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
- buyBackTokens(balance.mul(50).div(100)) (#683)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#778-783)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#697)
- _burnFee = _previousBurnFee (#638)
- _burnFee = 0 (#623)
- _tokenTransfer(from,to,amount,takeFee) (#697)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#604)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#838)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#858)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#839)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#880)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#901)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#860)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#881)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#903)
- _tokenTransfer(from,to,amount,takeFee) (#697)
- _rTotal = _rTotal.sub(rFee) (#527)
- _tokenTransfer(from,to,amount,takeFee) (#697)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#605)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#879)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#900)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#859)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#902)
- _tokenTransfer(from,to,amount,takeFee) (#697)
- _walletFee = _previousWalletFee (#639)
- _walletFee = 0 (#624)
- buyBackTokens(balance.mul(50).div(100)) (#683)
- inSwapAndLiquify = true (#393)
- inSwapAndLiquify = false (#395)
Apply the check-effects-interactions pattern.

Additional information: link

ShibaColor.swapAndLiquify(uint256) (#700-745) performs a multiplication on the result of a division:
-spentAmount = contractTokenBalance.div(totFee).mul(_burnFee) (#707)
ShibaColor.swapAndLiquify(uint256) (#700-745) performs a multiplication on the result of a division:
-spentAmount = contractTokenBalance.div(totFee).mul(_walletFee) (#713)
Consider ordering multiplication before division.

Additional information: link

ShibaColor.addLiquidity(uint256,uint256) (#786-799) ignores return value by pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
Ensure that all the return values of the function calls are used.

Additional information: link

ShibaColor.allowance(address,address).owner (#460) shadows:
- ERC20Ownable.owner() (#151-153) (function)
ShibaColor._approve(address,address,uint256).owner (#648) shadows:
- ERC20Ownable.owner() (#151-153) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in ShibaColor._transfer(address,address,uint256) (#659-698):
External calls:
- swapAndLiquify(contractTokenBalance) (#674)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#762-768)
- buyBackTokens(balance.mul(50).div(100)) (#683)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#778-783)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#674)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
- buyBackTokens(balance.mul(50).div(100)) (#683)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#778-783)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#697)
- HodlersFee = _previousTaxFee (#636)
- HodlersFee = 0 (#622)
- _tokenTransfer(from,to,amount,takeFee) (#697)
- _previousBurnFee = _burnFee (#620)
- _tokenTransfer(from,to,amount,takeFee) (#697)
- _previousTaxFee = HodlersFee (#619)
- _tokenTransfer(from,to,amount,takeFee) (#697)
- _previousWalletFee = _walletFee (#621)
- _tokenTransfer(from,to,amount,takeFee) (#697)
- _tFeeTotal = _tFeeTotal.add(tFee) (#528)
Reentrancy in ShibaColor.constructor() (#399-432):
External calls:
- pcsV2Pair = IUniswapV2Factory(_pcsV2Router.factory()).createPair(address(this),_pcsV2Router.WETH()) (#419)
State variables written after the call(s):
- HodlersFee = totalfee / 3 (#427)
- _burnFee = totalfee / 3 (#428)
- _isExcludedFromFee[_msgSender()] = true (#424)
- _isExcludedFromFee[address(this)] = true (#425)
- _walletFee = totalfee / 3 (#429)
- pcsV2Router = _pcsV2Router (#422)
- totalfee = 50 (#426)
Reentrancy in ShibaColor.swapAndLiquify(uint256) (#700-745):
External calls:
- swapTokensForBNB(half) (#735)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#762-768)
- addLiquidity(otherHalf,newBalance) (#741)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#741)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#741)
- _allowances[owner][spender] = amount (#655)
Reentrancy in ShibaColor.transferFrom(address,address,uint256) (#469-481):
External calls:
- _transfer(sender,recipient,amount) (#474)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#778-783)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#762-768)
External calls sending eth:
- _transfer(sender,recipient,amount) (#474)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#778-783)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#475-479)
- _allowances[owner][spender] = amount (#655)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ShibaColor._transfer(address,address,uint256) (#659-698):
External calls:
- swapAndLiquify(contractTokenBalance) (#674)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#762-768)
- buyBackTokens(balance.mul(50).div(100)) (#683)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#778-783)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#674)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
- buyBackTokens(balance.mul(50).div(100)) (#683)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#778-783)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#842)
- _tokenTransfer(from,to,amount,takeFee) (#697)
- Transfer(sender,recipient,tTransferAmount) (#863)
- _tokenTransfer(from,to,amount,takeFee) (#697)
- Transfer(sender,recipient,tTransferAmount) (#884)
- _tokenTransfer(from,to,amount,takeFee) (#697)
- Transfer(sender,recipient,tTransferAmount) (#906)
- _tokenTransfer(from,to,amount,takeFee) (#697)
Reentrancy in ShibaColor.constructor() (#399-432):
External calls:
- pcsV2Pair = IUniswapV2Factory(_pcsV2Router.factory()).createPair(address(this),_pcsV2Router.WETH()) (#419)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#431)
Reentrancy in ShibaColor.swapAndLiquify(uint256) (#700-745):
External calls:
- swapTokensForBNB(half) (#735)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#762-768)
- addLiquidity(otherHalf,newBalance) (#741)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#741)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#656)
- addLiquidity(otherHalf,newBalance) (#741)
- SwapAndLiquify(half,newBalance,otherHalf) (#743)
Reentrancy in ShibaColor.transferFrom(address,address,uint256) (#469-481):
External calls:
- _transfer(sender,recipient,amount) (#474)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#778-783)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#762-768)
External calls sending eth:
- _transfer(sender,recipient,amount) (#474)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp.add(300)) (#791-798)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#778-783)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#656)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#475-479)
Apply the check-effects-interactions pattern.

Additional information: link

ShibaColor.includeInReward(address) (#508-519) has costly operations inside a loop:
- _excluded.pop() (#515)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#134-137) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#113-118) is never used and should be removed
SafeMath.mod(uint256,uint256) (#101-103) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#121-126) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#21-27) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#62-67) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#74-79) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#46-55) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#34-39) is never used and should be removed
Remove unused functions.

Additional information: link

ShibaColor._totalfee (#365) is set pre-construction with a non-constant function or state variable:
- totalfee
ShibaColor._previousTaxFee (#368) is set pre-construction with a non-constant function or state variable:
- HodlersFee
ShibaColor._previousBurnFee (#373) is set pre-construction with a non-constant function or state variable:
- _burnFee
ShibaColor._previousWalletFee (#376) is set pre-construction with a non-constant function or state variable:
- _walletFee
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 version^0.8.0 (#14) allows old versions
solc-0.8.0 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

Function IUniswapV2Router01.WETH() (#174) is not in mixedCase
Parameter ShibaColor.calculateTaxFee(uint256)._amount (#608) is not in mixedCase
Parameter ShibaColor.calculateLiquidityFee(uint256)._amount (#612) is not in mixedCase
Function ShibaColor.SetTotalFee(uint8) (#627-633) is not in mixedCase
Parameter ShibaColor.SetTotalFee(uint8).TFee (#627) is not in mixedCase
Variable ShibaColor._tTotal (#356) is not in mixedCase
Variable ShibaColor._name (#360) is not in mixedCase
Variable ShibaColor._symbol (#361) is not in mixedCase
Variable ShibaColor.HodlersFee (#367) is not in mixedCase
Variable ShibaColor._burnFee (#372) is not in mixedCase
Variable ShibaColor._walletFee (#375) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#135)" inContext (#129-138)
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 (#179) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#180)
Variable ShibaColor._transferStandard(address,address,uint256).rTransferAmount (#832) is too similar to ShibaColor._transferToExcluded(address,address,uint256).tTransferAmount (#854)
Variable ShibaColor._transferStandard(address,address,uint256).rTransferAmount (#832) is too similar to ShibaColor._getTValues(uint256).tTransferAmount (#559)
Variable ShibaColor._getValues(uint256).rTransferAmount (#544) is too similar to ShibaColor._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable ShibaColor._transferStandard(address,address,uint256).rTransferAmount (#832) is too similar to ShibaColor._getValues(uint256).tTransferAmount (#543)
Variable ShibaColor._transferStandard(address,address,uint256).rTransferAmount (#832) is too similar to ShibaColor._transferStandard(address,address,uint256).tTransferAmount (#834)
Variable ShibaColor._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#580) is too similar to ShibaColor._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable ShibaColor._getValues(uint256).rTransferAmount (#544) is too similar to ShibaColor._getTValues(uint256).tTransferAmount (#559)
Variable ShibaColor._transferFromExcluded(address,address,uint256).rTransferAmount (#873) is too similar to ShibaColor._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable ShibaColor._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to ShibaColor._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable ShibaColor._transferStandard(address,address,uint256).rTransferAmount (#832) is too similar to ShibaColor._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable ShibaColor._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#580) is too similar to ShibaColor._getTValues(uint256).tTransferAmount (#559)
Variable ShibaColor._transferStandard(address,address,uint256).rTransferAmount (#832) is too similar to ShibaColor._transferFromExcluded(address,address,uint256).tTransferAmount (#875)
Variable ShibaColor._transferFromExcluded(address,address,uint256).rTransferAmount (#873) is too similar to ShibaColor._transferStandard(address,address,uint256).tTransferAmount (#834)
Variable ShibaColor._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to ShibaColor._transferToExcluded(address,address,uint256).tTransferAmount (#854)
Variable ShibaColor._transferToExcluded(address,address,uint256).rTransferAmount (#852) is too similar to ShibaColor._transferStandard(address,address,uint256).tTransferAmount (#834)
Variable ShibaColor._getValues(uint256).rTransferAmount (#544) is too similar to ShibaColor._transferToExcluded(address,address,uint256).tTransferAmount (#854)
Variable ShibaColor._transferFromExcluded(address,address,uint256).rTransferAmount (#873) is too similar to ShibaColor._transferToExcluded(address,address,uint256).tTransferAmount (#854)
Variable ShibaColor._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#580) is too similar to ShibaColor._getValues(uint256).tTransferAmount (#543)
Variable ShibaColor._transferToExcluded(address,address,uint256).rTransferAmount (#852) is too similar to ShibaColor._transferBothExcluded(address,address,uint256).tTransferAmount (#896)
Variable ShibaColor._transferToExcluded(address,address,uint256).rTransferAmount (#852) is too similar to ShibaColor._transferToExcluded(address,address,uint256).tTransferAmount (#854)
Variable ShibaColor._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to ShibaColor._getValues(uint256).tTransferAmount (#543)
Variable ShibaColor._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#580) is too similar to ShibaColor._transferFromExcluded(address,address,uint256).tTransferAmount (#875)
Variable ShibaColor._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to ShibaColor._getTValues(uint256).tTransferAmount (#559)
Variable ShibaColor._getValues(uint256).rTransferAmount (#544) is too similar to ShibaColor._getValues(uint256).tTransferAmount (#543)
Variable ShibaColor._transferFromExcluded(address,address,uint256).rTransferAmount (#873) is too similar to ShibaColor._getValues(uint256).tTransferAmount (#543)
Variable ShibaColor._transferToExcluded(address,address,uint256).rTransferAmount (#852) is too similar to ShibaColor._getValues(uint256).tTransferAmount (#543)
Variable ShibaColor._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#580) is too similar to ShibaColor._transferStandard(address,address,uint256).tTransferAmount (#834)
Variable ShibaColor._transferFromExcluded(address,address,uint256).rTransferAmount (#873) is too similar to ShibaColor._getTValues(uint256).tTransferAmount (#559)
Variable ShibaColor._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to ShibaColor._transferFromExcluded(address,address,uint256).tTransferAmount (#875)
Variable ShibaColor._transferToExcluded(address,address,uint256).rTransferAmount (#852) is too similar to ShibaColor._getTValues(uint256).tTransferAmount (#559)
Variable ShibaColor._getValues(uint256).rTransferAmount (#544) is too similar to ShibaColor._transferFromExcluded(address,address,uint256).tTransferAmount (#875)
Variable ShibaColor._transferFromExcluded(address,address,uint256).rTransferAmount (#873) is too similar to ShibaColor._transferFromExcluded(address,address,uint256).tTransferAmount (#875)
Variable ShibaColor._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#580) is too similar to ShibaColor._transferToExcluded(address,address,uint256).tTransferAmount (#854)
Variable ShibaColor._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to ShibaColor._transferStandard(address,address,uint256).tTransferAmount (#834)
Variable ShibaColor._transferToExcluded(address,address,uint256).rTransferAmount (#852) is too similar to ShibaColor._transferFromExcluded(address,address,uint256).tTransferAmount (#875)
Variable ShibaColor._getValues(uint256).rTransferAmount (#544) is too similar to ShibaColor._transferStandard(address,address,uint256).tTransferAmount (#834)
Prevent variables from having similar names.

Additional information: link

ShibaColor.constructor() (#399-432) uses literals with too many digits:
- buyBackUpperLimit = _tTotal.mul(1).div(100000) (#408)
ShibaColor.slitherConstructorVariables() (#340-928) uses literals with too many digits:
- dead = 0x000000000000000000000000000000000000dEaD (#343)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ShibaColor.zero (#344) is never used in ShibaColor (#340-928)
ShibaColor._totalfee (#365) is never used in ShibaColor (#340-928)
Remove unused state variables.

Additional information: link

ShibaColor.dead (#343) should be constant
ShibaColor.swapAndLiquifyEnabled (#384) should be constant
ShibaColor.zero (#344) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- ERC20Ownable.renounceOwnership() (#160-163)
transferOwnership(address) should be declared external:
- ERC20Ownable.transferOwnership(address) (#165-169)
name() should be declared external:
- ShibaColor.name() (#434-436)
symbol() should be declared external:
- ShibaColor.symbol() (#438-440)
decimals() should be declared external:
- ShibaColor.decimals() (#442-444)
totalSupply() should be declared external:
- ShibaColor.totalSupply() (#446-448)
transfer(address,uint256) should be declared external:
- ShibaColor.transfer(address,uint256) (#455-458)
allowance(address,address) should be declared external:
- ShibaColor.allowance(address,address) (#460-462)
approve(address,uint256) should be declared external:
- ShibaColor.approve(address,uint256) (#464-467)
transferFrom(address,address,uint256) should be declared external:
- ShibaColor.transferFrom(address,address,uint256) (#469-481)
isExcludedFromReward(address) should be declared external:
- ShibaColor.isExcludedFromReward(address) (#486-488)
excludeFromReward(address) should be declared external:
- ShibaColor.excludeFromReward(address) (#498-506)
SetTotalFee(uint8) should be declared external:
- ShibaColor.SetTotalFee(uint8) (#627-633)
isExcludedFromFee(address) should be declared external:
- ShibaColor.isExcludedFromFee(address) (#643-645)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


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 SHICO