Poodle Token Token Logo

Poodle Token

About Poodle

Listings

Token 3 years

Poodle is a revolutionary new BSC token that combines all their best features to create something entirely new.
All holders of Poodle will earn more $Poodle that is automatically sent to your wallet by simply holding Poodle coins in your wallet.
So sit back, relax, and earn, while Poodle will surpass shib takes you to the moon.
✅WEB 3.0 ✅Dex Exchange ✅Staking ✅Launchpad ⚡️SAFU+KYC+Doxxed 🚀 CMC & CGK Fasttrack 🚀 CEX Listing

Social

Laser Scorebeta Last Audit: 13 October 2022

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

Anti-Scam

Links

PoodleToken.sendBNB(address,uint256) (#544-549) sends eth to arbitrary user
Dangerous calls:
- (success) = recipient.call{value: amount}() (#547)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in PoodleToken._transfer(address,address,uint256) (#676-733):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#706-711)
- sendBNB(address(devTeamWallet),devTeamBNB) (#717)
- (success) = recipient.call{value: amount}() (#547)
- sendBNB(address(marketingWallet),marketingBNB) (#724)
- (success) = recipient.call{value: amount}() (#547)
External calls sending eth:
- sendBNB(address(devTeamWallet),devTeamBNB) (#717)
- (success) = recipient.call{value: amount}() (#547)
- sendBNB(address(marketingWallet),marketingBNB) (#724)
- (success) = recipient.call{value: amount}() (#547)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#732)
- _rOwned[address(this)] = _rOwned[address(this)] + rMarketing (#612)
- _rOwned[address(this)] = _rOwned[address(this)] + rDevTeam (#622)
- _rOwned[DEAD] = _rOwned[DEAD] + rBurn (#603)
- _rOwned[sender] = _rOwned[sender] - rAmount (#787)
- _rOwned[sender] = _rOwned[sender] - rAmount (#776)
- _rOwned[sender] = _rOwned[sender] - rAmount (#812)
- _rOwned[sender] = _rOwned[sender] - rAmount (#800)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#777)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#801)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#789)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#814)
- _tokenTransfer(from,to,amount) (#732)
- _rTotal = _rTotal - rFee (#552)
- _tokenTransfer(from,to,amount) (#732)
- _tOwned[address(this)] = _tOwned[address(this)] + tMarketing (#614)
- _tOwned[address(this)] = _tOwned[address(this)] + tDevTeam (#624)
- _tOwned[sender] = _tOwned[sender] - tAmount (#811)
- _tOwned[sender] = _tOwned[sender] - tAmount (#799)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#788)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#813)
- _tokenTransfer(from,to,amount) (#732)
- devTeamFee = _previousDevTeamFee (#661)
- devTeamFee = 0 (#654)
- inSwapAndLiquify = false (#728)
- _tokenTransfer(from,to,amount) (#732)
- marketingFee = _previousMarketingFee (#660)
- marketingFee = 0 (#652)
Apply the check-effects-interactions pattern.

Additional information: link

PoodleToken.claimStuckTokens(address) (#529-538) ignores return value by ERC20token.transfer(msg.sender,balance) (#537)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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)

PoodleToken._previousMarketingFee (#350) is set pre-construction with a non-constant function or state variable:
- marketingFee
PoodleToken._previousBurnFee (#347) is set pre-construction with a non-constant function or state variable:
- burnFee
PoodleToken.swapTokensAtAmount (#368) is set pre-construction with a non-constant function or state variable:
- _tTotal / 5000
PoodleToken._previousTaxFee (#344) is set pre-construction with a non-constant function or state variable:
- taxFee
PoodleToken._tTotal (#339) is set pre-construction with a non-constant function or state variable:
- 100_000_000_000_000 * (10 ** _decimals)
PoodleToken._rTotal (#340) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
PoodleToken.totalFees (#355) is set pre-construction with a non-constant function or state variable:
- taxFee + burnFee + marketingFee + devTeamFee
PoodleToken._previousDevTeamFee (#353) is set pre-construction with a non-constant function or state variable:
- devTeamFee
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

solc-0.8.16 is not recommended for deployment
Pragma version0.8.16 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
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._functionCallWithValue(address,bytes,uint256,string) (#99-120):
- (success,returndata) = target.call{value: weiValue}(data) (#103)
Low level call in PoodleToken.sendBNB(address,uint256) (#544-549):
- (success) = recipient.call{value: amount}() (#547)
Low level call in Address.sendValue(address,uint256) (#74-80):
- (success) = recipient.call{value: amount}() (#78)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Address.sendValue(address,uint256) (#74-80) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#90-92) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#94-97) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#99-120) is never used and should be removed
Address.isContract(address) (#65-72) is never used and should be removed
Address.functionCall(address,bytes,string) (#86-88) is never used and should be removed
Address.functionCall(address,bytes) (#82-84) is never used and should be removed
Remove unused functions.

Additional information: link

PoodleToken._approve(address,address,uint256).owner (#668) shadows:
- Ownable.owner() (#27-29) (function)
PoodleToken.allowance(address,address).owner (#446) shadows:
- Ownable.owner() (#27-29) (function)
Rename the local variables that shadow another component.

Additional information: link

PoodleToken.setDevTeamFeePercent(uint256) (#861-865) should emit an event for:
- devTeamFee = _devTeamFee (#862)
PoodleToken.setTaxFeePercent(uint256) (#843-847) should emit an event for:
- taxFee = _taxFee (#844)
PoodleToken.setMarketingFeePercent(uint256) (#849-853) should emit an event for:
- marketingFee = _marketing (#850)
PoodleToken.setBurnFeePercent(uint256) (#855-859) should emit an event for:
- burnFee = _burnFee (#856)
PoodleToken.setSwapTokensAtAmount(uint256) (#736-739) should emit an event for:
- swapTokensAtAmount = newAmount (#738)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in PoodleToken._transfer(address,address,uint256) (#676-733):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#706-711)
- sendBNB(address(devTeamWallet),devTeamBNB) (#717)
- (success) = recipient.call{value: amount}() (#547)
- sendBNB(address(marketingWallet),marketingBNB) (#724)
- (success) = recipient.call{value: amount}() (#547)
External calls sending eth:
- sendBNB(address(devTeamWallet),devTeamBNB) (#717)
- (success) = recipient.call{value: amount}() (#547)
- sendBNB(address(marketingWallet),marketingBNB) (#724)
- (success) = recipient.call{value: amount}() (#547)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#732)
- _previousBurnFee = burnFee (#648)
- _tokenTransfer(from,to,amount) (#732)
- _previousDevTeamFee = devTeamFee (#650)
- _tokenTransfer(from,to,amount) (#732)
- _previousMarketingFee = marketingFee (#649)
- _tokenTransfer(from,to,amount) (#732)
- _previousTaxFee = taxFee (#647)
- _tokenTransfer(from,to,amount) (#732)
- _tFeeTotal = _tFeeTotal + tFee (#553)
- _tokenTransfer(from,to,amount) (#732)
- burnFee = _previousBurnFee (#659)
- burnFee = 0 (#653)
- _tokenTransfer(from,to,amount) (#732)
- taxFee = _previousTaxFee (#658)
- taxFee = 0 (#651)
Reentrancy in PoodleToken.transferFrom(address,address,uint256) (#455-459):
External calls:
- _transfer(sender,recipient,amount) (#456)
- (success) = recipient.call{value: amount}() (#547)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#706-711)
External calls sending eth:
- _transfer(sender,recipient,amount) (#456)
- (success) = recipient.call{value: amount}() (#547)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#457)
- _allowances[owner][spender] = amount (#672)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in PoodleToken._transfer(address,address,uint256) (#676-733):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#706-711)
- sendBNB(address(devTeamWallet),devTeamBNB) (#717)
- (success) = recipient.call{value: amount}() (#547)
- sendBNB(address(marketingWallet),marketingBNB) (#724)
- (success) = recipient.call{value: amount}() (#547)
External calls sending eth:
- sendBNB(address(devTeamWallet),devTeamBNB) (#717)
- (success) = recipient.call{value: amount}() (#547)
- sendBNB(address(marketingWallet),marketingBNB) (#724)
- (success) = recipient.call{value: amount}() (#547)
Event emitted after the call(s):
- SendMarketing(marketingBNB) (#725)
- Transfer(sender,DEAD,tBurn) (#604)
- _tokenTransfer(from,to,amount) (#732)
- Transfer(sender,recipient,tTransferAmount) (#781)
- _tokenTransfer(from,to,amount) (#732)
- Transfer(sender,recipient,tTransferAmount) (#793)
- _tokenTransfer(from,to,amount) (#732)
- Transfer(sender,recipient,tTransferAmount) (#805)
- _tokenTransfer(from,to,amount) (#732)
- Transfer(sender,recipient,tTransferAmount) (#818)
- _tokenTransfer(from,to,amount) (#732)
Reentrancy in PoodleToken._transfer(address,address,uint256) (#676-733):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#706-711)
- sendBNB(address(devTeamWallet),devTeamBNB) (#717)
- (success) = recipient.call{value: amount}() (#547)
External calls sending eth:
- sendBNB(address(devTeamWallet),devTeamBNB) (#717)
- (success) = recipient.call{value: amount}() (#547)
Event emitted after the call(s):
- SendDevTeam(devTeamBNB) (#718)
Reentrancy in PoodleToken.transferFrom(address,address,uint256) (#455-459):
External calls:
- _transfer(sender,recipient,amount) (#456)
- (success) = recipient.call{value: amount}() (#547)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#706-711)
External calls sending eth:
- _transfer(sender,recipient,amount) (#456)
- (success) = recipient.call{value: amount}() (#547)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#673)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#457)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#65-72) uses assembly
- INLINE ASM (#70)
Address._functionCallWithValue(address,bytes,uint256,string) (#99-120) uses assembly
- INLINE ASM (#112-115)
Do not use evm assembly.

Additional information: link

PoodleToken.openTrade() (#415-418) compares to a boolean constant:
-require(bool,string)(isTradingEnabled == false,Trading is already open!) (#416)
Remove the equality to the boolean constant.

Additional information: link

PoodleToken.includeInReward(address) (#514-525) has costly operations inside a loop:
- _excluded.pop() (#521)
Use a local variable to hold the loop computation result.

Additional information: link

Parameter PoodleToken.setBurnFeePercent(uint256)._burnFee (#855) is not in mixedCase
Parameter PoodleToken.setMarketingFeePercent(uint256)._marketing (#849) is not in mixedCase
Parameter PoodleToken.changeDevTeamWallet(address)._devTeamWallet (#836) is not in mixedCase
Parameter PoodleToken.changeMarketingWallet(address)._marketingWallet (#829) is not in mixedCase
Parameter PoodleToken.calculateDevTeamFee(uint256)._amount (#640) is not in mixedCase
Parameter PoodleToken.calculateTaxFee(uint256)._amount (#628) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#155) is not in mixedCase
Variable PoodleToken.DEAD (#361) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#171) is not in mixedCase
Parameter PoodleToken.calculateMarketingFee(uint256)._amount (#636) is not in mixedCase
Parameter PoodleToken.setDevTeamFeePercent(uint256)._devTeamFee (#861) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#154) is not in mixedCase
Parameter PoodleToken.setSwapEnabled(bool)._enabled (#741) is not in mixedCase
Parameter PoodleToken.setTaxFeePercent(uint256)._taxFee (#843) is not in mixedCase
Parameter PoodleToken.calculateBurnFee(uint256)._amount (#632) is not in mixedCase
Function IUniswapV2Router01.WETH() (#190) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable PoodleToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to PoodleToken._getTValues(uint256).tTransferAmount (#566)
Variable PoodleToken._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to PoodleToken._transferBothExcluded(address,address,uint256).tTransferAmount (#809)
Variable PoodleToken._transferBothExcluded(address,address,uint256).rTransferAmount (#809) is too similar to PoodleToken._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable PoodleToken._getValues(uint256).rTransferAmount (#558) is too similar to PoodleToken._getTValues(uint256).tTransferAmount (#566)
Variable PoodleToken._transferBothExcluded(address,address,uint256).rTransferAmount (#809) is too similar to PoodleToken._getTValues(uint256).tTransferAmount (#566)
Variable PoodleToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to PoodleToken._transferFromExcluded(address,address,uint256).tTransferAmount (#797)
Variable PoodleToken._transferFromExcluded(address,address,uint256).rTransferAmount (#797) is too similar to PoodleToken._transferBothExcluded(address,address,uint256).tTransferAmount (#809)
Variable PoodleToken._transferBothExcluded(address,address,uint256).rTransferAmount (#809) is too similar to PoodleToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable PoodleToken._getValues(uint256).rTransferAmount (#558) is too similar to PoodleToken._getValues(uint256).tTransferAmount (#557)
Variable PoodleToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to PoodleToken._transferBothExcluded(address,address,uint256).tTransferAmount (#809)
Variable PoodleToken._transferFromExcluded(address,address,uint256).rTransferAmount (#797) is too similar to PoodleToken._getValues(uint256).tTransferAmount (#557)
Variable PoodleToken._getValues(uint256).rTransferAmount (#558) is too similar to PoodleToken._transferFromExcluded(address,address,uint256).tTransferAmount (#797)
Variable PoodleToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to PoodleToken._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable PoodleToken.reflectionFromToken(uint256,bool).rTransferAmount (#494) is too similar to PoodleToken._getTValues(uint256).tTransferAmount (#566)
Variable PoodleToken.reflectionFromToken(uint256,bool).rTransferAmount (#494) is too similar to PoodleToken._transferFromExcluded(address,address,uint256).tTransferAmount (#797)
Variable PoodleToken._transferFromExcluded(address,address,uint256).rTransferAmount (#797) is too similar to PoodleToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable PoodleToken._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to PoodleToken._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable PoodleToken._transferBothExcluded(address,address,uint256).rTransferAmount (#809) is too similar to PoodleToken._transferFromExcluded(address,address,uint256).tTransferAmount (#797)
Variable PoodleToken._transferFromExcluded(address,address,uint256).rTransferAmount (#797) is too similar to PoodleToken._getTValues(uint256).tTransferAmount (#566)
Variable PoodleToken._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to PoodleToken._getValues(uint256).tTransferAmount (#557)
Variable PoodleToken._transferFromExcluded(address,address,uint256).rTransferAmount (#797) is too similar to PoodleToken._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable PoodleToken._transferBothExcluded(address,address,uint256).rTransferAmount (#809) is too similar to PoodleToken._transferBothExcluded(address,address,uint256).tTransferAmount (#809)
Variable PoodleToken._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#596) is too similar to PoodleToken._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable PoodleToken.reflectionFromToken(uint256,bool).rTransferAmount (#494) is too similar to PoodleToken._getValues(uint256).tTransferAmount (#557)
Variable PoodleToken._transferBothExcluded(address,address,uint256).rTransferAmount (#809) is too similar to PoodleToken._getValues(uint256).tTransferAmount (#557)
Variable PoodleToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to PoodleToken._transferBothExcluded(address,address,uint256).tTransferAmount (#809)
Variable PoodleToken._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#596) is too similar to PoodleToken._transferBothExcluded(address,address,uint256).tTransferAmount (#809)
Variable PoodleToken._getValues(uint256).rTransferAmount (#558) is too similar to PoodleToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable PoodleToken._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#596) is too similar to PoodleToken._transferFromExcluded(address,address,uint256).tTransferAmount (#797)
Variable PoodleToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to PoodleToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable PoodleToken._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#596) is too similar to PoodleToken._getTValues(uint256).tTransferAmount (#566)
Variable PoodleToken._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to PoodleToken._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#596)
Variable PoodleToken._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to PoodleToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable PoodleToken._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to PoodleToken._getTValues(uint256).tTransferAmount (#566)
Variable PoodleToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to PoodleToken._getTValues(uint256).tTransferAmount (#566)
Variable PoodleToken._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#596) is too similar to PoodleToken._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#596)
Variable PoodleToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to PoodleToken._getValues(uint256).tTransferAmount (#557)
Variable PoodleToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to PoodleToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable PoodleToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to PoodleToken._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#596)
Variable PoodleToken.reflectionFromToken(uint256,bool).rTransferAmount (#494) is too similar to PoodleToken._transferBothExcluded(address,address,uint256).tTransferAmount (#809)
Variable PoodleToken._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#596) is too similar to PoodleToken._getValues(uint256).tTransferAmount (#557)
Variable PoodleToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to PoodleToken._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable PoodleToken._transferBothExcluded(address,address,uint256).rTransferAmount (#809) is too similar to PoodleToken._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#596)
Variable PoodleToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to PoodleToken._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#596)
Variable PoodleToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to PoodleToken._getValues(uint256).tTransferAmount (#557)
Variable PoodleToken._transferFromExcluded(address,address,uint256).rTransferAmount (#797) is too similar to PoodleToken._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#596)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#195) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#196)
Variable PoodleToken._getValues(uint256).rTransferAmount (#558) is too similar to PoodleToken._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#596)
Variable PoodleToken._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#596) is too similar to PoodleToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable PoodleToken.reflectionFromToken(uint256,bool).rTransferAmount (#494) is too similar to PoodleToken._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#596)
Variable PoodleToken.reflectionFromToken(uint256,bool).rTransferAmount (#494) is too similar to PoodleToken._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable PoodleToken._getValues(uint256).rTransferAmount (#558) is too similar to PoodleToken._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable PoodleToken._transferFromExcluded(address,address,uint256).rTransferAmount (#797) is too similar to PoodleToken._transferFromExcluded(address,address,uint256).tTransferAmount (#797)
Variable PoodleToken.reflectionFromToken(uint256,bool).rTransferAmount (#494) is too similar to PoodleToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable PoodleToken._getValues(uint256).rTransferAmount (#558) is too similar to PoodleToken._transferBothExcluded(address,address,uint256).tTransferAmount (#809)
Variable PoodleToken._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to PoodleToken._transferFromExcluded(address,address,uint256).tTransferAmount (#797)
Variable PoodleToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#575) is too similar to PoodleToken._transferFromExcluded(address,address,uint256).tTransferAmount (#797)
Prevent variables from having similar names.

Additional information: link

PoodleToken.slitherConstructorVariables() (#323-873) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#361)
PoodleToken.setSwapTokensAtAmount(uint256) (#736-739) uses literals with too many digits:
- require(bool,string)(newAmount > totalSupply() / 100000,SwapTokensAtAmount must be greater than 0.001% of total supply) (#737)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

PoodleToken._symbol (#335) should be constant
PoodleToken.DEAD (#361) should be constant
PoodleToken._name (#334) should be constant
PoodleToken._decimals (#336) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

increaseAllowance(address,uint256) should be declared external:
- PoodleToken.increaseAllowance(address,uint256) (#461-464)
decreaseAllowance(address,uint256) should be declared external:
- PoodleToken.decreaseAllowance(address,uint256) (#466-469)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#36-39)
reflectionFromToken(uint256,bool) should be declared external:
- PoodleToken.reflectionFromToken(uint256,bool) (#488-497)
transfer(address,uint256) should be declared external:
- PoodleToken.transfer(address,uint256) (#441-444)
transferFrom(address,address,uint256) should be declared external:
- PoodleToken.transferFrom(address,address,uint256) (#455-459)
symbol() should be declared external:
- PoodleToken.symbol() (#424-426)
name() should be declared external:
- PoodleToken.name() (#420-422)
deliver(uint256) should be declared external:
- PoodleToken.deliver(uint256) (#479-486)
openTrade() should be declared external:
- PoodleToken.openTrade() (#415-418)
excludeFromReward(address) should be declared external:
- PoodleToken.excludeFromReward(address) (#505-512)
totalReflectionDistributed() should be declared external:
- PoodleToken.totalReflectionDistributed() (#475-477)
decimals() should be declared external:
- PoodleToken.decimals() (#428-430)
isExcludedFromReward(address) should be declared external:
- PoodleToken.isExcludedFromReward(address) (#471-473)
approve(address,uint256) should be declared external:
- PoodleToken.approve(address,uint256) (#450-453)
allowance(address,address) should be declared external:
- PoodleToken.allowance(address,address) (#446-448)
isExcludedFromFee(address) should be declared external:
- PoodleToken.isExcludedFromFee(address) (#664-666)
Use the external attribute for functions never called from the contract.

Additional information: link

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.


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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


Token is relatively young, but twitter if very old (probably it's fake).

Price for Poodle

News for Poodle