Tiny Pups Token Logo

PUPS [Tiny Pups] Token

About PUPS

Listings

Token 2 years
white paper

Tiny Pups is a community token featuring giveaways, special benefits to holders, lotto games that will boost the token's value over time, and a PuppyPark ecosystem that will drive buying pressure. Join our Telegram today to learn more about how we're taking the BSC space by storm!

Social

Laser Scorebeta Last Audit: 14 February 2022

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

TinyPups.swapAndLiquify(address,address) (#812-872) sends eth to arbitrary user
Dangerous calls:
- marketWallet.transfer(bnbFormarketWallet) (#850)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in TinyPups._transfer(address,address,uint256) (#619-641):
External calls:
- swapAndLiquify(from,to) (#629)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#908-915)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#890-896)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#838)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquid,bnbToBeAddedToLiquidity) (#854-859)
External calls sending eth:
- swapAndLiquify(from,to) (#629)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#908-915)
- marketWallet.transfer(bnbFormarketWallet) (#850)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _accumulatedLiquidity = _accumulatedLiquidity.add(tAmount.mul(_currentLiquidityFee).div(1e3)) (#789-791)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _rOwned[burnAddress] = _rOwned[burnAddress].add(rBurnFee) (#807)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#745)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#705)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#706)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#727)
- _rOwned[address(this)] = _rOwned[address(this)].add(rFee) (#799)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _rTotal = _rTotal.sub(rFee) (#778)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#763)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#765)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#725)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#746)
- _tOwned[address(this)] = _tOwned[address(this)].add(tFee) (#798)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- excludedTSupply = excludedTSupply.sub(tAmount) (#764)
- excludedTSupply = excludedTSupply.add(tAmount) (#747)
- excludedTSupply = excludedTSupply.sub(tAmount) (#726)
- excludedTSupply = excludedTSupply.add(tAmount) (#766)
Reentrancy in TinyPups.swapAndLiquify(address,address) (#812-872):
External calls:
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#838)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquid,bnbToBeAddedToLiquidity) (#854-859)
External calls sending eth:
- marketWallet.transfer(bnbFormarketWallet) (#850)
State variables written after the call(s):
- _accumulatedLiquidity = 0 (#869)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

TinyPups._reflectFee(uint256) (#775-780) performs a multiplication on the result of a division:
-tFee = tAmount.mul(_currentReflectionFee).div(1e3) (#776)
-rFee = tFee.mul(_getRate()) (#777)
TinyPups._takeAllFee(address,uint256,uint256) (#783-803) performs a multiplication on the result of a division:
-tFee = tAmount.mul(_currentLiquidityFee.add(_currentmarketWalletFee)).div(1e3) (#784-786)
-rFee = tFee.mul(currentRate) (#796)
TinyPups._takeBurnFee(address,uint256,uint256) (#804-810) performs a multiplication on the result of a division:
-burnFee = tAmount.mul(_currentBurnFee).div(1e3) (#805)
-rBurnFee = burnFee.mul(currentRate) (#806)
TinyPups.swapAndLiquify(address,address) (#812-872) performs a multiplication on the result of a division:
-halfLiquid = _accumulatedLiquidity.div(2) (#830)
-bnbToBeAddedToLiquidity = deltaBalance.mul(halfLiquid).div(tokenAmountToBeSwapped) (#841-843)
Consider ordering multiplication before division.

Additional information: link

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

Additional information: link

TinyPups.allowance(address,address).owner (#348) shadows:
- Ownable.owner() (#116-118) (function)
TinyPups._approve(address,address,uint256).owner (#644) shadows:
- Ownable.owner() (#116-118) (function)
Rename the local variables that shadow another component.

Additional information: link

TinyPups.setSellFeePercent(uint256,uint256,uint256,uint256) (#503-513) should emit an event for:
- reflectionFeeOnSelling = _redistributionFee (#509)
- liquidityFeeOnSelling = _liquidityFee (#510)
- marketWalletFeeOnSelling = _marketWalletFee (#511)
- burnFeeOnSelling = _burnFee (#512)
TinyPups.setMinTokenToSwap(uint256) (#524-526) should emit an event for:
- minTokenToSwap = _amount (#525)
TinyPups.setBuyFeePercent(uint256,uint256,uint256,uint256) (#529-539) should emit an event for:
- reflectionFeeOnBuying = _redistributionFee (#535)
- liquidityFeeOnBuying = _liquidityFee (#536)
- marketWalletFeeOnBuying = _marketWalletFee (#537)
- burnFeeOnBuying = _burnFee (#538)
Emit an event for critical parameter changes.

Additional information: link

TinyPups.constructor(address)._marketWallet (#287) lacks a zero-check on :
- marketWallet = _marketWallet (#289)
TinyPups.setmarketWalletAddress(address)._newAddress (#554) lacks a zero-check on :
- marketWallet = _newAddress (#558)
TinyPups.setRoute(IDexRouter,address)._pair (#562) lacks a zero-check on :
- dexPair = _pair (#564)
Check that the address is not zero.

Additional information: link

Reentrancy in TinyPups._transfer(address,address,uint256) (#619-641):
External calls:
- swapAndLiquify(from,to) (#629)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#908-915)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#890-896)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#838)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquid,bnbToBeAddedToLiquidity) (#854-859)
External calls sending eth:
- swapAndLiquify(from,to) (#629)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#908-915)
- marketWallet.transfer(bnbFormarketWallet) (#850)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _accumulatedMarketWallet = _accumulatedMarketWallet.add(tAmount.mul(_currentmarketWalletFee).div(1e3)) (#792-794)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _currentBurnFee = burnFeeOnSelling (#615)
- _currentBurnFee = 0 (#608)
- _currentBurnFee = burnFeeOnBuying (#601)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _currentLiquidityFee = liquidityFeeOnSelling (#613)
- _currentLiquidityFee = 0 (#606)
- _currentLiquidityFee = liquidityFeeOnBuying (#599)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _currentReflectionFee = reflectionFeeOnSelling (#612)
- _currentReflectionFee = 0 (#605)
- _currentReflectionFee = reflectionFeeOnBuying (#598)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _currentmarketWalletFee = marketWalletFeeOnSelling (#614)
- _currentmarketWalletFee = 0 (#607)
- _currentmarketWalletFee = marketWalletFeeOnBuying (#600)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _tFeeTotal = _tFeeTotal.add(tFee) (#779)
Reentrancy in TinyPups.constructor(address) (#287-309):
External calls:
- dexPair = IDexFactory(_dexRouter.factory()).createPair(address(this),_dexRouter.WETH()) (#296-299)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#305)
- _isExcludedFromFee[address(this)] = true (#306)
- dexRouter = _dexRouter (#302)
Reentrancy in TinyPups.swapAndLiquify(address,address) (#812-872):
External calls:
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#838)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquid,bnbToBeAddedToLiquidity) (#854-859)
External calls sending eth:
- marketWallet.transfer(bnbFormarketWallet) (#850)
State variables written after the call(s):
- _accumulatedMarketWallet = 0 (#870)
Reentrancy in TinyPups.transferFrom(address,address,uint256) (#366-381):
External calls:
- _transfer(sender,recipient,amount) (#371)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#908-915)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#890-896)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#838)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquid,bnbToBeAddedToLiquidity) (#854-859)
External calls sending eth:
- _transfer(sender,recipient,amount) (#371)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#908-915)
- marketWallet.transfer(bnbFormarketWallet) (#850)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,Token: transfer amount exceeds allowance)) (#372-379)
- _allowances[owner][spender] = amount (#651)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TinyPups._transfer(address,address,uint256) (#619-641):
External calls:
- swapAndLiquify(from,to) (#629)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#908-915)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#890-896)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#838)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquid,bnbToBeAddedToLiquidity) (#854-859)
External calls sending eth:
- swapAndLiquify(from,to) (#629)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#908-915)
- marketWallet.transfer(bnbFormarketWallet) (#850)
Event emitted after the call(s):
- Transfer(sender,burnAddress,burnFee) (#809)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- Transfer(sender,recipient,tTransferAmount) (#710)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- Transfer(sender,address(this),tFee) (#801)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- Transfer(sender,recipient,tTransferAmount) (#752)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- Transfer(sender,recipient,tTransferAmount) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- Transfer(sender,recipient,tTransferAmount) (#732)
- _tokenTransfer(from,to,amount,takeFee) (#640)
Reentrancy in TinyPups.constructor(address) (#287-309):
External calls:
- dexPair = IDexFactory(_dexRouter.factory()).createPair(address(this),_dexRouter.WETH()) (#296-299)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#308)
Reentrancy in TinyPups.swapAndLiquify(address,address) (#812-872):
External calls:
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#838)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquid,bnbToBeAddedToLiquidity) (#854-859)
External calls sending eth:
- marketWallet.transfer(bnbFormarketWallet) (#850)
Event emitted after the call(s):
- SwapAndLiquify(halfLiquid,bnbToBeAddedToLiquidity,otherHalfLiquid) (#861-865)
Reentrancy in TinyPups.transferFrom(address,address,uint256) (#366-381):
External calls:
- _transfer(sender,recipient,amount) (#371)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#908-915)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 300) (#890-896)
- Utils.swapTokensForEth(address(dexRouter),tokenAmountToBeSwapped) (#838)
- Utils.addLiquidity(address(dexRouter),owner(),otherHalfLiquid,bnbToBeAddedToLiquidity) (#854-859)
External calls sending eth:
- _transfer(sender,recipient,amount) (#371)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#908-915)
- marketWallet.transfer(bnbFormarketWallet) (#850)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#652)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,Token: transfer amount exceeds allowance)) (#372-379)
Apply the check-effects-interactions pattern.

Additional information: link

Context._msgData() (#93-95) is never used and should be removed
SafeMath.mod(uint256,uint256) (#209-211) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#213-220) is never used and should be removed
Remove unused functions.

Additional information: link

TinyPups._rTotal (#237) 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

Pragma version0.8.9 (#4) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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() (#61) is not in mixedCase
Parameter TinyPups.balanceOf(address)._account (#329) is not in mixedCase
Parameter TinyPups.isExcludedFromReward(address)._account (#415) is not in mixedCase
Parameter TinyPups.isExcludedFromFee(address)._account (#420) is not in mixedCase
Parameter TinyPups.includeInReward(address)._account (#476) is not in mixedCase
Parameter TinyPups.excludeFromReward(address)._account (#489) is not in mixedCase
Parameter TinyPups.setSellFeePercent(uint256,uint256,uint256,uint256)._redistributionFee (#504) is not in mixedCase
Parameter TinyPups.setSellFeePercent(uint256,uint256,uint256,uint256)._liquidityFee (#505) is not in mixedCase
Parameter TinyPups.setSellFeePercent(uint256,uint256,uint256,uint256)._marketWalletFee (#506) is not in mixedCase
Parameter TinyPups.setSellFeePercent(uint256,uint256,uint256,uint256)._burnFee (#507) is not in mixedCase
Parameter TinyPups.includeOrExcludeFromFee(address,bool)._account (#516) is not in mixedCase
Parameter TinyPups.includeOrExcludeFromFee(address,bool)._value (#516) is not in mixedCase
Parameter TinyPups.setMinTokenToSwap(uint256)._amount (#524) is not in mixedCase
Parameter TinyPups.setBuyFeePercent(uint256,uint256,uint256,uint256)._redistributionFee (#530) is not in mixedCase
Parameter TinyPups.setBuyFeePercent(uint256,uint256,uint256,uint256)._liquidityFee (#531) is not in mixedCase
Parameter TinyPups.setBuyFeePercent(uint256,uint256,uint256,uint256)._marketWalletFee (#532) is not in mixedCase
Parameter TinyPups.setBuyFeePercent(uint256,uint256,uint256,uint256)._burnFee (#533) is not in mixedCase
Parameter TinyPups.enableOrDisableSwapAndLiquify(bool)._state (#543) is not in mixedCase
Parameter TinyPups.enableOrDisableFees(bool)._state (#549) is not in mixedCase
Parameter TinyPups.setmarketWalletAddress(address)._newAddress (#554) is not in mixedCase
Parameter TinyPups.setRoute(IDexRouter,address)._router (#562) is not in mixedCase
Parameter TinyPups.setRoute(IDexRouter,address)._pair (#562) is not in mixedCase
Variable TinyPups.Fees (#254) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in TinyPups._transfer(address,address,uint256) (#619-641):
External calls:
- swapAndLiquify(from,to) (#629)
- marketWallet.transfer(bnbFormarketWallet) (#850)
External calls sending eth:
- swapAndLiquify(from,to) (#629)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#908-915)
- marketWallet.transfer(bnbFormarketWallet) (#850)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _accumulatedLiquidity = _accumulatedLiquidity.add(tAmount.mul(_currentLiquidityFee).div(1e3)) (#789-791)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _accumulatedMarketWallet = _accumulatedMarketWallet.add(tAmount.mul(_currentmarketWalletFee).div(1e3)) (#792-794)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _currentBurnFee = burnFeeOnSelling (#615)
- _currentBurnFee = 0 (#608)
- _currentBurnFee = burnFeeOnBuying (#601)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _currentLiquidityFee = liquidityFeeOnSelling (#613)
- _currentLiquidityFee = 0 (#606)
- _currentLiquidityFee = liquidityFeeOnBuying (#599)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _currentReflectionFee = reflectionFeeOnSelling (#612)
- _currentReflectionFee = 0 (#605)
- _currentReflectionFee = reflectionFeeOnBuying (#598)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _currentmarketWalletFee = marketWalletFeeOnSelling (#614)
- _currentmarketWalletFee = 0 (#607)
- _currentmarketWalletFee = marketWalletFeeOnBuying (#600)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _rOwned[burnAddress] = _rOwned[burnAddress].add(rBurnFee) (#807)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#745)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#705)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#706)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#727)
- _rOwned[address(this)] = _rOwned[address(this)].add(rFee) (#799)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _rTotal = _rTotal.sub(rFee) (#778)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _tFeeTotal = _tFeeTotal.add(tFee) (#779)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#763)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#765)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#725)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#746)
- _tOwned[address(this)] = _tOwned[address(this)].add(tFee) (#798)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- excludedTSupply = excludedTSupply.sub(tAmount) (#764)
- excludedTSupply = excludedTSupply.add(tAmount) (#747)
- excludedTSupply = excludedTSupply.sub(tAmount) (#726)
- excludedTSupply = excludedTSupply.add(tAmount) (#766)
Event emitted after the call(s):
- Transfer(sender,burnAddress,burnFee) (#809)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- Transfer(sender,address(this),tFee) (#801)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- Transfer(sender,recipient,tTransferAmount) (#710)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- Transfer(sender,recipient,tTransferAmount) (#752)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- Transfer(sender,recipient,tTransferAmount) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#640)
- Transfer(sender,recipient,tTransferAmount) (#732)
- _tokenTransfer(from,to,amount,takeFee) (#640)
Reentrancy in TinyPups.swapAndLiquify(address,address) (#812-872):
External calls:
- marketWallet.transfer(bnbFormarketWallet) (#850)
State variables written after the call(s):
- _accumulatedLiquidity = 0 (#869)
- _accumulatedMarketWallet = 0 (#870)
Event emitted after the call(s):
- SwapAndLiquify(halfLiquid,bnbToBeAddedToLiquidity,otherHalfLiquid) (#861-865)
Reentrancy in TinyPups.transferFrom(address,address,uint256) (#366-381):
External calls:
- _transfer(sender,recipient,amount) (#371)
- marketWallet.transfer(bnbFormarketWallet) (#850)
External calls sending eth:
- _transfer(sender,recipient,amount) (#371)
- dexRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 300) (#908-915)
- marketWallet.transfer(bnbFormarketWallet) (#850)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,Token: transfer amount exceeds allowance)) (#372-379)
- _allowances[owner][spender] = amount (#651)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#652)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,Token: transfer amount exceeds allowance)) (#372-379)
Apply the check-effects-interactions pattern.

Additional information: link

Variable TinyPups.excludedRSupply (#251) is too similar to TinyPups.excludedTSupply (#250)
Variable TinyPups._transferStandard(address,address,uint256).rTransferAmount (#702-704) is too similar to TinyPups._transferStandard(address,address,uint256).tTransferAmount (#700)
Variable TinyPups._transferFromExcluded(address,address,uint256).rTransferAmount (#722-724) is too similar to TinyPups._transferFromExcluded(address,address,uint256).tTransferAmount (#720)
Variable TinyPups.reflectionFromToken(uint256,bool).rTransferAmount (#453-455) is too similar to TinyPups._transferToExcluded(address,address,uint256).tTransferAmount (#743)
Variable TinyPups._transferFromExcluded(address,address,uint256).rTransferAmount (#722-724) is too similar to TinyPups._transferBothExcluded(address,address,uint256).tTransferAmount (#762)
Variable TinyPups._transferStandard(address,address,uint256).rTransferAmount (#702-704) is too similar to TinyPups._transferFromExcluded(address,address,uint256).tTransferAmount (#720)
Variable TinyPups.reflectionFromToken(uint256,bool).rTransferAmount (#453-455) is too similar to TinyPups._transferBothExcluded(address,address,uint256).tTransferAmount (#762)
Variable TinyPups._transferStandard(address,address,uint256).rTransferAmount (#702-704) is too similar to TinyPups._transferBothExcluded(address,address,uint256).tTransferAmount (#762)
Variable TinyPups._transferFromExcluded(address,address,uint256).rTransferAmount (#722-724) is too similar to TinyPups._transferToExcluded(address,address,uint256).tTransferAmount (#743)
Variable TinyPups._transferStandard(address,address,uint256).rTransferAmount (#702-704) is too similar to TinyPups._transferToExcluded(address,address,uint256).tTransferAmount (#743)
Variable TinyPups.reflectionFromToken(uint256,bool).rTransferAmount (#453-455) is too similar to TinyPups._transferFromExcluded(address,address,uint256).tTransferAmount (#720)
Variable TinyPups._transferFromExcluded(address,address,uint256).rTransferAmount (#722-724) is too similar to TinyPups._transferStandard(address,address,uint256).tTransferAmount (#700)
Variable TinyPups.reflectionFromToken(uint256,bool).rTransferAmount (#453-455) is too similar to TinyPups._transferStandard(address,address,uint256).tTransferAmount (#700)
Prevent variables from having similar names.

Additional information: link

TinyPups.slitherConstructorVariables() (#225-873) uses literals with too many digits:
- _tTotal = 1000000000000 * 1e9 (#236)
TinyPups.slitherConstructorVariables() (#225-873) uses literals with too many digits:
- burnAddress = 0x0000000000000000000000000000000000000000 (#247)
TinyPups.slitherConstructorVariables() (#225-873) uses literals with too many digits:
- minTokenToSwap = 1000000 * 1e9 (#249)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TinyPups._decimals (#242) should be constant
TinyPups._name (#240) should be constant
TinyPups._symbol (#241) should be constant
TinyPups._tTotal (#236) should be constant
TinyPups.burnAddress (#247) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#128-130)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#136-142)
name() should be declared external:
- TinyPups.name() (#313-315)
symbol() should be declared external:
- TinyPups.symbol() (#317-319)
decimals() should be declared external:
- TinyPups.decimals() (#321-323)
totalSupply() should be declared external:
- TinyPups.totalSupply() (#325-327)
transfer(address,uint256) should be declared external:
- TinyPups.transfer(address,uint256) (#339-346)
allowance(address,address) should be declared external:
- TinyPups.allowance(address,address) (#348-355)
approve(address,uint256) should be declared external:
- TinyPups.approve(address,uint256) (#357-364)
transferFrom(address,address,uint256) should be declared external:
- TinyPups.transferFrom(address,address,uint256) (#366-381)
increaseAllowance(address,uint256) should be declared external:
- TinyPups.increaseAllowance(address,uint256) (#383-394)
decreaseAllowance(address,uint256) should be declared external:
- TinyPups.decreaseAllowance(address,uint256) (#396-410)
isExcludedFromReward(address) should be declared external:
- TinyPups.isExcludedFromReward(address) (#415-417)
isExcludedFromFee(address) should be declared external:
- TinyPups.isExcludedFromFee(address) (#420-422)
totalHolderDistribution() should be declared external:
- TinyPups.totalHolderDistribution() (#425-427)
deliver(uint256) should be declared external:
- TinyPups.deliver(uint256) (#430-440)
reflectionFromToken(uint256,bool) should be declared external:
- TinyPups.reflectionFromToken(uint256,bool) (#442-458)
excludeFromReward(address) should be declared external:
- TinyPups.excludeFromReward(address) (#489-500)
includeOrExcludeFromFee(address,bool) should be declared external:
- TinyPups.includeOrExcludeFromFee(address,bool) (#516-521)
setMinTokenToSwap(uint256) should be declared external:
- TinyPups.setMinTokenToSwap(uint256) (#524-526)
enableOrDisableSwapAndLiquify(bool) should be declared external:
- TinyPups.enableOrDisableSwapAndLiquify(bool) (#543-546)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


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 10% buy tax and 10% sell tax.
Taxes are low and contract ownership is renounced.


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find Twitter link on the website


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

Price for PUPS