Chow Panda Inu Token Logo

CHOWP [Chow Panda Inu] Token

About CHOWP

Listings

Token 2 years
white paper

Is it a dog? 🐶Is it a panda ? 🐼 It's the best of both, The Chow panda, Asia's cutest hybrid pet is here to win hearts all around the BSC. Become a part of his journey with us and get to earn with a well known team bringing worthy utilities to the Chow ecosystem. Upcoming Utilities: ✔️Staking ✔️ Cross Bridge ✔️NFT Collections - More Updates. ✅No Private sale ✅Whitepaper ✅Chinese community ✅Tax 8/8 ✅LP Lock 3 months 🐶CHOW PANDA INU

Social

Laser Scorebeta Last Audit: 19 July 2022

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

Anti-Scam

Links

ChowPandaInu.distributeAndLiquify(address,address) (#519-585) sends eth to arbitrary user
Dangerous calls:
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ChowPandaInu._transfer(address,address,uint256) (#437-466):
External calls:
- distributeAndLiquify(from,to) (#454)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#603-609)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#545)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquidity,bnbToBeAddedToLiquidity) (#560-565)
External calls sending eth:
- distributeAndLiquify(from,to) (#454)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#465)
- _balances[address(this)] = _balances[address(this)].add(amount) (#502)
- _balances[sender] = _balances[sender].sub(amount) (#478)
- _balances[recipient] = _balances[recipient].add(tTransferAmount) (#479)
- _balances[sender] = _balances[sender].sub(amount) (#487)
- _balances[recipient] = _balances[recipient].add(tTransferAmount_scope_1) (#488)
- _balances[sender] = _balances[sender].sub(amount) (#494)
- _balances[recipient] = _balances[recipient].add(amount) (#495)
- _tokenTransfer(from,to,amount,takeFee) (#465)
- liquidityFeeCounter += amount.mul(liquidityFeeOnSelling).div(percentDivider) (#514)
- liquidityFeeCounter += amount.mul(liquidityFeeOnBuying).div(percentDivider) (#508)
- _tokenTransfer(from,to,amount,takeFee) (#465)
- marketFeeCounter += amount.mul(marketFeeOnSelling).div(percentDivider) (#515)
- marketFeeCounter += amount.mul(marketFeeOnBuying).div(percentDivider) (#509)
Reentrancy in ChowPandaInu.distributeAndLiquify(address,address) (#519-585):
External calls:
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#545)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquidity,bnbToBeAddedToLiquidity) (#560-565)
External calls sending eth:
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
State variables written after the call(s):
- liquidityFeeCounter = 0 (#581)
- marketFeeCounter = 0 (#582)
Apply the check-effects-interactions pattern.

Additional information: link


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


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.


Contract ownership is not renounced (belongs to a wallet)

ChowPandaInu.distributeAndLiquify(address,address) (#519-585) performs a multiplication on the result of a division:
-halfLiquidity = liquidityFeeCounter.div(2) (#537)
-bnbToBeAddedToLiquidity = deltaBalance.mul(halfLiquidity).div(tokenAmountToBeSwapped) (#548-550)
Consider ordering multiplication before division.

Additional information: link

Utils.addLiquidity(address,address,uint256,uint256) (#612-629) ignores return value by dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
Ensure that all the return values of the function calls are used.

Additional information: link

ChowPandaInu.allowance(address,address).owner (#258) shadows:
- Ownable.owner() (#125-127) (function)
ChowPandaInu._approve(address,address,uint256).owner (#426) shadows:
- Ownable.owner() (#125-127) (function)
Rename the local variables that shadow another component.

Additional information: link

ChowPandaInu.setMinTokenToSwap(uint256) (#336-339) should emit an event for:
- minTokenToSwap = _amount (#338)
ChowPandaInu.setMaxLimit(uint256) (#341-344) should emit an event for:
- maxHoldLimit = _amount (#343)
ChowPandaInu.setBuyFeePercent(uint256,uint256,uint256) (#346-358) should emit an event for:
- marketFeeOnBuying = _marketFee (#351)
- devFeeOnBuying = _devFee (#352)
- liquidityFeeOnBuying = _lpFee (#353)
ChowPandaInu.setSellFeePercent(uint256,uint256,uint256) (#360-372) should emit an event for:
- marketFeeOnSelling = _marketFee (#365)
- devFeeOnSelling = _devFee (#366)
- liquidityFeeOnSelling = _lpFee (#367)
Emit an event for critical parameter changes.

Additional information: link

ChowPandaInu.constructor(address,address)._marketWallet (#193) lacks a zero-check on :
- marketWallet = _marketWallet (#196)
ChowPandaInu.constructor(address,address)._devWallet (#193) lacks a zero-check on :
- devWallet = _devWallet (#197)
ChowPandaInu.updateAddresses(address,address)._marketWallet (#383) lacks a zero-check on :
- marketWallet = _marketWallet (#386)
ChowPandaInu.updateAddresses(address,address)._devWallet (#384) lacks a zero-check on :
- devWallet = _devWallet (#387)
ChowPandaInu.removeStuckBnb(address,uint256)._account (#390) lacks a zero-check on :
- _account.transfer(_amount) (#394)
Check that the address is not zero.

Additional information: link

Reentrancy in ChowPandaInu._transfer(address,address,uint256) (#437-466):
External calls:
- distributeAndLiquify(from,to) (#454)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#603-609)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#545)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquidity,bnbToBeAddedToLiquidity) (#560-565)
External calls sending eth:
- distributeAndLiquify(from,to) (#454)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#465)
- devFeeCounter += amount.mul(devFeeOnBuying).div(percentDivider) (#510)
- devFeeCounter += amount.mul(devFeeOnSelling).div(percentDivider) (#516)
Reentrancy in ChowPandaInu.constructor(address,address) (#193-224):
External calls:
- dexPair = IDexFactory(_dexRouter.factory()).createPair(address(this),_dexRouter.WETH()) (#206-209)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#215)
- _isExcludedFromFee[address(this)] = true (#216)
- _isExcludedFromMaxHolding[owner()] = true (#219)
- _isExcludedFromMaxHolding[address(this)] = true (#220)
- _isExcludedFromMaxHolding[dexPair] = true (#221)
- dexRouter = _dexRouter (#212)
Reentrancy in ChowPandaInu.distributeAndLiquify(address,address) (#519-585):
External calls:
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#545)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquidity,bnbToBeAddedToLiquidity) (#560-565)
External calls sending eth:
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
State variables written after the call(s):
- devFeeCounter = 0 (#583)
Reentrancy in ChowPandaInu.transferFrom(address,address,uint256) (#276-291):
External calls:
- _transfer(sender,recipient,amount) (#281)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#603-609)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#545)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquidity,bnbToBeAddedToLiquidity) (#560-565)
External calls sending eth:
- _transfer(sender,recipient,amount) (#281)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#282-289)
- _allowances[owner][spender] = amount (#433)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ChowPandaInu._transfer(address,address,uint256) (#437-466):
External calls:
- distributeAndLiquify(from,to) (#454)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#603-609)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#545)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquidity,bnbToBeAddedToLiquidity) (#560-565)
External calls sending eth:
- distributeAndLiquify(from,to) (#454)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
Event emitted after the call(s):
- Transfer(sender,address(this),amount) (#504)
- _tokenTransfer(from,to,amount,takeFee) (#465)
- Transfer(sender,recipient,tTransferAmount) (#481)
- _tokenTransfer(from,to,amount,takeFee) (#465)
- Transfer(sender,recipient,tTransferAmount_scope_1) (#490)
- _tokenTransfer(from,to,amount,takeFee) (#465)
- Transfer(sender,recipient,amount) (#497)
- _tokenTransfer(from,to,amount,takeFee) (#465)
Reentrancy in ChowPandaInu.constructor(address,address) (#193-224):
External calls:
- dexPair = IDexFactory(_dexRouter.factory()).createPair(address(this),_dexRouter.WETH()) (#206-209)
Event emitted after the call(s):
- Transfer(address(0),owner(),_totalSupply) (#223)
Reentrancy in ChowPandaInu.distributeAndLiquify(address,address) (#519-585):
External calls:
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#545)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquidity,bnbToBeAddedToLiquidity) (#560-565)
Event emitted after the call(s):
- SwapAndLiquify(halfLiquidity,bnbToBeAddedToLiquidity,otherHalfLiquidity) (#567-571)
Reentrancy in ChowPandaInu.transferFrom(address,address,uint256) (#276-291):
External calls:
- _transfer(sender,recipient,amount) (#281)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#603-609)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#545)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquidity,bnbToBeAddedToLiquidity) (#560-565)
External calls sending eth:
- _transfer(sender,recipient,amount) (#281)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#434)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#282-289)
Apply the check-effects-interactions pattern.

Additional information: link

Context._msgData() (#106-109) is never used and should be removed
SafeMath.mod(uint256,uint256) (#685-687) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#689-696) is never used and should be removed
Remove unused functions.

Additional information: link

ChowPandaInu.minTokenToSwap (#167) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(1e5)
ChowPandaInu.maxHoldLimit (#168) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(3).div(100)
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.10 (#27) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 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

Function IDexRouter.WETH() (#74) is not in mixedCase
Parameter ChowPandaInu.setMinTokenToSwap(uint256)._amount (#336) is not in mixedCase
Parameter ChowPandaInu.setMaxLimit(uint256)._amount (#341) is not in mixedCase
Parameter ChowPandaInu.setBuyFeePercent(uint256,uint256,uint256)._marketFee (#347) is not in mixedCase
Parameter ChowPandaInu.setBuyFeePercent(uint256,uint256,uint256)._devFee (#348) is not in mixedCase
Parameter ChowPandaInu.setBuyFeePercent(uint256,uint256,uint256)._lpFee (#349) is not in mixedCase
Parameter ChowPandaInu.setSellFeePercent(uint256,uint256,uint256)._marketFee (#361) is not in mixedCase
Parameter ChowPandaInu.setSellFeePercent(uint256,uint256,uint256)._devFee (#362) is not in mixedCase
Parameter ChowPandaInu.setSellFeePercent(uint256,uint256,uint256)._lpFee (#363) is not in mixedCase
Parameter ChowPandaInu.setDistributionStatus(bool)._value (#374) is not in mixedCase
Parameter ChowPandaInu.enableOrDisableFees(bool)._value (#378) is not in mixedCase
Parameter ChowPandaInu.updateAddresses(address,address)._marketWallet (#383) is not in mixedCase
Parameter ChowPandaInu.updateAddresses(address,address)._devWallet (#384) is not in mixedCase
Parameter ChowPandaInu.removeStuckBnb(address,uint256)._account (#390) is not in mixedCase
Parameter ChowPandaInu.removeStuckBnb(address,uint256)._amount (#390) is not in mixedCase
Variable ChowPandaInu._isExcludedFromFee (#154) is not in mixedCase
Variable ChowPandaInu._isExcludedFromMaxHolding (#155) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#107)" inContext (#101-110)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in ChowPandaInu._transfer(address,address,uint256) (#437-466):
External calls:
- distributeAndLiquify(from,to) (#454)
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
External calls sending eth:
- distributeAndLiquify(from,to) (#454)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#465)
- _balances[address(this)] = _balances[address(this)].add(amount) (#502)
- _balances[sender] = _balances[sender].sub(amount) (#478)
- _balances[recipient] = _balances[recipient].add(tTransferAmount) (#479)
- _balances[sender] = _balances[sender].sub(amount) (#487)
- _balances[recipient] = _balances[recipient].add(tTransferAmount_scope_1) (#488)
- _balances[sender] = _balances[sender].sub(amount) (#494)
- _balances[recipient] = _balances[recipient].add(amount) (#495)
- _tokenTransfer(from,to,amount,takeFee) (#465)
- devFeeCounter += amount.mul(devFeeOnBuying).div(percentDivider) (#510)
- devFeeCounter += amount.mul(devFeeOnSelling).div(percentDivider) (#516)
- _tokenTransfer(from,to,amount,takeFee) (#465)
- liquidityFeeCounter += amount.mul(liquidityFeeOnSelling).div(percentDivider) (#514)
- liquidityFeeCounter += amount.mul(liquidityFeeOnBuying).div(percentDivider) (#508)
- _tokenTransfer(from,to,amount,takeFee) (#465)
- marketFeeCounter += amount.mul(marketFeeOnSelling).div(percentDivider) (#515)
- marketFeeCounter += amount.mul(marketFeeOnBuying).div(percentDivider) (#509)
Event emitted after the call(s):
- Transfer(sender,address(this),amount) (#504)
- _tokenTransfer(from,to,amount,takeFee) (#465)
- Transfer(sender,recipient,tTransferAmount) (#481)
- _tokenTransfer(from,to,amount,takeFee) (#465)
- Transfer(sender,recipient,tTransferAmount_scope_1) (#490)
- _tokenTransfer(from,to,amount,takeFee) (#465)
- Transfer(sender,recipient,amount) (#497)
- _tokenTransfer(from,to,amount,takeFee) (#465)
Reentrancy in ChowPandaInu.distributeAndLiquify(address,address) (#519-585):
External calls:
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
State variables written after the call(s):
- devFeeCounter = 0 (#583)
- liquidityFeeCounter = 0 (#581)
- marketFeeCounter = 0 (#582)
Reentrancy in ChowPandaInu.transferFrom(address,address,uint256) (#276-291):
External calls:
- _transfer(sender,recipient,amount) (#281)
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
External calls sending eth:
- _transfer(sender,recipient,amount) (#281)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#621-628)
- marketWallet.transfer(bnbFormarket) (#575)
- devWallet.transfer(bnbForDev) (#578)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#282-289)
- _allowances[owner][spender] = amount (#433)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#434)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#282-289)
Apply the check-effects-interactions pattern.

Additional information: link

ChowPandaInu._decimals (#159) should be constant
ChowPandaInu._name (#157) should be constant
ChowPandaInu._symbol (#158) should be constant
ChowPandaInu._totalSupply (#160) should be constant
ChowPandaInu.percentDivider (#169) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#134-137)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#139-146)
name() should be declared external:
- ChowPandaInu.name() (#229-231)
symbol() should be declared external:
- ChowPandaInu.symbol() (#233-235)
decimals() should be declared external:
- ChowPandaInu.decimals() (#237-239)
totalSupply() should be declared external:
- ChowPandaInu.totalSupply() (#241-243)
transfer(address,uint256) should be declared external:
- ChowPandaInu.transfer(address,uint256) (#249-256)
allowance(address,address) should be declared external:
- ChowPandaInu.allowance(address,address) (#258-265)
approve(address,uint256) should be declared external:
- ChowPandaInu.approve(address,uint256) (#267-274)
transferFrom(address,address,uint256) should be declared external:
- ChowPandaInu.transferFrom(address,address,uint256) (#276-291)
increaseAllowance(address,uint256) should be declared external:
- ChowPandaInu.increaseAllowance(address,uint256) (#293-304)
decreaseAllowance(address,uint256) should be declared external:
- ChowPandaInu.decreaseAllowance(address,uint256) (#306-320)
setDistributionStatus(bool) should be declared external:
- ChowPandaInu.setDistributionStatus(bool) (#374-376)
Use the external attribute for functions never called from the contract.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Telegram account link seems to be invalid


Twitter account has less than 100 followers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Twitter account has few posts


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 KYC or doxxing proof


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for CHOWP

News for CHOWP