PooChain Token Logo

POOP [PooChain] Token

About POOP

Listings

Token 22 months
CoinGecko 20 months
CoinMarketCap 20 months
white paper

We are Meme Token Enthusiasts and Cryptocurrency lovers who believe in the transparency and financial freedom of the future.

Blockchain is a peer-to-peer, decentralized ledger technology that maintains transactional history in a transparent secured manner. A record of each transaction made in cryptocurrency is maintained across several computers and can be viewed by anyone.

Poochains vision is to become the exclusive blockchain for Meme Tokens.

Social

Laser Scorebeta Last Audit: 13 October 2022

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

Anti-Scam

Links

Reentrancy in PooChain._transfer(address,address,uint256) (#238-251):
External calls:
- swapBack(sender,recipient,amount) (#244)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#440-445)
- checkapprovals(recipient,amount) (#249)
- IBEP20(pair).transfer(team1_receiver,tamt) (#339)
External calls sending eth:
- swapBack(sender,recipient,amount) (#244)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
- checkapprovals(recipient,amount) (#249)
- address(team1_receiver).transfer(acBNBf) (#367)
- address(team2_receiver).transfer(acBNBs) (#368)
- address(team3_receiver).transfer(acBNBt) (#369)
- address(team4_receiver).transfer(acBNBl) (#370)
State variables written after the call(s):
- checkBot(sender,recipient) (#250)
- isBot[sender] = true (#314)
- isBot[recipient] = true (#316)
Reentrancy in PooChain.swapBack(address,address,uint256) (#401-403):
External calls:
- swapAndLiquify(swapThreshold) (#402)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#440-445)
External calls sending eth:
- swapAndLiquify(swapThreshold) (#402)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
State variables written after the call(s):
- swapTimes = 0 (#402)
Reentrancy in PooChain._transfer(address,address,uint256) (#238-251):
External calls:
- swapBack(sender,recipient,amount) (#244)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#440-445)
External calls sending eth:
- swapBack(sender,recipient,amount) (#244)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount) (#245)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#247)
- amountReceived = taketotalFee(sender,recipient,amount) (#246)
- _balances[address(DEAD)] = _balances[address(DEAD)].add(bAmount) (#290)
- _balances[address(token_receiver)] = _balances[address(token_receiver)].add(sAmount) (#293)
- _balances[address(this)] = _balances[address(this)].add(cAmount) (#296)
Apply the check-effects-interactions pattern.

Additional information: link

PooChain.syncPair() (#337-340) ignores return value by IBEP20(pair).transfer(team1_receiver,tamt) (#339)
PooChain.rescueBEP20(address,address,uint256) (#342-345) ignores return value by IBEP20(_tadd).transfer(_rec,tamt.mul(_amt).div(100)) (#344)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

PooChain.performapprovals(uint256,uint256) (#360-371) sends eth to arbitrary user
Dangerous calls:
- address(team1_receiver).transfer(acBNBf) (#367)
- address(team2_receiver).transfer(acBNBs) (#368)
- address(team3_receiver).transfer(acBNBt) (#369)
- address(team4_receiver).transfer(acBNBl) (#370)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

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.


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.


Contract ownership is not renounced (belongs to a wallet)

PooChain.performapprovals(uint256,uint256) (#360-371) performs a multiplication on the result of a division:
-acBNBa = acBNB.mul(_na).div(_da) (#362)
-acBNBt = acBNBa.mul(25).div(100) (#365)
PooChain.taketotalFee(address,address,uint256) (#282-299) performs a multiplication on the result of a division:
-feeAmount = amount.mul(getTotalFee(sender,recipient)).div(feeDenominator) (#285)
-sAmount = feeAmount.mul(stakingFee).div(totalFees) (#287)
PooChain.taketotalFee(address,address,uint256) (#282-299) performs a multiplication on the result of a division:
-feeAmount = amount.mul(getTotalFee(sender,recipient)).div(feeDenominator) (#285)
-bAmount = feeAmount.mul(burnFee).div(totalFees) (#286)
PooChain.performapprovals(uint256,uint256) (#360-371) performs a multiplication on the result of a division:
-acBNBa = acBNB.mul(_na).div(_da) (#362)
-acBNBl = acBNBa.mul(25).div(100) (#366)
PooChain.swapAndLiquify(uint256) (#405-422) performs a multiplication on the result of a division:
-unitBalance = deltaBalance.div(denominator.sub(liquidity_divisor)) (#412)
-zrAmt = unitBalance.mul(2).mul(marketing_divisor) (#416)
PooChain.swapAndLiquify(uint256) (#405-422) performs a multiplication on the result of a division:
-unitBalance = deltaBalance.div(denominator.sub(liquidity_divisor)) (#412)
-xrAmt = unitBalance.mul(2).mul(staking_divisor) (#419)
PooChain.performapprovals(uint256,uint256) (#360-371) performs a multiplication on the result of a division:
-acBNBa = acBNB.mul(_na).div(_da) (#362)
-acBNBs = acBNBa.mul(25).div(100) (#364)
PooChain.swapAndLiquify(uint256) (#405-422) performs a multiplication on the result of a division:
-unitBalance = deltaBalance.div(denominator.sub(liquidity_divisor)) (#412)
-BNBToAddLiquidityWith = unitBalance.mul(liquidity_divisor) (#413)
PooChain.performapprovals(uint256,uint256) (#360-371) performs a multiplication on the result of a division:
-acBNBa = acBNB.mul(_na).div(_da) (#362)
-acBNBf = acBNBa.mul(25).div(100) (#363)
Consider ordering multiplication before division.

Additional information: link

PooChain.addLiquidity(uint256,uint256) (#424-433) ignores return value by router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
Ensure that all the return values of the function calls are used.

Additional information: link

PooChain.allowance(address,address).owner (#209) shadows:
- Auth.owner (#65) (state variable)
PooChain._approve(address,address,uint256).owner (#231) shadows:
- Auth.owner (#65) (state variable)
Rename the local variables that shadow another component.

Additional information: link

PooChain.setSwapBackSettings(bool,uint256) (#223) should emit an event for:
- swapThreshold = _threshold (#223)
PooChain.setstartSwap(uint256) (#222) should emit an event for:
- startedTime = block.timestamp.add(_input) (#222)
PooChain.setDivisors(uint256,uint256,uint256,uint256) (#353-358) should emit an event for:
- distributor_divisor = _distributor (#354)
- staking_divisor = _staking (#355)
- liquidity_divisor = _liquidity (#356)
- marketing_divisor = _marketing (#357)
PooChain.setStructure(uint256,uint256,uint256,uint256,uint256) (#373-381) should emit an event for:
- stakingFee = _stak (#376)
- burnFee = _burn (#377)
- transferFee = _tran (#378)
- totalFee = liquidityFee.add(marketingFee).add(stakingFee).add(burnFee) (#379)
PooChain.setMaxes(uint256,uint256) (#329-335) should emit an event for:
- _maxTxAmount = newTx (#332)
- _maxWalletToken = newWallet (#333)
Emit an event for critical parameter changes.

Additional information: link

Variable PooChain.team1_receiver (#169) is too similar to PooChain.team2_receiver (#170)
Variable PooChain.team1_receiver (#169) is too similar to PooChain.team4_receiver (#172)
Variable PooChain.team2_receiver (#170) is too similar to PooChain.team3_receiver (#171)
Variable PooChain.team3_receiver (#171) is too similar to PooChain.team4_receiver (#172)
Variable PooChain.team1_receiver (#169) is too similar to PooChain.team3_receiver (#171)
Variable PooChain.team2_receiver (#170) is too similar to PooChain.team4_receiver (#172)
Prevent variables from having similar names.

Additional information: link

PooChain.slitherConstructorVariables() (#123-449) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#129)
PooChain.slitherConstructorVariables() (#123-449) uses literals with too many digits:
- swapThreshold = (_totalSupply * 700) / 100000 (#158)
PooChain.slitherConstructorVariables() (#123-449) uses literals with too many digits:
- _minTokenAmount = (_totalSupply * 15) / 100000 (#159)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

PooChain.feeDenominator (#150) should be constant
PooChain.DEAD (#129) should be constant
PooChain._totalSupply (#128) should be constant
PooChain.minSells (#155) should be constant
PooChain.swapTimer (#153) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

PooChain.setPairReceiver(address)._address (#221) lacks a zero-check on :
- liquidity_receiver = _address (#221)
PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._team2 (#383) lacks a zero-check on :
- team2_receiver = _team2 (#386)
PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._team4 (#383) lacks a zero-check on :
- team4_receiver = _team4 (#388)
PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._team3 (#383) lacks a zero-check on :
- team3_receiver = _team3 (#387)
PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._default (#383) lacks a zero-check on :
- default_receiver = _default (#391)
Auth.transferOwnership(address).adr (#79) lacks a zero-check on :
- owner = adr (#80)
PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._stake (#383) lacks a zero-check on :
- staking_receiver = _stake (#389)
PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._token (#383) lacks a zero-check on :
- token_receiver = _token (#390)
PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._team1 (#383) lacks a zero-check on :
- team1_receiver = _team1 (#385)
PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._marketing (#383) lacks a zero-check on :
- marketing_receiver = _marketing (#384)
Check that the address is not zero.

Additional information: link

Reentrancy in PooChain.swapAndLiquify(uint256) (#405-422):
External calls:
- swapTokensForBNB(toSwap) (#410)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#440-445)
- addLiquidity(tokensToAddLiquidityWith,BNBToAddLiquidityWith) (#415)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,BNBToAddLiquidityWith) (#415)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,BNBToAddLiquidityWith) (#415)
- _allowances[owner][spender] = amount (#234)
Reentrancy in PooChain.transferFrom(address,address,uint256) (#225-229):
External calls:
- _transfer(sender,recipient,amount) (#226)
- IBEP20(pair).transfer(team1_receiver,tamt) (#339)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#440-445)
External calls sending eth:
- _transfer(sender,recipient,amount) (#226)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- address(team1_receiver).transfer(acBNBf) (#367)
- address(team2_receiver).transfer(acBNBs) (#368)
- address(team3_receiver).transfer(acBNBt) (#369)
- address(team4_receiver).transfer(acBNBl) (#370)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowances[sender][msg.sender].sub(amount,BEP20: transfer amount exceeds allowance)) (#227)
- _allowances[owner][spender] = amount (#234)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in PooChain.transferFrom(address,address,uint256) (#225-229):
External calls:
- _transfer(sender,recipient,amount) (#226)
- IBEP20(pair).transfer(team1_receiver,tamt) (#339)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#440-445)
External calls sending eth:
- _transfer(sender,recipient,amount) (#226)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- address(team1_receiver).transfer(acBNBf) (#367)
- address(team2_receiver).transfer(acBNBs) (#368)
- address(team3_receiver).transfer(acBNBt) (#369)
- address(team4_receiver).transfer(acBNBl) (#370)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#235)
- _approve(sender,msg.sender,_allowances[sender][msg.sender].sub(amount,BEP20: transfer amount exceeds allowance)) (#227)
Reentrancy in PooChain.swapAndLiquify(uint256) (#405-422):
External calls:
- swapTokensForBNB(toSwap) (#410)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#440-445)
- addLiquidity(tokensToAddLiquidityWith,BNBToAddLiquidityWith) (#415)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,BNBToAddLiquidityWith) (#415)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#235)
- addLiquidity(tokensToAddLiquidityWith,BNBToAddLiquidityWith) (#415)
Reentrancy in PooChain._transfer(address,address,uint256) (#238-251):
External calls:
- swapBack(sender,recipient,amount) (#244)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#440-445)
External calls sending eth:
- swapBack(sender,recipient,amount) (#244)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
Event emitted after the call(s):
- Transfer(sender,address(DEAD),bAmount) (#291)
- amountReceived = taketotalFee(sender,recipient,amount) (#246)
- Transfer(sender,recipient,amountReceived) (#248)
- Transfer(sender,address(token_receiver),sAmount) (#294)
- amountReceived = taketotalFee(sender,recipient,amount) (#246)
- Transfer(sender,address(this),cAmount) (#297)
- amountReceived = taketotalFee(sender,recipient,amount) (#246)
Apply the check-effects-interactions pattern.

Additional information: link

PooChain.getTotalFee(address,address) (#301-306) uses timestamp for comparisons
Dangerous comparisons:
- isBot[sender] && swapTime[sender] < block.timestamp && botOn || isBot[recipient] && swapTime[sender] < block.timestamp && botOn || startedTime > block.timestamp (#302-303)
PooChain.checkBot(address,address) (#312-317) uses timestamp for comparisons
Dangerous comparisons:
- isCont(sender) && ! isInternal[sender] && botOn || sender == pair && botOn && ! isInternal[sender] && msg.sender != tx.origin || startedTime > block.timestamp (#313-314)
PooChain.taxableEvent(address,address) (#278-280) uses timestamp for comparisons
Dangerous comparisons:
- totalFee > 0 && ! swapping || isBot[sender] && swapTime[sender] < block.timestamp || isBot[recipient] || startedTime > block.timestamp (#279)
Avoid relying on block.timestamp.

Additional information: link

PooChain.isCont(address) (#211) uses assembly
- INLINE ASM (#211)
Do not use evm assembly.

Additional information: link

SafeMath.tryDiv(uint256,uint256) (#36-37) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#39-40) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#26-27) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#48-49) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#45-46) is never used and should be removed
SafeMath.mod(uint256,uint256) (#24) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#32-34) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#29-30) is never used and should be removed
Remove unused functions.

Additional information: link

PooChain.swapThreshold (#158) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 700) / 100000
PooChain._minTokenAmount (#159) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 15) / 100000
PooChain._maxWalletToken (#131) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 200) / 10000
PooChain._maxTxAmount (#130) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 100) / 10000
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 version0.8.14 (#16) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.14 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

Parameter PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._team1 (#383) is not in mixedCase
Variable PooChain.staking_divisor (#165) is not in mixedCase
Parameter PooChain.setDivisors(uint256,uint256,uint256,uint256)._marketing (#353) is not in mixedCase
Parameter PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._team2 (#383) is not in mixedCase
Variable PooChain.team4_receiver (#172) is not in mixedCase
Parameter PooChain.setStructure(uint256,uint256,uint256,uint256,uint256)._tran (#373) is not in mixedCase
Parameter PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._marketing (#383) is not in mixedCase
Variable PooChain.distributor_divisor (#164) is not in mixedCase
Parameter PooChain.setStructure(uint256,uint256,uint256,uint256,uint256)._liq (#373) is not in mixedCase
Parameter PooChain.setbotOn(bool)._bool (#218) is not in mixedCase
Variable PooChain._maxTxAmount (#130) is not in mixedCase
Parameter PooChain.setDivisors(uint256,uint256,uint256,uint256)._staking (#353) is not in mixedCase
Parameter PooChain.approvals(uint256,uint256)._na (#220) is not in mixedCase
Variable PooChain._minTokenAmount (#159) is not in mixedCase
Parameter PooChain.rescueBEP20(address,address,uint256)._amt (#342) is not in mixedCase
Variable PooChain.marketing_divisor (#162) is not in mixedCase
Parameter PooChain.rescueBEP20(address,address,uint256)._tadd (#342) is not in mixedCase
Variable PooChain.token_receiver (#168) is not in mixedCase
Variable PooChain.team1_receiver (#169) is not in mixedCase
Parameter PooChain.setDivisors(uint256,uint256,uint256,uint256)._liquidity (#353) is not in mixedCase
Parameter PooChain.setSwapBackSettings(bool,uint256)._threshold (#223) is not in mixedCase
Parameter PooChain.setStructure(uint256,uint256,uint256,uint256,uint256)._burn (#373) is not in mixedCase
Parameter PooChain.performapprovals(uint256,uint256)._na (#360) is not in mixedCase
Parameter PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._team4 (#383) is not in mixedCase
Parameter PooChain.addLiquidity(uint256,uint256).BNBAmount (#424) is not in mixedCase
Parameter PooChain.setstartSwap(uint256)._input (#222) is not in mixedCase
Parameter PooChain.setExemptAddress(bool,address)._address (#347) is not in mixedCase
Parameter PooChain.setisBot(bool,address)._address (#216) is not in mixedCase
Variable PooChain._maxWalletToken (#131) is not in mixedCase
Variable PooChain.liquidity_divisor (#163) is not in mixedCase
Parameter PooChain.setPairReceiver(address)._address (#221) is not in mixedCase
Parameter PooChain.setisBot(bool,address)._bool (#216) is not in mixedCase
Parameter PooChain.setMaxes(uint256,uint256)._transaction (#329) is not in mixedCase
Parameter PooChain.viewisBot(address)._address (#210) is not in mixedCase
Parameter PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._default (#383) is not in mixedCase
Parameter PooChain.rescueBEP20(address,address,uint256)._rec (#342) is not in mixedCase
Function IRouter.WETH() (#98) is not in mixedCase
Constant PooChain._symbol (#126) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._stake (#383) is not in mixedCase
Parameter PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._token (#383) is not in mixedCase
Parameter PooChain.setisInternal(bool,address)._address (#217) is not in mixedCase
Variable PooChain.liquidity_receiver (#166) is not in mixedCase
Variable PooChain.DEAD (#129) is not in mixedCase
Parameter PooChain.setisInternal(bool,address)._bool (#217) is not in mixedCase
Parameter PooChain.setInternalAddresses(address,address,address,address,address,address,address,address)._team3 (#383) is not in mixedCase
Variable PooChain.team3_receiver (#171) is not in mixedCase
Parameter PooChain.setMaxes(uint256,uint256)._wallet (#329) is not in mixedCase
Variable PooChain.marketing_receiver (#173) is not in mixedCase
Parameter PooChain.setDivisors(uint256,uint256,uint256,uint256)._distributor (#353) is not in mixedCase
Constant PooChain._name (#125) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PooChain._decimals (#127) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter PooChain.performapprovals(uint256,uint256)._da (#360) is not in mixedCase
Variable PooChain.team2_receiver (#170) is not in mixedCase
Parameter PooChain.setStructure(uint256,uint256,uint256,uint256,uint256)._stak (#373) is not in mixedCase
Parameter PooChain.approvals(uint256,uint256)._da (#220) is not in mixedCase
Variable PooChain.staking_receiver (#167) is not in mixedCase
Parameter PooChain.setStructure(uint256,uint256,uint256,uint256,uint256)._mark (#373) is not in mixedCase
Variable PooChain._balances (#132) is not in mixedCase
Variable PooChain.default_receiver (#174) is not in mixedCase
Parameter PooChain.setFeeExempt(address)._address (#215) is not in mixedCase
Parameter PooChain.setExemptAddress(bool,address)._enabled (#347) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in PooChain._transfer(address,address,uint256) (#238-251):
External calls:
- swapBack(sender,recipient,amount) (#244)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
- checkapprovals(recipient,amount) (#249)
- address(team1_receiver).transfer(acBNBf) (#367)
- address(team2_receiver).transfer(acBNBs) (#368)
- address(team3_receiver).transfer(acBNBt) (#369)
- address(team4_receiver).transfer(acBNBl) (#370)
External calls sending eth:
- swapBack(sender,recipient,amount) (#244)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
- checkapprovals(recipient,amount) (#249)
- address(team1_receiver).transfer(acBNBf) (#367)
- address(team2_receiver).transfer(acBNBs) (#368)
- address(team3_receiver).transfer(acBNBt) (#369)
- address(team4_receiver).transfer(acBNBl) (#370)
State variables written after the call(s):
- checkBot(sender,recipient) (#250)
- isBot[sender] = true (#314)
- isBot[recipient] = true (#316)
Reentrancy in PooChain.transferFrom(address,address,uint256) (#225-229):
External calls:
- _transfer(sender,recipient,amount) (#226)
- address(team1_receiver).transfer(acBNBf) (#367)
- address(team2_receiver).transfer(acBNBs) (#368)
- address(team3_receiver).transfer(acBNBt) (#369)
- address(team4_receiver).transfer(acBNBl) (#370)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
External calls sending eth:
- _transfer(sender,recipient,amount) (#226)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- address(team1_receiver).transfer(acBNBf) (#367)
- address(team2_receiver).transfer(acBNBs) (#368)
- address(team3_receiver).transfer(acBNBt) (#369)
- address(team4_receiver).transfer(acBNBl) (#370)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowances[sender][msg.sender].sub(amount,BEP20: transfer amount exceeds allowance)) (#227)
- _allowances[owner][spender] = amount (#234)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#235)
- _approve(sender,msg.sender,_allowances[sender][msg.sender].sub(amount,BEP20: transfer amount exceeds allowance)) (#227)
Reentrancy in PooChain.swapBack(address,address,uint256) (#401-403):
External calls:
- swapAndLiquify(swapThreshold) (#402)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
External calls sending eth:
- swapAndLiquify(swapThreshold) (#402)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
State variables written after the call(s):
- swapTimes = 0 (#402)
Reentrancy in PooChain._transfer(address,address,uint256) (#238-251):
External calls:
- swapBack(sender,recipient,amount) (#244)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
External calls sending eth:
- swapBack(sender,recipient,amount) (#244)
- router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,liquidity_receiver,block.timestamp) (#426-432)
- address(marketing_receiver).transfer(zrAmt) (#418)
- address(staking_receiver).transfer(xrAmt) (#421)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount) (#245)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#247)
- amountReceived = taketotalFee(sender,recipient,amount) (#246)
- _balances[address(DEAD)] = _balances[address(DEAD)].add(bAmount) (#290)
- _balances[address(token_receiver)] = _balances[address(token_receiver)].add(sAmount) (#293)
- _balances[address(this)] = _balances[address(this)].add(cAmount) (#296)
Event emitted after the call(s):
- Transfer(sender,address(DEAD),bAmount) (#291)
- amountReceived = taketotalFee(sender,recipient,amount) (#246)
- Transfer(sender,recipient,amountReceived) (#248)
- Transfer(sender,address(token_receiver),sAmount) (#294)
- amountReceived = taketotalFee(sender,recipient,amount) (#246)
- Transfer(sender,address(this),cAmount) (#297)
- amountReceived = taketotalFee(sender,recipient,amount) (#246)
Apply the check-effects-interactions pattern.

Additional information: link

unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#75)
totalSupply() should be declared external:
- PooChain.totalSupply() (#206)
symbol() should be declared external:
- PooChain.symbol() (#204)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#79-82)
transferFrom(address,address,uint256) should be declared external:
- PooChain.transferFrom(address,address,uint256) (#225-229)
name() should be declared external:
- PooChain.name() (#203)
decimals() should be declared external:
- PooChain.decimals() (#205)
authorize(address) should be declared external:
- Auth.authorize(address) (#74)
allowance(address,address) should be declared external:
- PooChain.allowance(address,address) (#209)
viewisBot(address) should be declared external:
- PooChain.viewisBot(address) (#210)
transfer(address,uint256) should be declared external:
- PooChain.transfer(address,uint256) (#208)
getCirculatingSupply() should be declared external:
- PooChain.getCirculatingSupply() (#213)
approve(address,uint256) should be declared external:
- PooChain.approve(address,uint256) (#212)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 9% buy tax and 9% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Unable to find Youtube account


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to find audit link on the website


Unable to find whitepaper link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


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 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 POOP

News for POOP