MoonPaw Token Logo

MOONPAW Token

About MOONPAW

Listings

Token 2 years

Website

MoonPaw aims to bring cryptocurrency to a wider audience through engaging content, whilst raising funds for animal welfare charities.
For each MoonPaw transaction, 2% is burned, 2% is distributed to holders and 2% is donated to charities that support animal welfare and wildlife conservation.

Laser Scorebeta Last Audit: 30 November 2021

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

Reentrancy in MoonPaw._transfer(address,address,uint256) (#637-670):
External calls:
- swapAndLiquify(contractTokenBalance) (#658)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#693-699)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#658)
- recipient.transfer(amount) (#941)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#821)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#727)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#738)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#763)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#728)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#751)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#752)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#740)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#765)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _rTotal = _rTotal.sub(rFee).sub(rBurn) (#772)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#823)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#750)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#762)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#739)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#764)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _tTotal = _tTotal.sub(tBurn) (#775)
Apply the check-effects-interactions pattern.

Additional information: link


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

MoonPaw._approve(address,address,uint256).owner (#629) shadows:
- Ownable.owner() (#179-181) (function)
Rename the local variables that shadow another component.

Additional information: link

MoonPaw.setNumTokensSellToAddToLiquidity(uint256) (#930-932) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#931)
Emit an event for critical parameter changes.

Additional information: link

MoonPaw.setDonationAddress(address).charity (#886) lacks a zero-check on :
- charityAddress = charity (#887)
Check that the address is not zero.

Additional information: link

Reentrancy in MoonPaw.transferFrom(address,address,uint256) (#543-547):
External calls:
- _transfer(sender,recipient,amount) (#544)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#693-699)
External calls sending eth:
- _transfer(sender,recipient,amount) (#544)
- recipient.transfer(amount) (#941)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#545)
- _allowances[owner][spender] = amount (#633)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MoonPaw.transferFrom(address,address,uint256) (#543-547):
External calls:
- _transfer(sender,recipient,amount) (#544)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#693-699)
External calls sending eth:
- _transfer(sender,recipient,amount) (#544)
- recipient.transfer(amount) (#941)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#634)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#545)
Apply the check-effects-interactions pattern.

Additional information: link

MoonPaw.getUnlockTimeDays() (#913-927) uses timestamp for comparisons
Dangerous comparisons:
- _lockTime > now (#915)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#146-163) uses assembly
- INLINE ASM (#155-158)
Do not use evm assembly.

Additional information: link

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

Additional information: link

MoonPaw._previousDonationFee (#466) is set pre-construction with a non-constant function or state variable:
- _donationFee
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) (#146-163):
- (success,returndata) = target.call{value: weiValue}(data) (#149)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable MoonPaw._maxTxAmount (#468) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#34)" inContext (#28-37)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in MoonPaw.transferFrom(address,address,uint256) (#543-547):
External calls:
- _transfer(sender,recipient,amount) (#544)
- recipient.transfer(amount) (#941)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#545)
- _allowances[owner][spender] = amount (#633)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#634)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#545)
Apply the check-effects-interactions pattern.

Additional information: link

Variable MoonPaw._transferFromExcluded(address,address,uint256).rTransferAmount (#748) is too similar to MoonPaw._transferToExcluded(address,address,uint256).tTransferAmount (#736)
Prevent variables from having similar names.

Additional information: link

MoonPaw._symbol (#455) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setSwapAndLiquifyEnabled(bool) should be declared external:
- MoonPaw.setSwapAndLiquifyEnabled(bool) (#934-937)
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.


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.


Twitter account link seems to be invalid


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for MOONPAW