Moon Token Token Logo

MOONTOKEN [Moon] Token

About MOONTOKEN

Listings

Token 3 years
CoinGecko 3 years
CoinMarketCap 3 years
white paper

Moontoken is an autonomous yield and liquidity generation protocol that directly rewards the holders, while continuously increasing liquidity.

The token rewards the investors just for holding; the longer you hold, the bigger the reward!

Laser Scorebeta Last Audit: 14 September 2022

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

Reentrancy in MoonToken._transfer(address,address,uint256) (#1076-1120):
External calls:
- swapAndLiquify(contractTokenBalance) (#1107)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#991-997)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1107)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1119)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#947)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1070)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1002)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1015)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#870)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1071)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1004)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1016)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#872)
- _tokenTransfer(from,to,amount,takeFee) (#1119)
- _rTotal = _rTotal.sub(rFee) (#902)
- _tokenTransfer(from,to,amount,takeFee) (#1119)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#949)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#869)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1014)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1003)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#871)
Apply the check-effects-interactions pattern.

Additional information: link


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

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

Additional information: link

MoonToken.addLiquidity(uint256,uint256) (#1029-1042) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
Ensure that all the return values of the function calls are used.

Additional information: link

MoonToken.allowance(address,address).owner (#786) shadows:
- Ownable.owner() (#422-424) (function)
MoonToken._approve(address,address,uint256).owner (#1021) shadows:
- Ownable.owner() (#422-424) (function)
Rename the local variables that shadow another component.

Additional information: link

MoonToken.setLiquidityFeePercent(uint256) (#883-885) should emit an event for:
- _liquidityFee = liquidityFee (#884)
MoonToken.setMaxTxPercent(uint256) (#887-891) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#888-890)
MoonToken.setTaxFeePercent(uint256) (#1064-1066) should emit an event for:
- _taxFee = taxFee (#1065)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in MoonToken._transfer(address,address,uint256) (#1076-1120):
External calls:
- swapAndLiquify(contractTokenBalance) (#1107)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#991-997)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1107)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1119)
- _liquidityFee = _previousLiquidityFee (#976)
- _liquidityFee = 0 (#971)
- _tokenTransfer(from,to,amount,takeFee) (#1119)
- _previousLiquidityFee = _liquidityFee (#968)
- _tokenTransfer(from,to,amount,takeFee) (#1119)
- _previousTaxFee = _taxFee (#967)
- _tokenTransfer(from,to,amount,takeFee) (#1119)
- _tFeeTotal = _tFeeTotal.add(tFee) (#903)
- _tokenTransfer(from,to,amount,takeFee) (#1119)
- _taxFee = _previousTaxFee (#975)
- _taxFee = 0 (#970)
Reentrancy in MoonToken.constructor() (#742-758):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#747-748)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#754)
- _isExcludedFromFee[address(this)] = true (#755)
- uniswapV2Router = _uniswapV2Router (#751)
Reentrancy in MoonToken.swapAndLiquify(uint256) (#1128-1149):
External calls:
- swapTokensForEth(half) (#1140)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#991-997)
- addLiquidity(otherHalf,newBalance) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1146)
- _allowances[owner][spender] = amount (#1025)
Reentrancy in MoonToken.transferFrom(address,address,uint256) (#795-799):
External calls:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#991-997)
External calls sending eth:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#797)
- _allowances[owner][spender] = amount (#1025)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MoonToken._transfer(address,address,uint256) (#1076-1120):
External calls:
- swapAndLiquify(contractTokenBalance) (#1107)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#991-997)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1107)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1074)
- _tokenTransfer(from,to,amount,takeFee) (#1119)
- Transfer(sender,recipient,tTransferAmount) (#1019)
- _tokenTransfer(from,to,amount,takeFee) (#1119)
- Transfer(sender,recipient,tTransferAmount) (#1007)
- _tokenTransfer(from,to,amount,takeFee) (#1119)
- Transfer(sender,recipient,tTransferAmount) (#875)
- _tokenTransfer(from,to,amount,takeFee) (#1119)
Reentrancy in MoonToken.constructor() (#742-758):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#747-748)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#757)
Reentrancy in MoonToken.swapAndLiquify(uint256) (#1128-1149):
External calls:
- swapTokensForEth(half) (#1140)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#991-997)
- addLiquidity(otherHalf,newBalance) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1026)
- addLiquidity(otherHalf,newBalance) (#1146)
- SwapAndLiquify(half,newBalance,otherHalf) (#1148)
Reentrancy in MoonToken.transferFrom(address,address,uint256) (#795-799):
External calls:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#991-997)
External calls sending eth:
- _transfer(sender,recipient,amount) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1034-1041)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1026)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#797)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#122-131) uses assembly
- INLINE ASM (#129)
Address._functionCallWithValue(address,bytes,uint256,string) (#215-236) uses assembly
- INLINE ASM (#228-231)
Do not use evm assembly.

Additional information: link

MoonToken.includeInReward(address) (#855-866) has costly operations inside a loop:
- _excluded.pop() (#862)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#215-236) is never used and should be removed
Address.functionCall(address,bytes) (#175-177) is never used and should be removed
Address.functionCall(address,bytes,string) (#185-187) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#200-202) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#210-213) is never used and should be removed
Address.isContract(address) (#122-131) is never used and should be removed
Address.sendValue(address,uint256) (#149-155) is never used and should be removed
Context._msgData() (#243-246) is never used and should be removed
SafeMath.mod(uint256,uint256) (#369-371) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#385-388) is never used and should be removed
Remove unused functions.

Additional information: link

MoonToken._rTotal (#706) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
MoonToken._previousTaxFee (#714) is set pre-construction with a non-constant function or state variable:
- _taxFee
MoonToken._previousLiquidityFee (#717) 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.sendValue(address,uint256) (#149-155):
- (success) = recipient.call{value: amount}() (#153)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#215-236):
- (success,returndata) = target.call{value: weiValue}(data) (#219)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#513) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#514) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#531) is not in mixedCase
Function IUniswapV2Router01.WETH() (#553) is not in mixedCase
Parameter MoonToken.setSwapAndLiquifyEnabled(bool)._enabled (#893) is not in mixedCase
Parameter MoonToken.calculateTaxFee(uint256)._amount (#952) is not in mixedCase
Parameter MoonToken.calculateLiquidityFee(uint256)._amount (#958) is not in mixedCase
Variable MoonToken._taxFee (#713) is not in mixedCase
Variable MoonToken._liquidityFee (#716) is not in mixedCase
Variable MoonToken._maxTxAmount (#725) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#558) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#559)
Variable MoonToken._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to MoonToken._getTValues(uint256).tTransferAmount (#915)
Variable MoonToken.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to MoonToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1013)
Variable MoonToken._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to MoonToken._transferToExcluded(address,address,uint256).tTransferAmount (#1001)
Variable MoonToken._transferStandard(address,address,uint256).rTransferAmount (#1069) is too similar to MoonToken._getValues(uint256).tTransferAmount (#907)
Variable MoonToken._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to MoonToken._getValues(uint256).tTransferAmount (#907)
Variable MoonToken._transferToExcluded(address,address,uint256).rTransferAmount (#1001) is too similar to MoonToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1013)
Variable MoonToken._transferToExcluded(address,address,uint256).rTransferAmount (#1001) is too similar to MoonToken._getValues(uint256).tTransferAmount (#907)
Variable MoonToken._transferToExcluded(address,address,uint256).rTransferAmount (#1001) is too similar to MoonToken._transferStandard(address,address,uint256).tTransferAmount (#1069)
Variable MoonToken._getValues(uint256).rTransferAmount (#908) is too similar to MoonToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1013)
Variable MoonToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1013) is too similar to MoonToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1013)
Variable MoonToken._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to MoonToken._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable MoonToken._transferStandard(address,address,uint256).rTransferAmount (#1069) is too similar to MoonToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1013)
Variable MoonToken._transferStandard(address,address,uint256).rTransferAmount (#1069) is too similar to MoonToken._transferToExcluded(address,address,uint256).tTransferAmount (#1001)
Variable MoonToken._transferStandard(address,address,uint256).rTransferAmount (#1069) is too similar to MoonToken._transferStandard(address,address,uint256).tTransferAmount (#1069)
Variable MoonToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#923) is too similar to MoonToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1013)
Variable MoonToken._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to MoonToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1013)
Variable MoonToken._transferBothExcluded(address,address,uint256).rTransferAmount (#868) is too similar to MoonToken._transferStandard(address,address,uint256).tTransferAmount (#1069)
Variable MoonToken._transferToExcluded(address,address,uint256).rTransferAmount (#1001) is too similar to MoonToken._transferToExcluded(address,address,uint256).tTransferAmount (#1001)
Variable MoonToken._getValues(uint256).rTransferAmount (#908) is too similar to MoonToken._transferStandard(address,address,uint256).tTransferAmount (#1069)
Variable MoonToken._getValues(uint256).rTransferAmount (#908) is too similar to MoonToken._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable MoonToken.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to MoonToken._getTValues(uint256).tTransferAmount (#915)
Variable MoonToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1013) is too similar to MoonToken._getTValues(uint256).tTransferAmount (#915)
Variable MoonToken._transferStandard(address,address,uint256).rTransferAmount (#1069) is too similar to MoonToken._getTValues(uint256).tTransferAmount (#915)
Variable MoonToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1013) is too similar to MoonToken._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable MoonToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#923) is too similar to MoonToken._getTValues(uint256).tTransferAmount (#915)
Variable MoonToken._getValues(uint256).rTransferAmount (#908) is too similar to MoonToken._getTValues(uint256).tTransferAmount (#915)
Variable MoonToken._transferToExcluded(address,address,uint256).rTransferAmount (#1001) is too similar to MoonToken._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable MoonToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#923) is too similar to MoonToken._getValues(uint256).tTransferAmount (#907)
Variable MoonToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#923) is too similar to MoonToken._transferToExcluded(address,address,uint256).tTransferAmount (#1001)
Variable MoonToken._transferToExcluded(address,address,uint256).rTransferAmount (#1001) is too similar to MoonToken._getTValues(uint256).tTransferAmount (#915)
Variable MoonToken.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to MoonToken._getValues(uint256).tTransferAmount (#907)
Variable MoonToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1013) is too similar to MoonToken._getValues(uint256).tTransferAmount (#907)
Variable MoonToken.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to MoonToken._transferToExcluded(address,address,uint256).tTransferAmount (#1001)
Variable MoonToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1013) is too similar to MoonToken._transferToExcluded(address,address,uint256).tTransferAmount (#1001)
Variable MoonToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#923) is too similar to MoonToken._transferStandard(address,address,uint256).tTransferAmount (#1069)
Variable MoonToken._getValues(uint256).rTransferAmount (#908) is too similar to MoonToken._getValues(uint256).tTransferAmount (#907)
Variable MoonToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#923) is too similar to MoonToken._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable MoonToken._getValues(uint256).rTransferAmount (#908) is too similar to MoonToken._transferToExcluded(address,address,uint256).tTransferAmount (#1001)
Variable MoonToken.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to MoonToken._transferStandard(address,address,uint256).tTransferAmount (#1069)
Variable MoonToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1013) is too similar to MoonToken._transferStandard(address,address,uint256).tTransferAmount (#1069)
Variable MoonToken.reflectionFromToken(uint256,bool).rTransferAmount (#834) is too similar to MoonToken._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Variable MoonToken._transferStandard(address,address,uint256).rTransferAmount (#1069) is too similar to MoonToken._transferBothExcluded(address,address,uint256).tTransferAmount (#868)
Prevent variables from having similar names.

Additional information: link

MoonToken.slitherConstructorVariables() (#691-1151) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 18 (#705)
MoonToken.slitherConstructorVariables() (#691-1151) uses literals with too many digits:
- _maxTxAmount = 5000000000000 * 10 ** 18 (#725)
MoonToken.slitherConstructorVariables() (#691-1151) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000000000 * 10 ** 18 (#726)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

MoonToken._decimals (#711) should be constant
MoonToken._name (#709) should be constant
MoonToken._symbol (#710) should be constant
MoonToken._tTotal (#705) should be constant
MoonToken.numTokensSellToAddToLiquidity (#726) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#441-444)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#450-454)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#456-458)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#461-466)
unlock() should be declared external:
- Ownable.unlock() (#469-474)
name() should be declared external:
- MoonToken.name() (#760-762)
symbol() should be declared external:
- MoonToken.symbol() (#764-766)
decimals() should be declared external:
- MoonToken.decimals() (#768-770)
totalSupply() should be declared external:
- MoonToken.totalSupply() (#772-774)
transfer(address,uint256) should be declared external:
- MoonToken.transfer(address,uint256) (#781-784)
allowance(address,address) should be declared external:
- MoonToken.allowance(address,address) (#786-788)
approve(address,uint256) should be declared external:
- MoonToken.approve(address,uint256) (#790-793)
transferFrom(address,address,uint256) should be declared external:
- MoonToken.transferFrom(address,address,uint256) (#795-799)
increaseAllowance(address,uint256) should be declared external:
- MoonToken.increaseAllowance(address,uint256) (#801-804)
decreaseAllowance(address,uint256) should be declared external:
- MoonToken.decreaseAllowance(address,uint256) (#806-809)
isExcludedFromReward(address) should be declared external:
- MoonToken.isExcludedFromReward(address) (#811-813)
totalFees() should be declared external:
- MoonToken.totalFees() (#815-817)
deliver(uint256) should be declared external:
- MoonToken.deliver(uint256) (#819-826)
reflectionFromToken(uint256,bool) should be declared external:
- MoonToken.reflectionFromToken(uint256,bool) (#828-837)
excludeFromReward(address) should be declared external:
- MoonToken.excludeFromReward(address) (#845-853)
excludeFromFee(address) should be declared external:
- MoonToken.excludeFromFee(address) (#878-880)
setSwapAndLiquifyEnabled(bool) should be declared external:
- MoonToken.setSwapAndLiquifyEnabled(bool) (#893-896)
isExcludedFromFee(address) should be declared external:
- MoonToken.isExcludedFromFee(address) (#979-981)
includeInFee(address) should be declared external:
- MoonToken.includeInFee(address) (#1122-1124)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Average 30d PancakeSwap liquidity is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.

Contract has 10% buy tax and 9% sell tax.
Taxes are low and contract ownership is renounced.

No disclosed threats


Token was delisted from CoinGecko

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find whitepaper link on the website


Unable to find code repository for the project


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


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

Price for MOONTOKEN

News for MOONTOKEN