WenMoon Token Logo

WENMOON Token

About WENMOON

Listings

Token 2 years
CoinMarketCap 2 years
white paper

WenMoon is a deflationary token with tokenomics aimed at helping coin holders rapidly grow their value with a long-term roadmap in the still early NFT market.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

Reentrancy in WenMoonToken._transfer(address,address,uint256) (#1007-1051):
External calls:
- swapAndLiquify(contractTokenBalance) (#1038)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1085-1091)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1038)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1050)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#963)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1141)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1132)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1152)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#879)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1133)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1143)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1153)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#881)
- _tokenTransfer(from,to,amount,takeFee) (#1050)
- _rTotal = _rTotal.sub(rFee) (#918)
- _tokenTransfer(from,to,amount,takeFee) (#1050)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#965)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1151)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#878)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1142)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#880)
Apply the check-effects-interactions pattern.

Additional information: link

WenMoonToken.addLiquidity(uint256,uint256) (#1094-1107) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
Ensure that all the return values of the function calls are used.

Additional information: link

WenMoonToken._approve(address,address,uint256).owner (#999) shadows:
- Ownable.owner() (#431-433) (function)
Rename the local variables that shadow another component.

Additional information: link

WenMoonToken.setMaxTxPercent(uint256) (#903-907) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#904-906)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in WenMoonToken.transferFrom(address,address,uint256) (#804-808):
External calls:
- _transfer(sender,recipient,amount) (#805)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1085-1091)
External calls sending eth:
- _transfer(sender,recipient,amount) (#805)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#806)
- _allowances[owner][spender] = amount (#1003)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in WenMoonToken.transferFrom(address,address,uint256) (#804-808):
External calls:
- _transfer(sender,recipient,amount) (#805)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1085-1091)
External calls sending eth:
- _transfer(sender,recipient,amount) (#805)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1004)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#806)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#376-397) uses assembly
- INLINE ASM (#389-392)
Do not use evm assembly.

Additional information: link

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

Additional information: link

WenMoonToken._previousLiquidityFee (#726) 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) (#376-397):
- (success,returndata) = target.call{value: weiValue}(data) (#380)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable WenMoonToken._maxTxAmount (#734) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#256)" inContext (#250-259)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable WenMoonToken._transferStandard(address,address,uint256).rTransferAmount (#1131) is too similar to WenMoonToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1150)
Prevent variables from having similar names.

Additional information: link

WenMoonToken.slitherConstructorVariables() (#700-1163) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 8 (#735)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

WenMoonToken.numTokensSellToAddToLiquidity (#735) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- WenMoonToken.isExcludedFromFee(address) (#995-997)
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.


Telegram account link seems to be invalid


Twitter account link seems to be invalid


Unable to find Youtube account


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


Token has a considerable age, but we're still unable to find its website


Token has no active CoinGecko listing / rank


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

Price for WENMOON