Pumping Inu Token Logo

PUMPINU [Pumping Inu] Token

ALERT: pump & dump

About PUMPINU

Listings

Not Found
Token 22 months

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 24 June 2022

report
Token seems to be a scam (type: pump & dump).

Reentrancy in PumpingInu._transfer(address,address,uint256) (#623-661):
External calls:
- swapTokens(contractTokenBalance) (#641)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
- buyBackTokens(balance.div(100)) (#649)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
External calls sending eth:
- swapTokens(contractTokenBalance) (#641)
- recipient.transfer(amount) (#921)
- buyBackTokens(balance.div(100)) (#649)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _liquidityFee = _previousLiquidityFee (#866)
- _liquidityFee = 0 (#861)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#837)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#762)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#773)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#783)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#764)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#774)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#785)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _rTotal = _rTotal.sub(rFee) (#792)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#839)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#772)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#782)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#763)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#784)
- buyBackTokens(balance.div(100)) (#649)
- inSwapAndLiquify = true (#472)
- inSwapAndLiquify = false (#474)
Apply the check-effects-interactions pattern.

Additional information: link


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

PumpingInu.swapTokens(uint256) (#663-672) performs a multiplication on the result of a division:
-transferToAddressETH(burnRate,transferredBalance.div(_liquidityFee).mul(burnDivisor)) (#670)
Consider ordering multiplication before division.

Additional information: link

PumpingInu.addLiquidity(uint256,uint256) (#718-731) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#723-730)
Ensure that all the return values of the function calls are used.

Additional information: link

PumpingInu.allowance(address,address).owner (#519) shadows:
- Ownable.owner() (#157-159) (function)
PumpingInu._approve(address,address,uint256).owner (#615) shadows:
- Ownable.owner() (#157-159) (function)
Rename the local variables that shadow another component.

Additional information: link

PumpingInu.setTaxFeePercent(uint256) (#881-883) should emit an event for:
- _taxFee = taxFee (#882)
PumpingInu.setLiquidityFeePercent(uint256) (#885-887) should emit an event for:
- _liquidityFee = liquidityFee (#886)
PumpingInu.setMaxTxAmount(uint256) (#889-891) should emit an event for:
- _maxTxAmount = maxTxAmount (#890)
PumpingInu.setburnDivisor(uint256) (#893-895) should emit an event for:
- burnDivisor = divisor (#894)
PumpingInu.setNumTokensSellToAddToLiquidity(uint256) (#897-899) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#898)
PumpingInu.setBuybackUpperLimit(uint256) (#901-903) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#902)
Emit an event for critical parameter changes.

Additional information: link

PumpingInu.setburnRate(address)._burnRate (#905) lacks a zero-check on :
- burnRate = address(_burnRate) (#906)
Check that the address is not zero.

Additional information: link

Reentrancy in PumpingInu._transfer(address,address,uint256) (#623-661):
External calls:
- swapTokens(contractTokenBalance) (#641)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
- buyBackTokens(balance.div(100)) (#649)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
External calls sending eth:
- swapTokens(contractTokenBalance) (#641)
- recipient.transfer(amount) (#921)
- buyBackTokens(balance.div(100)) (#649)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _previousLiquidityFee = _liquidityFee (#858)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _previousTaxFee = _taxFee (#857)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _tFeeTotal = _tFeeTotal.add(tFee) (#793)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _taxFee = _previousTaxFee (#865)
- _taxFee = 0 (#860)
Reentrancy in PumpingInu.constructor() (#477-491):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#481-482)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#487)
- _isExcludedFromFee[address(this)] = true (#488)
- uniswapV2Router = _uniswapV2Router (#484)
Reentrancy in PumpingInu.transferFrom(address,address,uint256) (#533-537):
External calls:
- _transfer(sender,recipient,amount) (#534)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
External calls sending eth:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#921)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
- _allowances[owner][spender] = amount (#619)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in PumpingInu._transfer(address,address,uint256) (#623-661):
External calls:
- swapTokens(contractTokenBalance) (#641)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
- buyBackTokens(balance.div(100)) (#649)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
External calls sending eth:
- swapTokens(contractTokenBalance) (#641)
- recipient.transfer(amount) (#921)
- buyBackTokens(balance.div(100)) (#649)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#715)
- buyBackTokens(balance.div(100)) (#649)
- Transfer(sender,recipient,tTransferAmount) (#757)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- Transfer(sender,recipient,tTransferAmount) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- Transfer(sender,recipient,tTransferAmount) (#767)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- Transfer(sender,recipient,tTransferAmount) (#788)
- _tokenTransfer(from,to,amount,takeFee) (#660)
Reentrancy in PumpingInu.constructor() (#477-491):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#481-482)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#490)
Reentrancy in PumpingInu.swapETHForTokens(uint256) (#701-716):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#715)
Reentrancy in PumpingInu.swapTokensForEth(uint256) (#681-699):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#698)
Reentrancy in PumpingInu.transferFrom(address,address,uint256) (#533-537):
External calls:
- _transfer(sender,recipient,amount) (#534)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
External calls sending eth:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#921)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#620)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#188-193) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#190)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#87-96) uses assembly
- INLINE ASM (#94)
Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) uses assembly
- INLINE ASM (#133-136)
Do not use evm assembly.

Additional information: link

PumpingInu.includeInReward(address) (#602-613) has costly operations inside a loop:
- _excluded.pop() (#609)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#124-141) is never used and should be removed
Address.functionCall(address,bytes) (#107-109) is never used and should be removed
Address.functionCall(address,bytes,string) (#111-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#119-122) is never used and should be removed
Address.isContract(address) (#87-96) is never used and should be removed
Address.sendValue(address,uint256) (#98-104) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
PumpingInu.addLiquidity(uint256,uint256) (#718-731) is never used and should be removed
PumpingInu.minimumTokensBeforeSwapAmount() (#557-559) is never used and should be removed
SafeMath.mod(uint256,uint256) (#75-77) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#79-82) is never used and should be removed
Remove unused functions.

Additional information: link

PumpingInu._rTotal (#424) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
PumpingInu._previousTaxFee (#433) is set pre-construction with a non-constant function or state variable:
- _taxFee
PumpingInu._previousLiquidityFee (#436) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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 (#3) 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

Low level call in Address.sendValue(address,uint256) (#98-104):
- (success) = recipient.call{value: amount}() (#102)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#124-141):
- (success,returndata) = target.call{value: weiValue}(data) (#127)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#232) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#233) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#249) is not in mixedCase
Function IUniswapV2Router01.WETH() (#270) is not in mixedCase
Parameter PumpingInu.calculateTaxFee(uint256)._amount (#842) is not in mixedCase
Parameter PumpingInu.calculateLiquidityFee(uint256)._amount (#848) is not in mixedCase
Parameter PumpingInu.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#897) is not in mixedCase
Parameter PumpingInu.setburnRate(address)._burnRate (#905) is not in mixedCase
Parameter PumpingInu.setSwapAndLiquifyEnabled(bool)._enabled (#909) is not in mixedCase
Parameter PumpingInu.setBuyBackEnabled(bool)._enabled (#914) is not in mixedCase
Variable PumpingInu._taxFee (#432) is not in mixedCase
Variable PumpingInu._liquidityFee (#435) is not in mixedCase
Variable PumpingInu._maxTxAmount (#440) 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

Reentrancy in PumpingInu._transfer(address,address,uint256) (#623-661):
External calls:
- swapTokens(contractTokenBalance) (#641)
- recipient.transfer(amount) (#921)
External calls sending eth:
- swapTokens(contractTokenBalance) (#641)
- recipient.transfer(amount) (#921)
- buyBackTokens(balance.div(100)) (#649)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _liquidityFee = _previousLiquidityFee (#866)
- _liquidityFee = 0 (#861)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _previousLiquidityFee = _liquidityFee (#858)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _previousTaxFee = _taxFee (#857)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#837)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#762)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#773)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#783)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#764)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#774)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#785)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _rTotal = _rTotal.sub(rFee) (#792)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _tFeeTotal = _tFeeTotal.add(tFee) (#793)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#839)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#772)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#782)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#763)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#784)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _taxFee = _previousTaxFee (#865)
- _taxFee = 0 (#860)
- buyBackTokens(balance.div(100)) (#649)
- inSwapAndLiquify = true (#472)
- inSwapAndLiquify = false (#474)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#715)
- buyBackTokens(balance.div(100)) (#649)
- Transfer(sender,recipient,tTransferAmount) (#757)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- Transfer(sender,recipient,tTransferAmount) (#767)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- Transfer(sender,recipient,tTransferAmount) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- Transfer(sender,recipient,tTransferAmount) (#788)
- _tokenTransfer(from,to,amount,takeFee) (#660)
Reentrancy in PumpingInu.transferFrom(address,address,uint256) (#533-537):
External calls:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#921)
External calls sending eth:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#921)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
- _allowances[owner][spender] = amount (#619)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#620)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#275) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#276)
Variable PumpingInu._getValues(uint256).rTransferAmount (#798) is too similar to PumpingInu._transferToExcluded(address,address,uint256).tTransferAmount (#761)
Variable PumpingInu._transferBothExcluded(address,address,uint256).rTransferAmount (#781) is too similar to PumpingInu._transferBothExcluded(address,address,uint256).tTransferAmount (#781)
Variable PumpingInu._transferBothExcluded(address,address,uint256).rTransferAmount (#781) is too similar to PumpingInu._transferFromExcluded(address,address,uint256).tTransferAmount (#771)
Variable PumpingInu.reflectionFromToken(uint256,bool).rTransferAmount (#581) is too similar to PumpingInu._transferFromExcluded(address,address,uint256).tTransferAmount (#771)
Variable PumpingInu._transferFromExcluded(address,address,uint256).rTransferAmount (#771) is too similar to PumpingInu._transferFromExcluded(address,address,uint256).tTransferAmount (#771)
Variable PumpingInu._transferBothExcluded(address,address,uint256).rTransferAmount (#781) is too similar to PumpingInu._transferToExcluded(address,address,uint256).tTransferAmount (#761)
Variable PumpingInu.reflectionFromToken(uint256,bool).rTransferAmount (#581) is too similar to PumpingInu._transferToExcluded(address,address,uint256).tTransferAmount (#761)
Variable PumpingInu._transferStandard(address,address,uint256).rTransferAmount (#752) is too similar to PumpingInu._transferFromExcluded(address,address,uint256).tTransferAmount (#771)
Variable PumpingInu._transferStandard(address,address,uint256).rTransferAmount (#752) is too similar to PumpingInu._transferBothExcluded(address,address,uint256).tTransferAmount (#781)
Variable PumpingInu._transferToExcluded(address,address,uint256).rTransferAmount (#761) is too similar to PumpingInu._transferToExcluded(address,address,uint256).tTransferAmount (#761)
Variable PumpingInu._transferStandard(address,address,uint256).rTransferAmount (#752) is too similar to PumpingInu._getTValues(uint256).tTransferAmount (#805)
Variable PumpingInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to PumpingInu._transferFromExcluded(address,address,uint256).tTransferAmount (#771)
Variable PumpingInu._transferStandard(address,address,uint256).rTransferAmount (#752) is too similar to PumpingInu._transferToExcluded(address,address,uint256).tTransferAmount (#761)
Variable PumpingInu._transferToExcluded(address,address,uint256).rTransferAmount (#761) is too similar to PumpingInu._transferFromExcluded(address,address,uint256).tTransferAmount (#771)
Variable PumpingInu._getValues(uint256).rTransferAmount (#798) is too similar to PumpingInu._transferBothExcluded(address,address,uint256).tTransferAmount (#781)
Variable PumpingInu._getValues(uint256).rTransferAmount (#798) is too similar to PumpingInu._transferFromExcluded(address,address,uint256).tTransferAmount (#771)
Variable PumpingInu._transferStandard(address,address,uint256).rTransferAmount (#752) is too similar to PumpingInu._transferStandard(address,address,uint256).tTransferAmount (#752)
Variable PumpingInu._getValues(uint256).rTransferAmount (#798) is too similar to PumpingInu._getTValues(uint256).tTransferAmount (#805)
Variable PumpingInu._transferBothExcluded(address,address,uint256).rTransferAmount (#781) is too similar to PumpingInu._getTValues(uint256).tTransferAmount (#805)
Variable PumpingInu._transferFromExcluded(address,address,uint256).rTransferAmount (#771) is too similar to PumpingInu._transferToExcluded(address,address,uint256).tTransferAmount (#761)
Variable PumpingInu._transferFromExcluded(address,address,uint256).rTransferAmount (#771) is too similar to PumpingInu._getTValues(uint256).tTransferAmount (#805)
Variable PumpingInu.reflectionFromToken(uint256,bool).rTransferAmount (#581) is too similar to PumpingInu._getValues(uint256).tTransferAmount (#797)
Variable PumpingInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to PumpingInu._transferStandard(address,address,uint256).tTransferAmount (#752)
Variable PumpingInu.reflectionFromToken(uint256,bool).rTransferAmount (#581) is too similar to PumpingInu._getTValues(uint256).tTransferAmount (#805)
Variable PumpingInu._transferToExcluded(address,address,uint256).rTransferAmount (#761) is too similar to PumpingInu._getValues(uint256).tTransferAmount (#797)
Variable PumpingInu._transferToExcluded(address,address,uint256).rTransferAmount (#761) is too similar to PumpingInu._getTValues(uint256).tTransferAmount (#805)
Variable PumpingInu._getValues(uint256).rTransferAmount (#798) is too similar to PumpingInu._transferStandard(address,address,uint256).tTransferAmount (#752)
Variable PumpingInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to PumpingInu._transferBothExcluded(address,address,uint256).tTransferAmount (#781)
Variable PumpingInu._transferFromExcluded(address,address,uint256).rTransferAmount (#771) is too similar to PumpingInu._transferBothExcluded(address,address,uint256).tTransferAmount (#781)
Variable PumpingInu._transferStandard(address,address,uint256).rTransferAmount (#752) is too similar to PumpingInu._getValues(uint256).tTransferAmount (#797)
Variable PumpingInu._transferBothExcluded(address,address,uint256).rTransferAmount (#781) is too similar to PumpingInu._transferStandard(address,address,uint256).tTransferAmount (#752)
Variable PumpingInu.reflectionFromToken(uint256,bool).rTransferAmount (#581) is too similar to PumpingInu._transferBothExcluded(address,address,uint256).tTransferAmount (#781)
Variable PumpingInu._transferFromExcluded(address,address,uint256).rTransferAmount (#771) is too similar to PumpingInu._transferStandard(address,address,uint256).tTransferAmount (#752)
Variable PumpingInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to PumpingInu._getValues(uint256).tTransferAmount (#797)
Variable PumpingInu._transferToExcluded(address,address,uint256).rTransferAmount (#761) is too similar to PumpingInu._transferBothExcluded(address,address,uint256).tTransferAmount (#781)
Variable PumpingInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to PumpingInu._getTValues(uint256).tTransferAmount (#805)
Variable PumpingInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to PumpingInu._transferToExcluded(address,address,uint256).tTransferAmount (#761)
Variable PumpingInu.reflectionFromToken(uint256,bool).rTransferAmount (#581) is too similar to PumpingInu._transferStandard(address,address,uint256).tTransferAmount (#752)
Variable PumpingInu._transferToExcluded(address,address,uint256).rTransferAmount (#761) is too similar to PumpingInu._transferStandard(address,address,uint256).tTransferAmount (#752)
Variable PumpingInu._getValues(uint256).rTransferAmount (#798) is too similar to PumpingInu._getValues(uint256).tTransferAmount (#797)
Variable PumpingInu._transferBothExcluded(address,address,uint256).rTransferAmount (#781) is too similar to PumpingInu._getValues(uint256).tTransferAmount (#797)
Variable PumpingInu._transferFromExcluded(address,address,uint256).rTransferAmount (#771) is too similar to PumpingInu._getValues(uint256).tTransferAmount (#797)
Prevent variables from having similar names.

Additional information: link

PumpingInu.slitherConstructorVariables() (#407-927) uses literals with too many digits:
- burnRate = address(0x000000000000000000000000000000000000dEaD) (#411)
PumpingInu.slitherConstructorVariables() (#407-927) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#412)
PumpingInu.slitherConstructorVariables() (#407-927) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#423)
PumpingInu.slitherConstructorVariables() (#407-927) uses literals with too many digits:
- _maxTxAmount = 25000000 * 10 ** 6 * 10 ** 9 (#440)
PumpingInu.slitherConstructorVariables() (#407-927) uses literals with too many digits:
- buyBackUpperLimit = 1000000000 * 10 ** 18 (#442)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

PumpingInu._decimals (#429) should be constant
PumpingInu._name (#427) should be constant
PumpingInu._symbol (#428) should be constant
PumpingInu._tTotal (#423) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#166-169)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#171-175)
getTime() should be declared external:
- Ownable.getTime() (#177-179)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#181-186)
unlock() should be declared external:
- Ownable.unlock() (#188-193)
name() should be declared external:
- PumpingInu.name() (#493-495)
symbol() should be declared external:
- PumpingInu.symbol() (#497-499)
decimals() should be declared external:
- PumpingInu.decimals() (#501-503)
totalSupply() should be declared external:
- PumpingInu.totalSupply() (#505-507)
transfer(address,uint256) should be declared external:
- PumpingInu.transfer(address,uint256) (#514-517)
allowance(address,address) should be declared external:
- PumpingInu.allowance(address,address) (#519-521)
approve(address,uint256) should be declared external:
- PumpingInu.approve(address,uint256) (#523-526)
transferFrom(address,address,uint256) should be declared external:
- PumpingInu.transferFrom(address,address,uint256) (#533-537)
increaseAllowance(address,uint256) should be declared external:
- PumpingInu.increaseAllowance(address,uint256) (#539-542)
decreaseAllowance(address,uint256) should be declared external:
- PumpingInu.decreaseAllowance(address,uint256) (#544-547)
isExcludedFromReward(address) should be declared external:
- PumpingInu.isExcludedFromReward(address) (#549-551)
totalFees() should be declared external:
- PumpingInu.totalFees() (#553-555)
buyBackUpperLimitAmount() should be declared external:
- PumpingInu.buyBackUpperLimitAmount() (#561-563)
deliver(uint256) should be declared external:
- PumpingInu.deliver(uint256) (#565-572)
reflectionFromToken(uint256,bool) should be declared external:
- PumpingInu.reflectionFromToken(uint256,bool) (#575-584)
excludeFromReward(address) should be declared external:
- PumpingInu.excludeFromReward(address) (#592-600)
isExcludedFromFee(address) should be declared external:
- PumpingInu.isExcludedFromFee(address) (#869-871)
excludeFromFee(address) should be declared external:
- PumpingInu.excludeFromFee(address) (#873-875)
includeInFee(address) should be declared external:
- PumpingInu.includeInFee(address) (#877-879)
setSwapAndLiquifyEnabled(bool) should be declared external:
- PumpingInu.setSwapAndLiquifyEnabled(bool) (#909-912)
setBuyBackEnabled(bool) should be declared external:
- PumpingInu.setBuyBackEnabled(bool) (#914-917)
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 low.


Average 30d number of PancakeSwap swaps is low.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 8% buy tax and 10% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Telegram and Twitter accounts


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

Price for PUMPINU