Baby Cat Coin Token Logo

BabyCat [Baby Cat Coin] Token

About BabyCat

Listings

Token 2 years
white paper

BabyCatCoin is a deflationary coin designed to become more scarce over time. All holders of Baby Cat Coin will earn more Baby Cat Coin that is automatically sent to their wallet by simply by holding. All holders receive a 5% fee from every transaction that happens on the Binance Smart Chain.

Social

Laser Scorebeta Last Audit: 22 February 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

Reentrancy in BabyCatCoin._transfer(address,address,uint256) (#1041-1085):
External calls:
- swapAndLiquify(contractTokenBalance) (#1072)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1119-1125)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1072)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1084)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#989)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1166)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1175)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#905)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1186)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1167)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1177)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1187)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#907)
- _tokenTransfer(from,to,amount,takeFee) (#1084)
- _rTotal = _rTotal.sub(rFee) (#944)
- _tokenTransfer(from,to,amount,takeFee) (#1084)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#991)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1185)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#904)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1176)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#906)
Apply the check-effects-interactions pattern.

Additional information: link

BabyCatCoin.recoverERC20(address,uint256) (#1029-1031) ignores return value by IERC20(tokenAddress).transfer(owner(),tokenAmount) (#1030)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

BabyCatCoin.allowance(address,address).owner (#821) shadows:
- Ownable.owner() (#457-459) (function)
BabyCatCoin._approve(address,address,uint256).owner (#1033) shadows:
- Ownable.owner() (#457-459) (function)
Rename the local variables that shadow another component.

Additional information: link

BabyCatCoin.addLiquidity(uint256,uint256) (#1128-1141) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
Ensure that all the return values of the function calls are used.

Additional information: link

BabyCatCoin.setTaxFeePercent(uint256) (#921-923) should emit an event for:
- _taxFee = taxFee (#922)
BabyCatCoin.setLiquidityFeePercent(uint256) (#925-927) should emit an event for:
- _liquidityFee = liquidityFee (#926)
BabyCatCoin.setMaxTxPercent(uint256) (#929-933) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#930-932)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in BabyCatCoin._transfer(address,address,uint256) (#1041-1085):
External calls:
- swapAndLiquify(contractTokenBalance) (#1072)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1119-1125)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1072)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1084)
- _liquidityFee = _previousLiquidityFee (#1018)
- _liquidityFee = 0 (#1013)
- _tokenTransfer(from,to,amount,takeFee) (#1084)
- _previousLiquidityFee = _liquidityFee (#1010)
- _tokenTransfer(from,to,amount,takeFee) (#1084)
- _previousTaxFee = _taxFee (#1009)
- _tokenTransfer(from,to,amount,takeFee) (#1084)
- _tFeeTotal = _tFeeTotal.add(tFee) (#945)
- _tokenTransfer(from,to,amount,takeFee) (#1084)
- _taxFee = _previousTaxFee (#1017)
- _taxFee = 0 (#1012)
Reentrancy in BabyCatCoin.constructor() (#777-793):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#782-783)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#789)
- _isExcludedFromFee[address(this)] = true (#790)
- uniswapV2Router = _uniswapV2Router (#786)
Reentrancy in BabyCatCoin.swapAndLiquify(uint256) (#1087-1108):
External calls:
- swapTokensForEth(half) (#1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1119-1125)
- addLiquidity(otherHalf,newBalance) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1105)
- _allowances[owner][spender] = amount (#1037)
Reentrancy in BabyCatCoin.transferFrom(address,address,uint256) (#830-834):
External calls:
- _transfer(sender,recipient,amount) (#831)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1119-1125)
External calls sending eth:
- _transfer(sender,recipient,amount) (#831)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#832)
- _allowances[owner][spender] = amount (#1037)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BabyCatCoin._transfer(address,address,uint256) (#1041-1085):
External calls:
- swapAndLiquify(contractTokenBalance) (#1072)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1119-1125)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1072)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1170)
- _tokenTransfer(from,to,amount,takeFee) (#1084)
- Transfer(sender,recipient,tTransferAmount) (#1180)
- _tokenTransfer(from,to,amount,takeFee) (#1084)
- Transfer(sender,recipient,tTransferAmount) (#1190)
- _tokenTransfer(from,to,amount,takeFee) (#1084)
- Transfer(sender,recipient,tTransferAmount) (#910)
- _tokenTransfer(from,to,amount,takeFee) (#1084)
Reentrancy in BabyCatCoin.constructor() (#777-793):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#782-783)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#792)
Reentrancy in BabyCatCoin.swapAndLiquify(uint256) (#1087-1108):
External calls:
- swapTokensForEth(half) (#1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1119-1125)
- addLiquidity(otherHalf,newBalance) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1105)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1038)
- addLiquidity(otherHalf,newBalance) (#1105)
- SwapAndLiquify(half,newBalance,otherHalf) (#1107)
Reentrancy in BabyCatCoin.transferFrom(address,address,uint256) (#830-834):
External calls:
- _transfer(sender,recipient,amount) (#831)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1119-1125)
External calls sending eth:
- _transfer(sender,recipient,amount) (#831)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1133-1140)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1038)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#832)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#309-318) uses assembly
- INLINE ASM (#316)
Address._functionCallWithValue(address,bytes,uint256,string) (#402-423) uses assembly
- INLINE ASM (#415-418)
Do not use evm assembly.

Additional information: link

BabyCatCoin.includeInReward(address) (#890-901) has costly operations inside a loop:
- _excluded.pop() (#897)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#402-423) is never used and should be removed
Address.functionCall(address,bytes) (#362-364) is never used and should be removed
Address.functionCall(address,bytes,string) (#372-374) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#387-389) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#397-400) is never used and should be removed
Address.isContract(address) (#309-318) is never used and should be removed
Address.sendValue(address,uint256) (#336-342) is never used and should be removed
Context._msgData() (#281-284) is never used and should be removed
SafeMath.mod(uint256,uint256) (#254-256) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#270-273) is never used and should be removed
Remove unused functions.

Additional information: link

BabyCatCoin._rTotal (#741) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BabyCatCoin._previousTaxFee (#749) is set pre-construction with a non-constant function or state variable:
- _taxFee
BabyCatCoin._previousLiquidityFee (#752) 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.sendValue(address,uint256) (#336-342):
- (success) = recipient.call{value: amount}() (#340)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#402-423):
- (success,returndata) = target.call{value: weiValue}(data) (#406)
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() (#548) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#549) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#566) is not in mixedCase
Function IUniswapV2Router01.WETH() (#588) is not in mixedCase
Parameter BabyCatCoin.setSwapAndLiquifyEnabled(bool)._enabled (#935) is not in mixedCase
Parameter BabyCatCoin.calculateTaxFee(uint256)._amount (#994) is not in mixedCase
Parameter BabyCatCoin.calculateLiquidityFee(uint256)._amount (#1000) is not in mixedCase
Variable BabyCatCoin._taxFee (#748) is not in mixedCase
Variable BabyCatCoin._liquidityFee (#751) is not in mixedCase
Variable BabyCatCoin._maxTxAmount (#760) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#282)" inContext (#276-285)
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 (#593) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#594)
Variable BabyCatCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#903) is too similar to BabyCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1174)
Variable BabyCatCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#965) is too similar to BabyCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1184)
Variable BabyCatCoin._getValues(uint256).rTransferAmount (#950) is too similar to BabyCatCoin._getTValues(uint256).tTransferAmount (#957)
Variable BabyCatCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#903) is too similar to BabyCatCoin._getTValues(uint256).tTransferAmount (#957)
Variable BabyCatCoin.reflectionFromToken(uint256,bool).rTransferAmount (#869) is too similar to BabyCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1174)
Variable BabyCatCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1174) is too similar to BabyCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1184)
Variable BabyCatCoin._transferStandard(address,address,uint256).rTransferAmount (#1165) is too similar to BabyCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1174)
Variable BabyCatCoin._getValues(uint256).rTransferAmount (#950) is too similar to BabyCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1174)
Variable BabyCatCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1184) is too similar to BabyCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1174)
Variable BabyCatCoin._transferStandard(address,address,uint256).rTransferAmount (#1165) is too similar to BabyCatCoin._getTValues(uint256).tTransferAmount (#957)
Variable BabyCatCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#965) is too similar to BabyCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1174)
Variable BabyCatCoin._getValues(uint256).rTransferAmount (#950) is too similar to BabyCatCoin._getValues(uint256).tTransferAmount (#949)
Variable BabyCatCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#903) is too similar to BabyCatCoin._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable BabyCatCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#903) is too similar to BabyCatCoin._getValues(uint256).tTransferAmount (#949)
Variable BabyCatCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#965) is too similar to BabyCatCoin._getTValues(uint256).tTransferAmount (#957)
Variable BabyCatCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1174) is too similar to BabyCatCoin._transferToExcluded(address,address,uint256).tTransferAmount (#1174)
Variable BabyCatCoin._transferStandard(address,address,uint256).rTransferAmount (#1165) is too similar to BabyCatCoin._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable BabyCatCoin._getValues(uint256).rTransferAmount (#950) is too similar to BabyCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1184)
Variable BabyCatCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#903) is too similar to BabyCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#903)
Variable BabyCatCoin.reflectionFromToken(uint256,bool).rTransferAmount (#869) is too similar to BabyCatCoin._getValues(uint256).tTransferAmount (#949)
Variable BabyCatCoin._transferStandard(address,address,uint256).rTransferAmount (#1165) is too similar to BabyCatCoin._getValues(uint256).tTransferAmount (#949)
Variable BabyCatCoin._transferBothExcluded(address,address,uint256).rTransferAmount (#903) is too similar to BabyCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1184)
Variable BabyCatCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1184) is too similar to BabyCatCoin._getValues(uint256).tTransferAmount (#949)
Variable BabyCatCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#965) is too similar to BabyCatCoin._getValues(uint256).tTransferAmount (#949)
Variable BabyCatCoin.reflectionFromToken(uint256,bool).rTransferAmount (#869) is too similar to BabyCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1184)
Variable BabyCatCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1184) is too similar to BabyCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1184)
Variable BabyCatCoin._transferStandard(address,address,uint256).rTransferAmount (#1165) is too similar to BabyCatCoin._transferFromExcluded(address,address,uint256).tTransferAmount (#1184)
Variable BabyCatCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1174) is too similar to BabyCatCoin._getValues(uint256).tTransferAmount (#949)
Variable BabyCatCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1174) is too similar to BabyCatCoin._getTValues(uint256).tTransferAmount (#957)
Variable BabyCatCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1184) is too similar to BabyCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#903)
Variable BabyCatCoin.reflectionFromToken(uint256,bool).rTransferAmount (#869) is too similar to BabyCatCoin._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable BabyCatCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1184) is too similar to BabyCatCoin._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable BabyCatCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1174) is too similar to BabyCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#903)
Variable BabyCatCoin.reflectionFromToken(uint256,bool).rTransferAmount (#869) is too similar to BabyCatCoin._getTValues(uint256).tTransferAmount (#957)
Variable BabyCatCoin._transferToExcluded(address,address,uint256).rTransferAmount (#1174) is too similar to BabyCatCoin._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable BabyCatCoin._transferStandard(address,address,uint256).rTransferAmount (#1165) is too similar to BabyCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#903)
Variable BabyCatCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#965) is too similar to BabyCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#903)
Variable BabyCatCoin._transferFromExcluded(address,address,uint256).rTransferAmount (#1184) is too similar to BabyCatCoin._getTValues(uint256).tTransferAmount (#957)
Variable BabyCatCoin._getValues(uint256).rTransferAmount (#950) is too similar to BabyCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#903)
Variable BabyCatCoin.reflectionFromToken(uint256,bool).rTransferAmount (#869) is too similar to BabyCatCoin._transferBothExcluded(address,address,uint256).tTransferAmount (#903)
Variable BabyCatCoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#965) is too similar to BabyCatCoin._transferStandard(address,address,uint256).tTransferAmount (#1165)
Variable BabyCatCoin._getValues(uint256).rTransferAmount (#950) is too similar to BabyCatCoin._transferStandard(address,address,uint256).tTransferAmount (#1165)
Prevent variables from having similar names.

Additional information: link

BabyCatCoin.slitherConstructorVariables() (#726-1197) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#760)
BabyCatCoin.slitherConstructorVariables() (#726-1197) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#761)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BabyCatCoin._decimals (#746) should be constant
BabyCatCoin._name (#744) should be constant
BabyCatCoin._symbol (#745) should be constant
BabyCatCoin._tTotal (#740) should be constant
BabyCatCoin.numTokensSellToAddToLiquidity (#761) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#476-479)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#485-489)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#491-493)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#496-501)
unlock() should be declared external:
- Ownable.unlock() (#504-509)
name() should be declared external:
- BabyCatCoin.name() (#795-797)
symbol() should be declared external:
- BabyCatCoin.symbol() (#799-801)
decimals() should be declared external:
- BabyCatCoin.decimals() (#803-805)
totalSupply() should be declared external:
- BabyCatCoin.totalSupply() (#807-809)
transfer(address,uint256) should be declared external:
- BabyCatCoin.transfer(address,uint256) (#816-819)
allowance(address,address) should be declared external:
- BabyCatCoin.allowance(address,address) (#821-823)
approve(address,uint256) should be declared external:
- BabyCatCoin.approve(address,uint256) (#825-828)
transferFrom(address,address,uint256) should be declared external:
- BabyCatCoin.transferFrom(address,address,uint256) (#830-834)
increaseAllowance(address,uint256) should be declared external:
- BabyCatCoin.increaseAllowance(address,uint256) (#836-839)
decreaseAllowance(address,uint256) should be declared external:
- BabyCatCoin.decreaseAllowance(address,uint256) (#841-844)
isExcludedFromReward(address) should be declared external:
- BabyCatCoin.isExcludedFromReward(address) (#846-848)
totalFees() should be declared external:
- BabyCatCoin.totalFees() (#850-852)
deliver(uint256) should be declared external:
- BabyCatCoin.deliver(uint256) (#854-861)
reflectionFromToken(uint256,bool) should be declared external:
- BabyCatCoin.reflectionFromToken(uint256,bool) (#863-872)
excludeFromReward(address) should be declared external:
- BabyCatCoin.excludeFromReward(address) (#880-888)
excludeFromFee(address) should be declared external:
- BabyCatCoin.excludeFromFee(address) (#913-915)
includeInFee(address) should be declared external:
- BabyCatCoin.includeInFee(address) (#917-919)
setSwapAndLiquifyEnabled(bool) should be declared external:
- BabyCatCoin.setSwapAndLiquifyEnabled(bool) (#935-938)
isExcludedFromFee(address) should be declared external:
- BabyCatCoin.isExcludedFromFee(address) (#1021-1023)
recoverERC20(address,uint256) should be declared external:
- BabyCatCoin.recoverERC20(address,uint256) (#1029-1031)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume 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.


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


Token is deployed only at one blockchain

Contract has 10% buy tax and 9% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Youtube account


Unable to find Discord account


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


Token has a considerable age, but we're still unable to find its website


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for BabyCat

News for BabyCat