MoonWay Token Logo

MoonWay Token

About MoonWay

Listings

Token 2 years
CoinGecko 2 years

MoonWay is a deflationary, yield-generating token that utilizes a democratized voting system to allow holders to vote on development decisions with the project. A community vote will be taking place this week to determine the direction the project will go: a game, a casino, or a charity. This project became entirely community driven after the developer renounced ownership and sold his tokens on launch day.

A 10% tax is applied to all transactions of which 5% is distributed to fellow MoonWay holders. The remaining 5% is added to a locked liquidity pool to generate an ever rising price floor. A total of 400 trillion tokens were burned at launch which equates to 40% of the total supply. Another 525 trillion tokens were committed to Pancakeswap for liquidity. The liquidity is locked forever, with Cake-LP sent to a dead address.

Social

Laser Scorebeta Last Audit: 1 December 2021

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

Anti-Scam

Links


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

Reentrancy in MoonWay._transfer(address,address,uint256) (#1000-1044):
External calls:
- swapAndLiquify(contractTokenBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1092-1099)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#956)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1125)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1134)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1126)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1145)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#872)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1136)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1146)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#874)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _rTotal = _rTotal.sub(rFee) (#911)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#958)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1144)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#871)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1135)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#873)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

MoonWay._approve(address,address,uint256).owner (#992) shadows:
- Ownable.owner() (#424-426) (function)
Rename the local variables that shadow another component.

Additional information: link

MoonWay.setMaxTxPercent(uint256) (#896-900) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#897-899)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in MoonWay.transferFrom(address,address,uint256) (#797-801):
External calls:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1092-1099)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#799)
- _allowances[owner][spender] = amount (#996)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MoonWay.transferFrom(address,address,uint256) (#797-801):
External calls:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1092-1099)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#997)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#799)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#369-390) uses assembly
- INLINE ASM (#382-385)
Do not use evm assembly.

Additional information: link

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

Additional information: link

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

Additional information: link

Variable MoonWay._maxTxAmount (#727) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#249)" inContext (#243-252)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable MoonWay._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#932) is too similar to MoonWay._transferStandard(address,address,uint256).tTransferAmount (#1124)
Prevent variables from having similar names.

Additional information: link

MoonWay.slitherConstructorVariables() (#693-1156) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000000000000 * 10 ** 9 (#728)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

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

Additional information: link

isExcludedFromFee(address) should be declared external:
- MoonWay.isExcludedFromFee(address) (#988-990)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 number of swaps.


Twitter account link seems to be invalid


Unable to find Youtube account


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

Additional information: link


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


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


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


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for MoonWay