Moonstar Token Logo

Moonstar Token

About Moonstar

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 November 2021

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

Reentrancy in Monstar._transfer(address,address,uint256) (#1001-1045):
External calls:
- swapAndLiquify(contractTokenBalance) (#1032)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1093-1100)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1079-1085)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1032)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1093-1100)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1044)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#957)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1126)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1135)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1146)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#873)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1127)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1137)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1147)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#875)
- _tokenTransfer(from,to,amount,takeFee) (#1044)
- _rTotal = _rTotal.sub(rFee) (#912)
- _tokenTransfer(from,to,amount,takeFee) (#1044)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#959)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#872)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1145)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1136)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#874)
Apply the check-effects-interactions pattern.

Additional information: link


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

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

Additional information: link

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

Additional information: link

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

Additional information: link

Reentrancy in Monstar.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) (#1093-1100)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1079-1085)
External calls sending eth:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1093-1100)
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 (#997)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Monstar.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) (#1093-1100)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1079-1085)
External calls sending eth:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1093-1100)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#998)
- _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) (#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

Monstar._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 Monstar._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 Monstar._transferFromExcluded(address,address,uint256).rTransferAmount (#1144) is too similar to Monstar._transferStandard(address,address,uint256).tTransferAmount (#1125)
Prevent variables from having similar names.

Additional information: link

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

Additional information: link

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

Additional information: link

isExcludedFromFee(address) should be declared external:
- Monstar.isExcludedFromFee(address) (#989-991)
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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for Moonstar