DonaldPump Token Logo

PAMPET [DonaldPump] Token

About PAMPET

Listings

Not Found
Token 22 months

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 1 December 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

Reentrancy in DonaldPump._transfer(address,address,uint256) (#965-1009):
External calls:
- swapAndLiquify(contractTokenBalance) (#996)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1043-1049)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#996)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1008)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#921)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1090)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1099)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#851)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1110)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1091)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1101)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1111)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#853)
- _tokenTransfer(from,to,amount,takeFee) (#1008)
- _rTotal = _rTotal.sub(rFee) (#876)
- _tokenTransfer(from,to,amount,takeFee) (#1008)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#923)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#850)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1109)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1100)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#852)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable._lockTime (#400) is never initialized. It is used in:
- Ownable.geUnlockTime() (#450-452)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

DonaldPump.addLiquidity(uint256,uint256) (#1052-1065) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
Ensure that all the return values of the function calls are used.

Additional information: link

DonaldPump._approve(address,address,uint256).owner (#957) shadows:
- Ownable.owner() (#416-418) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in DonaldPump.transferFrom(address,address,uint256) (#776-780):
External calls:
- _transfer(sender,recipient,amount) (#777)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1043-1049)
External calls sending eth:
- _transfer(sender,recipient,amount) (#777)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#778)
- _allowances[owner][spender] = amount (#961)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DonaldPump.transferFrom(address,address,uint256) (#776-780):
External calls:
- _transfer(sender,recipient,amount) (#777)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1043-1049)
External calls sending eth:
- _transfer(sender,recipient,amount) (#777)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#962)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#778)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) uses assembly
- INLINE ASM (#374-377)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#229-232) is never used and should be removed
Remove unused functions.

Additional information: link

DonaldPump._previousLiquidityFee (#696) 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

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#361-382):
- (success,returndata) = target.call{value: weiValue}(data) (#365)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable DonaldPump._maxTxAmount (#704) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#241)" inContext (#235-244)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DonaldPump._transferStandard(address,address,uint256).rTransferAmount (#1089) is too similar to DonaldPump._transferToExcluded(address,address,uint256).tTransferAmount (#1098)
Prevent variables from having similar names.

Additional information: link

DonaldPump.slitherConstructorVariables() (#670-1121) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000000000 * 10 ** 9 (#705)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#399) is never used in DonaldPump (#670-1121)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#399) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- DonaldPump.isExcludedFromFee(address) (#953-955)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for PAMPET