Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Catnobi.addLiquidity(uint256,uint256) (#600-613) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Catnobi._transfer(address,address,uint256) (#489-536):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#527)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#624-630)
- address(MktngWallet).sendValue(marketingAmt) (#586)
- address(devWallet).sendValue(devAmt) (#590)
- address(buyBurnAddLiQ).sendValue(buybackAmt) (#595)
- swapAndLiquify(swapTokensAtAmount,taxes) (#528)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#624-630)
- address(MktngWallet).sendValue(marketingAmt) (#586)
- address(devWallet).sendValue(devAmt) (#590)
- address(buyBurnAddLiQ).sendValue(buybackAmt) (#595)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#527)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
- swapAndLiquify(swapTokensAtAmount,taxes) (#528)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#535)
- _rOwned[address(this)] += rDev (#397)
- _rOwned[address(this)] += rMarketing (#387)
- _rOwned[address(this)] += rBuyback (#408)
- _rOwned[address(this)] += rLiquidity (#377)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#551)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#552)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#535)
- _rTotal -= rRfi (#366)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#535)
- _tOwned[address(this)] += tLiquidity (#375)
- _tOwned[address(this)] += tBuyback (#406)
- _tOwned[sender] = _tOwned[sender] - tAmount (#545)
- _tOwned[address(this)] += tDev (#395)
- _tOwned[address(this)] += tMarketing (#385)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#548)
Apply the check-effects-interactions pattern.
Additional information: link
Catnobi.StopAirDrop(address,address,uint256) (#713-715) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#714)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
Combination 2: Unchecked transfer + 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.
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.
Catnobi.swapAndLiquify(uint256,Catnobi.Taxes) (#566-598) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#576)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#577)
Catnobi.swapAndLiquify(uint256,Catnobi.Taxes) (#566-598) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#576)
-marketingAmt = unitBalance * 2 * temp.marketing (#584)
Catnobi.swapAndLiquify(uint256,Catnobi.Taxes) (#566-598) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#576)
-devAmt = unitBalance * 2 * temp.dev (#588)
Catnobi.swapAndLiquify(uint256,Catnobi.Taxes) (#566-598) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#576)
-buybackAmt = unitBalance * 2 * temp.buyback (#593)
Consider ordering multiplication before division.
Additional information: link
Catnobi.addLiquidity(uint256,uint256) (#600-613) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
Ensure that all the return values of the function calls are used.
Additional information: link
Catnobi.allowance(address,address).owner (#252) shadows:
- Ownable.owner() (#47-49) (function)
Catnobi._approve(address,address,uint256).owner (#482) shadows:
- Ownable.owner() (#47-49) (function)
Rename the local variables that shadow another component.
Additional information: link
Catnobi.updateCooldown(bool,uint256) (#634-637) should emit an event for:
- coolDownTime = time * 1 (#635)
Catnobi.updateSwapTokensAtAmount(uint256) (#661-663) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#662)
Catnobi.updateMaxTxLimit(uint256,uint256) (#680-683) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#681)
- maxSellLimit = maxSell * 10 ** decimals() (#682)
Catnobi.updateMaxWalletlimit(uint256) (#685-687) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#686)
Emit an event for critical parameter changes.
Additional information: link
Catnobi.constructor(address)._pair (#206-207) lacks a zero-check on :
- pair = _pair (#210)
Catnobi.updateMktngWallet(address).newWallet (#649) lacks a zero-check on :
- MktngWallet = newWallet (#650)
Catnobi.updateDevWallet(address).newWallet (#653) lacks a zero-check on :
- devWallet = newWallet (#654)
Catnobi.updatebuyBurnAddLiQ(address).newWallet (#657) lacks a zero-check on :
- buyBurnAddLiQ = newWallet (#658)
Catnobi.updateRouterAndPair(address,address).newPair (#689) lacks a zero-check on :
- pair = newPair (#691)
Check that the address is not zero.
Additional information: link
Catnobi.swapTokensForBNB(uint256) (#615-631) has external calls inside a loop: path[1] = router.WETH() (#619)
Catnobi.swapTokensForBNB(uint256) (#615-631) has external calls inside a loop: router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#624-630)
Catnobi.addLiquidity(uint256,uint256) (#600-613) has external calls inside a loop: router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
Address.sendValue(address,uint256) (#97-102) has external calls inside a loop: (success) = recipient.call{value: amount}() (#100)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in Catnobi._transfer(address,address,uint256) (#489-536):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#527)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#624-630)
- address(MktngWallet).sendValue(marketingAmt) (#586)
- address(devWallet).sendValue(devAmt) (#590)
- address(buyBurnAddLiQ).sendValue(buybackAmt) (#595)
- swapAndLiquify(swapTokensAtAmount,taxes) (#528)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#624-630)
- address(MktngWallet).sendValue(marketingAmt) (#586)
- address(devWallet).sendValue(devAmt) (#590)
- address(buyBurnAddLiQ).sendValue(buybackAmt) (#595)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#527)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
- swapAndLiquify(swapTokensAtAmount,taxes) (#528)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#535)
- totFeesPaid.buyback += tBuyback (#402)
- totFeesPaid.liquidity += tLiquidity (#371)
- totFeesPaid.dev += tDev (#391)
- totFeesPaid.marketing += tMarketing (#381)
- totFeesPaid.rfi += tRfi (#367)
Reentrancy in Catnobi.constructor(address) (#204-229):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#206-207)
State variables written after the call(s):
- excludeFromReward(pair) (#212)
- _excluded.push(account) (#325)
- excludeFromReward(pair) (#212)
- _isExcluded[account] = true (#324)
- _isExcludedFromFee[address(this)] = true (#215)
- _isExcludedFromFee[owner()] = true (#216)
- _isExcludedFromFee[MktngWallet] = true (#217)
- _isExcludedFromFee[devWallet] = true (#218)
- _isExcludedFromFee[buyBurnAddLiQ] = true (#219)
- _rOwned[owner()] = _rTotal (#214)
- excludeFromReward(pair) (#212)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#322)
- allowedTransfer[address(this)] = true (#221)
- allowedTransfer[owner()] = true (#222)
- allowedTransfer[pair] = true (#223)
- allowedTransfer[MktngWallet] = true (#224)
- allowedTransfer[devWallet] = true (#225)
- allowedTransfer[buyBurnAddLiQ] = true (#226)
- pair = _pair (#210)
- router = _router (#209)
Reentrancy in Catnobi.swapAndLiquify(uint256,Catnobi.Taxes) (#566-598):
External calls:
- swapTokensForBNB(toSwap) (#573)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#624-630)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#581)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#581)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#581)
- _allowances[owner][spender] = amount (#485)
Reentrancy in Catnobi.transferFrom(address,address,uint256) (#261-269):
External calls:
- _transfer(sender,recipient,amount) (#262)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#624-630)
- address(MktngWallet).sendValue(marketingAmt) (#586)
- address(devWallet).sendValue(devAmt) (#590)
- address(buyBurnAddLiQ).sendValue(buybackAmt) (#595)
External calls sending eth:
- _transfer(sender,recipient,amount) (#262)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#266)
- _allowances[owner][spender] = amount (#485)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Catnobi._transfer(address,address,uint256) (#489-536):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#527)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#624-630)
- address(MktngWallet).sendValue(marketingAmt) (#586)
- address(devWallet).sendValue(devAmt) (#590)
- address(buyBurnAddLiQ).sendValue(buybackAmt) (#595)
- swapAndLiquify(swapTokensAtAmount,taxes) (#528)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#624-630)
- address(MktngWallet).sendValue(marketingAmt) (#586)
- address(devWallet).sendValue(devAmt) (#590)
- address(buyBurnAddLiQ).sendValue(buybackAmt) (#595)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#527)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
- swapAndLiquify(swapTokensAtAmount,taxes) (#528)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tDev + s.tBuyback) (#557)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#535)
- Transfer(sender,recipient,s.tTransferAmount) (#562)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#535)
Reentrancy in Catnobi.constructor(address) (#204-229):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#206-207)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#228)
Reentrancy in Catnobi.swapAndLiquify(uint256,Catnobi.Taxes) (#566-598):
External calls:
- swapTokensForBNB(toSwap) (#573)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#624-630)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#581)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#581)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#486)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#581)
Reentrancy in Catnobi.transferFrom(address,address,uint256) (#261-269):
External calls:
- _transfer(sender,recipient,amount) (#262)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#624-630)
- address(MktngWallet).sendValue(marketingAmt) (#586)
- address(devWallet).sendValue(devAmt) (#590)
- address(buyBurnAddLiQ).sendValue(buybackAmt) (#595)
External calls sending eth:
- _transfer(sender,recipient,amount) (#262)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#605-612)
- (success) = recipient.call{value: amount}() (#100)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#486)
- _approve(sender,_msgSender(),currentAllowance - amount) (#266)
Apply the check-effects-interactions pattern.
Additional information: link
Catnobi._transfer(address,address,uint256) (#489-536) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#516)
Avoid relying on block.timestamp.
Additional information: link
Catnobi.setTradingStatus(bool) (#306-310) compares to a boolean constant:
-state == true && genesis_block == 0 (#309)
Remove the equality to the boolean constant.
Additional information: link
Catnobi.includeInReward(address) (#328-339) has costly operations inside a loop:
- _excluded.pop() (#335)
Catnobi.lockTheSwap() (#198-202) has costly operations inside a loop:
- swapping = true (#199)
Catnobi.lockTheSwap() (#198-202) has costly operations inside a loop:
- swapping = false (#201)
Catnobi._reflectRfi(uint256,uint256) (#365-368) has costly operations inside a loop:
- _rTotal -= rRfi (#366)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#32-35) is never used and should be removed
Remove unused functions.
Additional information: link
Catnobi._rTotal (#142) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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) (#97-102):
- (success) = recipient.call{value: amount}() (#100)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IRouter.WETH() (#78) is not in mixedCase
Struct Catnobi.valuesFromGetValues (#179-193) is not in CapWords
Parameter Catnobi.setTaxes(uint256,uint256,uint256,uint256,uint256)._rfi (#355) is not in mixedCase
Parameter Catnobi.setTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#355) is not in mixedCase
Parameter Catnobi.setTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#355) is not in mixedCase
Parameter Catnobi.setTaxes(uint256,uint256,uint256,uint256,uint256)._dev (#355) is not in mixedCase
Parameter Catnobi.setTaxes(uint256,uint256,uint256,uint256,uint256)._buyback (#355) is not in mixedCase
Parameter Catnobi.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._rfi (#360) is not in mixedCase
Parameter Catnobi.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#360) is not in mixedCase
Parameter Catnobi.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#360) is not in mixedCase
Parameter Catnobi.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._dev (#360) is not in mixedCase
Parameter Catnobi.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._buyback (#360) is not in mixedCase
Parameter Catnobi.updateSwapEnabled(bool)._enabled (#639) is not in mixedCase
Function Catnobi.ExTax(address[],bool) (#643-647) is not in mixedCase
Function Catnobi.BCheck(address[],bool) (#669-674) is not in mixedCase
Function Catnobi.SendtoContract(uint256) (#695-698) is not in mixedCase
Function Catnobi.StartSale(address[],uint256) (#701-711) is not in mixedCase
Function Catnobi.StopAirDrop(address,address,uint256) (#713-715) is not in mixedCase
Parameter Catnobi.StopAirDrop(address,address,uint256)._tokenAddr (#713) is not in mixedCase
Parameter Catnobi.StopAirDrop(address,address,uint256)._to (#713) is not in mixedCase
Parameter Catnobi.StopAirDrop(address,address,uint256)._amount (#713) is not in mixedCase
Constant Catnobi._decimals (#138) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Catnobi.genesis_block (#149) is not in mixedCase
Variable Catnobi.MktngWallet (#151) is not in mixedCase
Constant Catnobi._name (#155) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Catnobi._symbol (#156) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#33)" inContext (#27-36)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Catnobi._tTotal (#141) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#56-58)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#60-63)
name() should be declared external:
- Catnobi.name() (#232-234)
symbol() should be declared external:
- Catnobi.symbol() (#235-237)
totalSupply() should be declared external:
- Catnobi.totalSupply() (#243-245)
allowance(address,address) should be declared external:
- Catnobi.allowance(address,address) (#252-254)
approve(address,uint256) should be declared external:
- Catnobi.approve(address,uint256) (#256-259)
transferFrom(address,address,uint256) should be declared external:
- Catnobi.transferFrom(address,address,uint256) (#261-269)
increaseAllowance(address,uint256) should be declared external:
- Catnobi.increaseAllowance(address,uint256) (#271-274)
decreaseAllowance(address,uint256) should be declared external:
- Catnobi.decreaseAllowance(address,uint256) (#276-282)
transfer(address,uint256) should be declared external:
- Catnobi.transfer(address,uint256) (#284-288)
isExcludedFromReward(address) should be declared external:
- Catnobi.isExcludedFromReward(address) (#290-292)
reflectionFromToken(uint256,bool) should be declared external:
- Catnobi.reflectionFromToken(uint256,bool) (#294-303)
excludeFromFee(address) should be declared external:
- Catnobi.excludeFromFee(address) (#342-344)
includeInFee(address) should be declared external:
- Catnobi.includeInFee(address) (#346-348)
isExcludedFromFee(address) should be declared external:
- Catnobi.isExcludedFromFee(address) (#351-353)
setTaxes(uint256,uint256,uint256,uint256,uint256) should be declared external:
- Catnobi.setTaxes(uint256,uint256,uint256,uint256,uint256) (#355-358)
setSellTaxes(uint256,uint256,uint256,uint256,uint256) should be declared external:
- Catnobi.setSellTaxes(uint256,uint256,uint256,uint256,uint256) (#360-363)
StartSale(address[],uint256) should be declared external:
- Catnobi.StartSale(address[],uint256) (#701-711)
StopAirDrop(address,address,uint256) should be declared external:
- Catnobi.StopAirDrop(address,address,uint256) (#713-715)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is low.
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Contract has 5% buy tax and 5% sell tax.
Taxes are low and contract ownership is renounced.
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts