CateShiba Token Logo

CHIBA [CateShiba] Token

About CHIBA

Listings

Token 22 months
CoinMarketCap 16 months
white paper

The goal of CateShiba is to create an ecosystem for pet lovers while preventing dogs and cats of all breeds from being abandoned.

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links

Reentrancy in CATESHIBA._transfer(address,address,uint256) (#1021-1065):
External calls:
- swapAndLiquify(contractTokenBalance) (#1052)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1113-1120)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1099-1105)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1052)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1113-1120)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1064)
- _rOwned[_BurnWallet] = _rOwned[_BurnWallet].add(rBurn) (#933)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1160)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1149)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1150)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#891)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1174)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1175)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1162)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#893)
- _tokenTransfer(from,to,amount,takeFee) (#1064)
- _rTotal = _rTotal.sub(rFee) (#930)
- _tokenTransfer(from,to,amount,takeFee) (#1064)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#890)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1173)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1161)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#892)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

CATESHIBA.addLiquidity(uint256,uint256) (#1108-1121) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1113-1120)
Ensure that all the return values of the function calls are used.

Additional information: link

CATESHIBA._approve(address,address,uint256).owner (#1013) shadows:
- Ownable.owner() (#428-430) (function)
Rename the local variables that shadow another component.

Additional information: link

CATESHIBA.setMaxTxPercent(uint256) (#915-919) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#916-918)
Emit an event for critical parameter changes.

Additional information: link

CATESHIBA.constructor(address).BurnWallet (#749) lacks a zero-check on :
- _BurnWallet = BurnWallet (#764)
Check that the address is not zero.

Additional information: link

Reentrancy in CATESHIBA.transferFrom(address,address,uint256) (#803-807):
External calls:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1113-1120)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1099-1105)
External calls sending eth:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1113-1120)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#805)
- _allowances[owner][spender] = amount (#1017)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CATESHIBA.transferFrom(address,address,uint256) (#803-807):
External calls:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1113-1120)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1099-1105)
External calls sending eth:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1113-1120)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1018)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#805)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#373-394) uses assembly
- INLINE ASM (#386-389)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#241-244) is never used and should be removed
Remove unused functions.

Additional information: link

CATESHIBA._previousLiquidityFee (#723) 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._functionCallWithValue(address,bytes,uint256,string) (#373-394):
- (success,returndata) = target.call{value: weiValue}(data) (#377)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Constant CATESHIBA._Burn_FEE (#734) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Variable CATESHIBA._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to CATESHIBA._transferFromExcluded(address,address,uint256).tTransferAmount (#1170)
Prevent variables from having similar names.

Additional information: link

CATESHIBA.slitherConstructorVariables() (#697-1182) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 100000000000000 * 10 ** 9 (#732)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CATESHIBA._Burn_FEE (#734) is never used in CATESHIBA (#697-1182)
Remove unused state variables.

Additional information: link

CATESHIBA.numTokensSellToAddToLiquidity (#732) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- CATESHIBA.isExcludedFromFee(address) (#1009-1011)
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.


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.


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token was delisted from CoinGecko

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


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


Young tokens have high risks of price dump / death

Price for CHIBA