Catboy is a reflection-based token but we are unlike any other similar project you have come across.
Founded and built by a community that loves comics, manga, anime and pets, CatBoy is not just a parallel version of CatGirl but our ambition is much more. This token is a symbol of the spirit, cohesion and sharing of the meme, manga and cat loving communities around the world.
CatBoy is a more complete, more powerful version and will be the mainstay of CatGirl, just like their love.
Besides building a strong community, we care about the real values that the project brings. We are building the Catboy Merchandise, the Catboy NFT Marketplace and building a worldwide network to donate to feral cats and support struggling cat owners.
With a further vision in 2021, a play-to-earn game is also being planned with an online pet model, connecting the community and sharing fun experiences.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
CatBoy.addLiquidity(uint256,uint256) (#1134-1144) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1136-1143)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CatBoy._transfer(address,address,uint256) (#992-1082):
External calls:
- swapBack() (#1045)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1136-1143)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1125-1131)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1108)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1109)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1116)
External calls sending eth:
- swapBack() (#1045)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1136-1143)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1108)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1109)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1116)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1080)
- _liquidityTokensToSwap += tLiquidity * _buyLiquidityFee / _liquidityFee (#1347)
- _liquidityTokensToSwap += tLiquidity * _sellLiquidityFee / _liquidityFee (#1351)
- _tokenTransfer(from,to,amount,takeFee) (#1080)
- _marketingTokensToSwap += tLiquidity * _buyMarketingFee / _liquidityFee (#1349)
- _marketingTokensToSwap += tLiquidity * _sellMarketingFee / _liquidityFee (#1353)
- _tokenTransfer(from,to,amount,takeFee) (#1080)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1200)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1180)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1181)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1243)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1222)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1223)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1202)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1245)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1357)
- _tokenTransfer(from,to,amount,takeFee) (#1080)
- _rTotal = _rTotal.sub(rFee) (#1252)
- _tokenTransfer(from,to,amount,takeFee) (#1080)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1221)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1242)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1201)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1244)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1359)
- _tokenTransfer(from,to,amount,takeFee) (#1080)
- _teamTokensToSwap += tLiquidity * _buyTeamFee / _liquidityFee (#1348)
- _teamTokensToSwap += tLiquidity * _sellTeamFee / _liquidityFee (#1352)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable._lockTime (#209) is never initialized. It is used in:
- Ownable.getUnlockTime() (#245-247)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
CatBoy._transfer(address,address,uint256) (#992-1082) uses a dangerous strict equality:
- from != owner() && to != uniswapV2Pair && block.number == tradingActiveBlock (#1014)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
CatBoy.swapBack().success (#1108) is written in both
(success) = address(teamAddress).call{value: bnbForTeam}() (#1108)
(success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1109)
Fix or remove the writes.
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.
Reentrancy in CatBoy.swapBack() (#1084-1118):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1095)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1125-1131)
State variables written after the call(s):
- _liquidityTokensToSwap = 0 (#1104)
- _marketingTokensToSwap = 0 (#1105)
- _teamTokensToSwap = 0 (#1106)
Apply the check-effects-interactions pattern.
Additional information: link
CatBoy.addLiquidity(uint256,uint256) (#1134-1144) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1136-1143)
Ensure that all the return values of the function calls are used.
Additional information: link
CatBoy._approve(address,address,uint256).owner (#981) shadows:
- Ownable.owner() (#222-224) (function)
Rename the local variables that shadow another component.
Additional information: link
CatBoy.setGasPriceLimit(uint256) (#908-911) should emit an event for:
- gasPriceLimit = gas * 1000000000 (#910)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in CatBoy.transferFrom(address,address,uint256) (#810-825):
External calls:
- _transfer(sender,recipient,amount) (#815)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1136-1143)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1125-1131)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1108)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1109)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1116)
External calls sending eth:
- _transfer(sender,recipient,amount) (#815)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1136-1143)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1108)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1109)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1116)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#816-823)
- _allowances[owner][spender] = amount (#988)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CatBoy.transferFrom(address,address,uint256) (#810-825):
External calls:
- _transfer(sender,recipient,amount) (#815)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1136-1143)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1125-1131)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1108)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1109)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1116)
External calls sending eth:
- _transfer(sender,recipient,amount) (#815)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1136-1143)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1108)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1109)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1116)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#989)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#816-823)
Apply the check-effects-interactions pattern.
Additional information: link
CatBoy._transfer(address,address,uint256) (#992-1082) uses timestamp for comparisons
Dangerous comparisons:
- boughtEarly[from] && earlyBuyPenaltyEnd <= block.number (#1069)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#180-203) uses assembly
- INLINE ASM (#195-198)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#100-107) is never used and should be removed
Remove unused functions.
Additional information: link
CatBoy._previousLiquidityFee (#645) 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
solc-0.8.9 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 CatBoy.swapBack() (#1084-1118):
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1108)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1109)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1116)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable CatBoy._isExcludedMaxTransactionAmount (#670) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable CatBoy._transferToExcluded(address,address,uint256).rTransferAmount (#1194) is too similar to CatBoy._getValues(uint256).tTransferAmount (#1269)
Prevent variables from having similar names.
Additional information: link
CatBoy.slitherConstructorVariables() (#598-1505) uses literals with too many digits:
- gasMaxLimit = 50000000 (#667)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#208) is never used in CatBoy (#598-1505)
Remove unused state variables.
Additional information: link
Ownable._previousOwner (#208) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setSwapAndLiquifyEnabled(bool) should be declared external:
- CatBoy.setSwapAndLiquifyEnabled(bool) (#1454-1457)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to verify token contract address on the website
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
Young tokens have high risks of 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 CoinMarketCap listing / rank
Token has relatively low CoinGecko rank
Twitter account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account