The bestest way to make bread. Feed others while you feed yourself. Future NFT arcade. Gachapon meets NFTs.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in CatBread._transfer(address,address,uint256) (#990-1040):
External calls:
- swapAndLiquify(contractTokenBalance) (#1027)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1027)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#946)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1130)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1121)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1122)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#862)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1141)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1142)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1132)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#864)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _rTotal = _rTotal.sub(rFee) (#901)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#948)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#861)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1140)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1131)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#863)
Apply the check-effects-interactions pattern.
Additional information: link
Redundant expression "this (#257)" inContext (#251-260)
Remove redundant statements if they congest code but offer no value.
Additional information: link
CatBread.includeInReward(address) (#847-858) has costly operations inside a loop:
- _excluded.pop() (#854)
Use a local variable to hold the loop computation result.
Additional information: link
CatBread.addLiquidity(uint256,uint256) (#1083-1096) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
Ensure that all the return values of the function calls are used.
Additional information: link
CatBread.allowance(address,address).owner (#778) shadows:
- Ownable.owner() (#431-433) (function)
CatBread._approve(address,address,uint256).owner (#982) shadows:
- Ownable.owner() (#431-433) (function)
Rename the local variables that shadow another component.
Additional information: link
CatBread.setTaxFeePercent(uint256) (#878-880) should emit an event for:
- _taxFee = taxFee (#879)
CatBread.setLiquidityFeePercent(uint256) (#882-884) should emit an event for:
- _liquidityFee = liquidityFee (#883)
CatBread.setMaxTxPercent(uint256) (#886-890) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#887-889)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in CatBread._transfer(address,address,uint256) (#990-1040):
External calls:
- swapAndLiquify(contractTokenBalance) (#1027)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1027)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _liquidityFee = _previousLiquidityFee (#975)
- _liquidityFee = 0 (#970)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _previousLiquidityFee = _liquidityFee (#967)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _previousTaxFee = _taxFee (#966)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _tFeeTotal = _tFeeTotal.add(tFee) (#902)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- _taxFee = _previousTaxFee (#974)
- _taxFee = 0 (#969)
Reentrancy in CatBread.constructor() (#734-750):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#739-740)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#746)
- _isExcludedFromFee[address(this)] = true (#747)
- uniswapV2Router = _uniswapV2Router (#743)
Reentrancy in CatBread.swapAndLiquify(uint256) (#1042-1063):
External calls:
- swapTokensForEth(half) (#1054)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
- addLiquidity(otherHalf,newBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1060)
- _allowances[owner][spender] = amount (#986)
Reentrancy in CatBread.transferFrom(address,address,uint256) (#787-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
- _allowances[owner][spender] = amount (#986)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CatBread._transfer(address,address,uint256) (#990-1040):
External calls:
- swapAndLiquify(contractTokenBalance) (#1027)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1027)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1125)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- Transfer(sender,recipient,tTransferAmount) (#1135)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- Transfer(sender,recipient,tTransferAmount) (#1145)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
- Transfer(sender,recipient,tTransferAmount) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#1039)
Reentrancy in CatBread.constructor() (#734-750):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#739-740)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#749)
Reentrancy in CatBread.swapAndLiquify(uint256) (#1042-1063):
External calls:
- swapTokensForEth(half) (#1054)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
- addLiquidity(otherHalf,newBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1060)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- addLiquidity(otherHalf,newBalance) (#1060)
- SwapAndLiquify(half,newBalance,otherHalf) (#1062)
Reentrancy in CatBread.transferFrom(address,address,uint256) (#787-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1074-1080)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1088-1095)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#789)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#284-293) uses assembly
- INLINE ASM (#291)
Address._functionCallWithValue(address,bytes,uint256,string) (#377-398) uses assembly
- INLINE ASM (#390-393)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#377-398) is never used and should be removed
Address.functionCall(address,bytes) (#337-339) is never used and should be removed
Address.functionCall(address,bytes,string) (#347-349) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#362-364) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#372-375) is never used and should be removed
Address.isContract(address) (#284-293) is never used and should be removed
Address.sendValue(address,uint256) (#311-317) is never used and should be removed
Context._msgData() (#256-259) is never used and should be removed
SafeMath.mod(uint256,uint256) (#229-231) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#245-248) is never used and should be removed
Remove unused functions.
Additional information: link
CatBread._rTotal (#695) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CatBread._previousTaxFee (#703) is set pre-construction with a non-constant function or state variable:
- _taxFee
CatBread._previousLiquidityFee (#706) 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
Pragma version>=0.8.0 (#19) allows old versions
solc-0.8.1 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 Address.sendValue(address,uint256) (#311-317):
- (success) = recipient.call{value: amount}() (#315)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#377-398):
- (success,returndata) = target.call{value: weiValue}(data) (#381)
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() (#502) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#503) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#520) is not in mixedCase
Function IUniswapV2Router01.WETH() (#542) is not in mixedCase
Parameter CatBread.setSwapAndLiquifyEnabled(bool)._enabled (#892) is not in mixedCase
Parameter CatBread.calculateTaxFee(uint256)._amount (#951) is not in mixedCase
Parameter CatBread.calculateLiquidityFee(uint256)._amount (#957) is not in mixedCase
Variable CatBread._taxFee (#702) is not in mixedCase
Variable CatBread._liquidityFee (#705) is not in mixedCase
Variable CatBread._maxTxAmount (#714) is not in mixedCase
Variable CatBread._maxWalletAmount (#716) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#547) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#548)
Variable CatBread._transferStandard(address,address,uint256).rTransferAmount (#1120) is too similar to CatBread._getTValues(uint256).tTransferAmount (#914)
Variable CatBread._getValues(uint256).rTransferAmount (#907) is too similar to CatBread._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable CatBread._transferToExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to CatBread._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable CatBread._transferFromExcluded(address,address,uint256).rTransferAmount (#1139) is too similar to CatBread._getTValues(uint256).tTransferAmount (#914)
Variable CatBread._transferToExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to CatBread._getValues(uint256).tTransferAmount (#906)
Variable CatBread._transferStandard(address,address,uint256).rTransferAmount (#1120) is too similar to CatBread._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable CatBread._transferToExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to CatBread._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable CatBread._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to CatBread._getTValues(uint256).tTransferAmount (#914)
Variable CatBread._transferToExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to CatBread._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable CatBread._transferFromExcluded(address,address,uint256).rTransferAmount (#1139) is too similar to CatBread._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable CatBread._transferStandard(address,address,uint256).rTransferAmount (#1120) is too similar to CatBread._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable CatBread._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to CatBread._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable CatBread._transferToExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to CatBread._getTValues(uint256).tTransferAmount (#914)
Variable CatBread._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to CatBread._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable CatBread._transferStandard(address,address,uint256).rTransferAmount (#1120) is too similar to CatBread._getValues(uint256).tTransferAmount (#906)
Variable CatBread._transferFromExcluded(address,address,uint256).rTransferAmount (#1139) is too similar to CatBread._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable CatBread._transferFromExcluded(address,address,uint256).rTransferAmount (#1139) is too similar to CatBread._getValues(uint256).tTransferAmount (#906)
Variable CatBread._transferToExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to CatBread._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable CatBread._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to CatBread._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable CatBread._transferFromExcluded(address,address,uint256).rTransferAmount (#1139) is too similar to CatBread._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable CatBread.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to CatBread._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable CatBread._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to CatBread._getValues(uint256).tTransferAmount (#906)
Variable CatBread._transferFromExcluded(address,address,uint256).rTransferAmount (#1139) is too similar to CatBread._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable CatBread._transferStandard(address,address,uint256).rTransferAmount (#1120) is too similar to CatBread._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable CatBread.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to CatBread._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable CatBread._getValues(uint256).rTransferAmount (#907) is too similar to CatBread._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable CatBread.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to CatBread._getValues(uint256).tTransferAmount (#906)
Variable CatBread._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to CatBread._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable CatBread._getValues(uint256).rTransferAmount (#907) is too similar to CatBread._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable CatBread._getValues(uint256).rTransferAmount (#907) is too similar to CatBread._getValues(uint256).tTransferAmount (#906)
Variable CatBread._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to CatBread._transferStandard(address,address,uint256).tTransferAmount (#1120)
Variable CatBread._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to CatBread._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable CatBread._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to CatBread._getValues(uint256).tTransferAmount (#906)
Variable CatBread._transferStandard(address,address,uint256).rTransferAmount (#1120) is too similar to CatBread._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable CatBread.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to CatBread._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable CatBread.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to CatBread._getTValues(uint256).tTransferAmount (#914)
Variable CatBread._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to CatBread._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Variable CatBread._getValues(uint256).rTransferAmount (#907) is too similar to CatBread._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable CatBread._getValues(uint256).rTransferAmount (#907) is too similar to CatBread._getTValues(uint256).tTransferAmount (#914)
Variable CatBread._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to CatBread._transferFromExcluded(address,address,uint256).tTransferAmount (#1139)
Variable CatBread._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to CatBread._getTValues(uint256).tTransferAmount (#914)
Variable CatBread.reflectionFromToken(uint256,bool).rTransferAmount (#826) is too similar to CatBread._transferToExcluded(address,address,uint256).tTransferAmount (#1129)
Prevent variables from having similar names.
Additional information: link
CatBread.slitherConstructorVariables() (#680-1152) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#694)
CatBread.slitherConstructorVariables() (#680-1152) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#714)
CatBread.slitherConstructorVariables() (#680-1152) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#715)
CatBread.slitherConstructorVariables() (#680-1152) uses literals with too many digits:
- _maxWalletAmount = 1000000000 * 10 ** 4 * 10 ** 9 (#716)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#415) is never used in CatBread (#680-1152)
Remove unused state variables.
Additional information: link
CatBread._decimals (#700) should be constant
CatBread._maxWalletAmount (#716) should be constant
CatBread._name (#698) should be constant
CatBread._symbol (#699) should be constant
CatBread._tTotal (#694) should be constant
CatBread.numTokensSellToAddToLiquidity (#715) should be constant
Ownable._previousOwner (#415) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#450-453)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#459-463)
name() should be declared external:
- CatBread.name() (#752-754)
symbol() should be declared external:
- CatBread.symbol() (#756-758)
decimals() should be declared external:
- CatBread.decimals() (#760-762)
totalSupply() should be declared external:
- CatBread.totalSupply() (#764-766)
transfer(address,uint256) should be declared external:
- CatBread.transfer(address,uint256) (#773-776)
allowance(address,address) should be declared external:
- CatBread.allowance(address,address) (#778-780)
approve(address,uint256) should be declared external:
- CatBread.approve(address,uint256) (#782-785)
transferFrom(address,address,uint256) should be declared external:
- CatBread.transferFrom(address,address,uint256) (#787-791)
increaseAllowance(address,uint256) should be declared external:
- CatBread.increaseAllowance(address,uint256) (#793-796)
decreaseAllowance(address,uint256) should be declared external:
- CatBread.decreaseAllowance(address,uint256) (#798-801)
isExcludedFromReward(address) should be declared external:
- CatBread.isExcludedFromReward(address) (#803-805)
totalFees() should be declared external:
- CatBread.totalFees() (#807-809)
deliver(uint256) should be declared external:
- CatBread.deliver(uint256) (#811-818)
reflectionFromToken(uint256,bool) should be declared external:
- CatBread.reflectionFromToken(uint256,bool) (#820-829)
excludeFromReward(address) should be declared external:
- CatBread.excludeFromReward(address) (#837-845)
excludeFromFee(address) should be declared external:
- CatBread.excludeFromFee(address) (#870-872)
includeInFee(address) should be declared external:
- CatBread.includeInFee(address) (#874-876)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CatBread.setSwapAndLiquifyEnabled(bool) (#892-895)
isExcludedFromFee(address) should be declared external:
- CatBread.isExcludedFromFee(address) (#978-980)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find code repository for the project
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Young tokens have high risks of price dump / death
Token has relatively low CoinMarketCap rank
Unable to find Youtube account