CatBonk Token Logo

CABO [CatBonk] Token

About CABO

Listings

Token 2 years
CoinMarketCap 2 years
white paper

Our cats are equipped with the finest baseball bats and NO DOGE IS SAFE. If we see a doge, we bonk it! CatBonk (CABO) is a soft and purrrrrrrry crypto memetoken on Binance Smart Chain (BSC)

Social

Laser Scorebeta Last Audit: 13 February 2022

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

Anti-Scam

Links


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

Reentrancy in CatBonkContract._transfer(address,address,uint256) (#1035-1079):
External calls:
- swapAndLiquify(contractTokenBalance) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1113-1119)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#991)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1160)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1169)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1180)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#907)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1161)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1171)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1181)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#909)
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- _rTotal = _rTotal.sub(rFee) (#946)
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#993)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1179)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#906)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1170)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#908)
Apply the check-effects-interactions pattern.

Additional information: link

CatBonkContract.includeInReward(address) (#892-903) has costly operations inside a loop:
- _excluded.pop() (#899)
Use a local variable to hold the loop computation result.

Additional information: link

CatBonkContract.addLiquidity(uint256,uint256) (#1122-1135) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
Ensure that all the return values of the function calls are used.

Additional information: link

CatBonkContract.allowance(address,address).owner (#823) shadows:
- Ownable.owner() (#459-461) (function)
CatBonkContract._approve(address,address,uint256).owner (#1027) shadows:
- Ownable.owner() (#459-461) (function)
Rename the local variables that shadow another component.

Additional information: link

CatBonkContract.setTaxFeePercent(uint256) (#923-925) should emit an event for:
- _taxFee = taxFee (#924)
CatBonkContract.setLiquidityFeePercent(uint256) (#927-929) should emit an event for:
- _liquidityFee = liquidityFee (#928)
CatBonkContract.setMaxTxPercent(uint256) (#931-935) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#932-934)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in CatBonkContract._transfer(address,address,uint256) (#1035-1079):
External calls:
- swapAndLiquify(contractTokenBalance) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1113-1119)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- _liquidityFee = _previousLiquidityFee (#1020)
- _liquidityFee = 0 (#1015)
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- _previousLiquidityFee = _liquidityFee (#1012)
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- _previousTaxFee = _taxFee (#1011)
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- _tFeeTotal = _tFeeTotal.add(tFee) (#947)
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- _taxFee = _previousTaxFee (#1019)
- _taxFee = 0 (#1014)
Reentrancy in CatBonkContract.constructor() (#779-795):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#784-785)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#791)
- _isExcludedFromFee[address(this)] = true (#792)
- uniswapV2Router = _uniswapV2Router (#788)
Reentrancy in CatBonkContract.swapAndLiquify(uint256) (#1081-1102):
External calls:
- swapTokensForEth(half) (#1093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1113-1119)
- addLiquidity(otherHalf,newBalance) (#1099)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1099)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1099)
- _allowances[owner][spender] = amount (#1031)
Reentrancy in CatBonkContract.transferFrom(address,address,uint256) (#832-836):
External calls:
- _transfer(sender,recipient,amount) (#833)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1113-1119)
External calls sending eth:
- _transfer(sender,recipient,amount) (#833)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#834)
- _allowances[owner][spender] = amount (#1031)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CatBonkContract._transfer(address,address,uint256) (#1035-1079):
External calls:
- swapAndLiquify(contractTokenBalance) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1113-1119)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1164)
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- Transfer(sender,recipient,tTransferAmount) (#1174)
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- Transfer(sender,recipient,tTransferAmount) (#1184)
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- Transfer(sender,recipient,tTransferAmount) (#912)
- _tokenTransfer(from,to,amount,takeFee) (#1078)
Reentrancy in CatBonkContract.constructor() (#779-795):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#784-785)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#794)
Reentrancy in CatBonkContract.swapAndLiquify(uint256) (#1081-1102):
External calls:
- swapTokensForEth(half) (#1093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1113-1119)
- addLiquidity(otherHalf,newBalance) (#1099)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1099)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1032)
- addLiquidity(otherHalf,newBalance) (#1099)
- SwapAndLiquify(half,newBalance,otherHalf) (#1101)
Reentrancy in CatBonkContract.transferFrom(address,address,uint256) (#832-836):
External calls:
- _transfer(sender,recipient,amount) (#833)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1113-1119)
External calls sending eth:
- _transfer(sender,recipient,amount) (#833)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1032)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#834)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#311-320) uses assembly
- INLINE ASM (#318)
Address._functionCallWithValue(address,bytes,uint256,string) (#404-425) uses assembly
- INLINE ASM (#417-420)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#404-425) is never used and should be removed
Address.functionCall(address,bytes) (#364-366) is never used and should be removed
Address.functionCall(address,bytes,string) (#374-376) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#389-391) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#399-402) is never used and should be removed
Address.isContract(address) (#311-320) is never used and should be removed
Address.sendValue(address,uint256) (#338-344) is never used and should be removed
Context._msgData() (#283-286) is never used and should be removed
SafeMath.mod(uint256,uint256) (#256-258) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#272-275) is never used and should be removed
Remove unused functions.

Additional information: link

CatBonkContract._rTotal (#743) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CatBonkContract._previousTaxFee (#751) is set pre-construction with a non-constant function or state variable:
- _taxFee
CatBonkContract._previousLiquidityFee (#754) 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) (#338-344):
- (success) = recipient.call{value: amount}() (#342)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#404-425):
- (success,returndata) = target.call{value: weiValue}(data) (#408)
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() (#550) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#551) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#568) is not in mixedCase
Function IUniswapV2Router01.WETH() (#590) is not in mixedCase
Parameter CatBonkContract.setSwapAndLiquifyEnabled(bool)._enabled (#937) is not in mixedCase
Parameter CatBonkContract.calculateTaxFee(uint256)._amount (#996) is not in mixedCase
Parameter CatBonkContract.calculateLiquidityFee(uint256)._amount (#1002) is not in mixedCase
Variable CatBonkContract._taxFee (#750) is not in mixedCase
Variable CatBonkContract._liquidityFee (#753) is not in mixedCase
Variable CatBonkContract._maxTxAmount (#762) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#284)" inContext (#278-287)
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 (#595) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#596)
Variable CatBonkContract.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to CatBonkContract._getTValues(uint256).tTransferAmount (#959)
Variable CatBonkContract._transferToExcluded(address,address,uint256).rTransferAmount (#1168) is too similar to CatBonkContract._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CatBonkContract._transferToExcluded(address,address,uint256).rTransferAmount (#1168) is too similar to CatBonkContract._getValues(uint256).tTransferAmount (#951)
Variable CatBonkContract._getValues(uint256).rTransferAmount (#952) is too similar to CatBonkContract._getTValues(uint256).tTransferAmount (#959)
Variable CatBonkContract._transferToExcluded(address,address,uint256).rTransferAmount (#1168) is too similar to CatBonkContract._transferToExcluded(address,address,uint256).tTransferAmount (#1168)
Variable CatBonkContract.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to CatBonkContract._transferToExcluded(address,address,uint256).tTransferAmount (#1168)
Variable CatBonkContract._transferToExcluded(address,address,uint256).rTransferAmount (#1168) is too similar to CatBonkContract._getTValues(uint256).tTransferAmount (#959)
Variable CatBonkContract._transferFromExcluded(address,address,uint256).rTransferAmount (#1178) is too similar to CatBonkContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1178)
Variable CatBonkContract._transferBothExcluded(address,address,uint256).rTransferAmount (#905) is too similar to CatBonkContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1178)
Variable CatBonkContract._transferFromExcluded(address,address,uint256).rTransferAmount (#1178) is too similar to CatBonkContract._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CatBonkContract.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to CatBonkContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1178)
Variable CatBonkContract._transferBothExcluded(address,address,uint256).rTransferAmount (#905) is too similar to CatBonkContract._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CatBonkContract._getValues(uint256).rTransferAmount (#952) is too similar to CatBonkContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1178)
Variable CatBonkContract.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to CatBonkContract._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CatBonkContract.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to CatBonkContract._getValues(uint256).tTransferAmount (#951)
Variable CatBonkContract._getValues(uint256).rTransferAmount (#952) is too similar to CatBonkContract._getValues(uint256).tTransferAmount (#951)
Variable CatBonkContract._getValues(uint256).rTransferAmount (#952) is too similar to CatBonkContract._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CatBonkContract._transferToExcluded(address,address,uint256).rTransferAmount (#1168) is too similar to CatBonkContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1178)
Variable CatBonkContract._getValues(uint256).rTransferAmount (#952) is too similar to CatBonkContract._transferToExcluded(address,address,uint256).tTransferAmount (#1168)
Variable CatBonkContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#967) is too similar to CatBonkContract._getTValues(uint256).tTransferAmount (#959)
Variable CatBonkContract._transferStandard(address,address,uint256).rTransferAmount (#1159) is too similar to CatBonkContract._transferToExcluded(address,address,uint256).tTransferAmount (#1168)
Variable CatBonkContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#967) is too similar to CatBonkContract._transferToExcluded(address,address,uint256).tTransferAmount (#1168)
Variable CatBonkContract._transferStandard(address,address,uint256).rTransferAmount (#1159) is too similar to CatBonkContract._getTValues(uint256).tTransferAmount (#959)
Variable CatBonkContract._transferFromExcluded(address,address,uint256).rTransferAmount (#1178) is too similar to CatBonkContract._transferStandard(address,address,uint256).tTransferAmount (#1159)
Variable CatBonkContract.reflectionFromToken(uint256,bool).rTransferAmount (#871) is too similar to CatBonkContract._transferStandard(address,address,uint256).tTransferAmount (#1159)
Variable CatBonkContract._getValues(uint256).rTransferAmount (#952) is too similar to CatBonkContract._transferStandard(address,address,uint256).tTransferAmount (#1159)
Variable CatBonkContract._transferBothExcluded(address,address,uint256).rTransferAmount (#905) is too similar to CatBonkContract._transferStandard(address,address,uint256).tTransferAmount (#1159)
Variable CatBonkContract._transferFromExcluded(address,address,uint256).rTransferAmount (#1178) is too similar to CatBonkContract._getTValues(uint256).tTransferAmount (#959)
Variable CatBonkContract._transferFromExcluded(address,address,uint256).rTransferAmount (#1178) is too similar to CatBonkContract._transferToExcluded(address,address,uint256).tTransferAmount (#1168)
Variable CatBonkContract._transferToExcluded(address,address,uint256).rTransferAmount (#1168) is too similar to CatBonkContract._transferStandard(address,address,uint256).tTransferAmount (#1159)
Variable CatBonkContract._transferBothExcluded(address,address,uint256).rTransferAmount (#905) is too similar to CatBonkContract._transferToExcluded(address,address,uint256).tTransferAmount (#1168)
Variable CatBonkContract._transferBothExcluded(address,address,uint256).rTransferAmount (#905) is too similar to CatBonkContract._getTValues(uint256).tTransferAmount (#959)
Variable CatBonkContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#967) is too similar to CatBonkContract._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CatBonkContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#967) is too similar to CatBonkContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1178)
Variable CatBonkContract._transferStandard(address,address,uint256).rTransferAmount (#1159) is too similar to CatBonkContract._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CatBonkContract._transferStandard(address,address,uint256).rTransferAmount (#1159) is too similar to CatBonkContract._transferFromExcluded(address,address,uint256).tTransferAmount (#1178)
Variable CatBonkContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#967) is too similar to CatBonkContract._getValues(uint256).tTransferAmount (#951)
Variable CatBonkContract._transferStandard(address,address,uint256).rTransferAmount (#1159) is too similar to CatBonkContract._getValues(uint256).tTransferAmount (#951)
Variable CatBonkContract._transferFromExcluded(address,address,uint256).rTransferAmount (#1178) is too similar to CatBonkContract._getValues(uint256).tTransferAmount (#951)
Variable CatBonkContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#967) is too similar to CatBonkContract._transferStandard(address,address,uint256).tTransferAmount (#1159)
Variable CatBonkContract._transferStandard(address,address,uint256).rTransferAmount (#1159) is too similar to CatBonkContract._transferStandard(address,address,uint256).tTransferAmount (#1159)
Variable CatBonkContract._transferBothExcluded(address,address,uint256).rTransferAmount (#905) is too similar to CatBonkContract._getValues(uint256).tTransferAmount (#951)
Prevent variables from having similar names.

Additional information: link

CatBonkContract.slitherConstructorVariables() (#728-1191) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#742)
CatBonkContract.slitherConstructorVariables() (#728-1191) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#762)
CatBonkContract.slitherConstructorVariables() (#728-1191) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#763)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CatBonkContract._decimals (#748) should be constant
CatBonkContract._name (#746) should be constant
CatBonkContract._symbol (#747) should be constant
CatBonkContract._tTotal (#742) should be constant
CatBonkContract.numTokensSellToAddToLiquidity (#763) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#478-481)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#487-491)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#493-495)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#498-503)
unlock() should be declared external:
- Ownable.unlock() (#506-511)
name() should be declared external:
- CatBonkContract.name() (#797-799)
symbol() should be declared external:
- CatBonkContract.symbol() (#801-803)
decimals() should be declared external:
- CatBonkContract.decimals() (#805-807)
totalSupply() should be declared external:
- CatBonkContract.totalSupply() (#809-811)
transfer(address,uint256) should be declared external:
- CatBonkContract.transfer(address,uint256) (#818-821)
allowance(address,address) should be declared external:
- CatBonkContract.allowance(address,address) (#823-825)
approve(address,uint256) should be declared external:
- CatBonkContract.approve(address,uint256) (#827-830)
transferFrom(address,address,uint256) should be declared external:
- CatBonkContract.transferFrom(address,address,uint256) (#832-836)
increaseAllowance(address,uint256) should be declared external:
- CatBonkContract.increaseAllowance(address,uint256) (#838-841)
decreaseAllowance(address,uint256) should be declared external:
- CatBonkContract.decreaseAllowance(address,uint256) (#843-846)
isExcludedFromReward(address) should be declared external:
- CatBonkContract.isExcludedFromReward(address) (#848-850)
totalFees() should be declared external:
- CatBonkContract.totalFees() (#852-854)
deliver(uint256) should be declared external:
- CatBonkContract.deliver(uint256) (#856-863)
reflectionFromToken(uint256,bool) should be declared external:
- CatBonkContract.reflectionFromToken(uint256,bool) (#865-874)
excludeFromReward(address) should be declared external:
- CatBonkContract.excludeFromReward(address) (#882-890)
excludeFromFee(address) should be declared external:
- CatBonkContract.excludeFromFee(address) (#915-917)
includeInFee(address) should be declared external:
- CatBonkContract.includeInFee(address) (#919-921)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CatBonkContract.setSwapAndLiquifyEnabled(bool) (#937-940)
isExcludedFromFee(address) should be declared external:
- CatBonkContract.isExcludedFromFee(address) (#1023-1025)
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 number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Token is deployed only at one blockchain

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


Twitter account link seems to be invalid


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


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

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


Unable to find code repository for the project


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 price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for CABO