MetaMonstas Token Logo

MONSTA [MetaMonstas] Token

About MONSTA

Listings

Token 3 years
CoinMarketCap 3 years
white paper

Meta Monstas is a Play 2 Earn (P2E) gaming ecosystem which will allow players to purchase, collect, trade, stake, and battle their NFT "Monstas" against other players in a 3d game engine. The underlying token, MONSTA, is the primary currency used in the ecosystem and will be awarded to users who win battles, or as staking and farming rewards. Additionally, players will be able to win BNB as a reward for those activities.

Early users can mint Genesis MonstaEgg NFTs, which will be the only Monstas that can be staked for rewards. Additionally, Genesis Monstas will have higher fighting powers and abilities in the game than later generation Monstas. All Monstas will have the ability to be bred to create new and unique Baby Monstas for use in the game. $MONSTA tokens can be farmed and staked for rewards as well.

The game will be oracle based and developed using a 3d engine. It will offer 3 play modes; 1v1, 3d battle and open world exploration.

Social

Laser Scorebeta Last Audit: 28 February 2022

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

Reentrancy in Metamonstas._tokenTransfer(address,address,uint256,bool) (#974-1008):
External calls:
- _swapContractToken() (#994)
- _pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#959-966)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#948-954)
External calls sending eth:
- _swapContractToken() (#994)
- _pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#959-966)
State variables written after the call(s):
- _transferFromExcluded(sender,recipient,amount,taxes) (#1000)
- _rOwned[address(this)] = _rOwned[address(this)].add(rContract) (#837)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1046)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1047)
- _transferToExcluded(sender,recipient,amount,taxes) (#1002)
- _rOwned[address(this)] = _rOwned[address(this)].add(rContract) (#837)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1036)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1038)
- _transferStandard(sender,recipient,amount,taxes) (#1004)
- _rOwned[address(this)] = _rOwned[address(this)].add(rContract) (#837)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1028)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1029)
- _transferBothExcluded(sender,recipient,amount,taxes) (#1006)
- _rOwned[address(this)] = _rOwned[address(this)].add(rContract) (#837)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1055)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1057)
- _transferStandard(sender,recipient,amount,taxes) (#1007)
- _rOwned[address(this)] = _rOwned[address(this)].add(rContract) (#837)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1028)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1029)
- _transferFromExcluded(sender,recipient,amount,taxes) (#1000)
- _rTotal = _rTotal.sub(rFee) (#792)
- _transferToExcluded(sender,recipient,amount,taxes) (#1002)
- _rTotal = _rTotal.sub(rFee) (#792)
- _transferStandard(sender,recipient,amount,taxes) (#1004)
- _rTotal = _rTotal.sub(rFee) (#792)
- _transferBothExcluded(sender,recipient,amount,taxes) (#1006)
- _rTotal = _rTotal.sub(rFee) (#792)
- _transferStandard(sender,recipient,amount,taxes) (#1007)
- _rTotal = _rTotal.sub(rFee) (#792)
- _transferFromExcluded(sender,recipient,amount,taxes) (#1000)
- _tOwned[address(this)] = _tOwned[address(this)].add(tContract) (#839)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1045)
- _transferToExcluded(sender,recipient,amount,taxes) (#1002)
- _tOwned[address(this)] = _tOwned[address(this)].add(tContract) (#839)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1037)
- _transferStandard(sender,recipient,amount,taxes) (#1004)
- _tOwned[address(this)] = _tOwned[address(this)].add(tContract) (#839)
- _transferBothExcluded(sender,recipient,amount,taxes) (#1006)
- _tOwned[address(this)] = _tOwned[address(this)].add(tContract) (#839)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1054)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1056)
- _transferStandard(sender,recipient,amount,taxes) (#1007)
- _tOwned[address(this)] = _tOwned[address(this)].add(tContract) (#839)
Apply the check-effects-interactions pattern.

Additional information: link


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

Metamonstas._swapContractToken() (#909-940) performs a multiplication on the result of a division:
-tokenToSwap = balanceOf(_pancakePairAddress) * 2 / 1000 (#916)
-tokenForLiquidity = (tokenToSwap * _liquidityTax) / totalTax (#921)
Consider ordering multiplication before division.

Additional information: link

Metamonstas._tokenTransfer(address,address,uint256,bool).taxes (#975) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

Metamonstas.addLiquidity(uint256,uint256) (#957-967) ignores return value by _pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#959-966)
Ensure that all the return values of the function calls are used.

Additional information: link

Metamonstas.allowance(address,address).owner (#1097) shadows:
- Ownable.owner() (#407-409) (function)
Metamonstas._approve(address,address,uint256).owner (#1122) shadows:
- Ownable.owner() (#407-409) (function)
Rename the local variables that shadow another component.

Additional information: link

Metamonstas.SetTaxes(uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8) (#882-892) should emit an event for:
- _liquidityTax = LP_ (#884)
- _marketingTax = marketing_ (#885)
- _DevTax = Dev_ (#886)
- _reflectionTax = reflection_ (#887)
- _buyTax = buy_ (#888)
- _sellTax = sell_ (#889)
- _botTax = bot_ (#890)
- _transferTax = transfer_ (#891)
Emit an event for critical parameter changes.

Additional information: link

Metamonstas.setFeeReceivers(address,address)._Dev (#710) lacks a zero-check on :
- DevWallet = _Dev (#711)
Metamonstas.setFeeReceivers(address,address)._Marketing (#710) lacks a zero-check on :
- MarketingWallet = _Marketing (#712)
Check that the address is not zero.

Additional information: link

Reentrancy in Metamonstas._tokenTransfer(address,address,uint256,bool) (#974-1008):
External calls:
- _swapContractToken() (#994)
- _pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#959-966)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#948-954)
External calls sending eth:
- _swapContractToken() (#994)
- _pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#959-966)
State variables written after the call(s):
- _transferFromExcluded(sender,recipient,amount,taxes) (#1000)
- _tFeeTotal = _tFeeTotal.add(tFee) (#793)
- _transferToExcluded(sender,recipient,amount,taxes) (#1002)
- _tFeeTotal = _tFeeTotal.add(tFee) (#793)
- _transferStandard(sender,recipient,amount,taxes) (#1004)
- _tFeeTotal = _tFeeTotal.add(tFee) (#793)
- _transferBothExcluded(sender,recipient,amount,taxes) (#1006)
- _tFeeTotal = _tFeeTotal.add(tFee) (#793)
- _transferStandard(sender,recipient,amount,taxes) (#1007)
- _tFeeTotal = _tFeeTotal.add(tFee) (#793)
Reentrancy in Metamonstas.constructor() (#716-734):
External calls:
- _pancakePairAddress = IUniswapV2Factory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#721-723)
State variables written after the call(s):
- _approve(address(this),address(_pancakeRouter),type()(uint256).max) (#731)
- _allowances[owner][spender] = amount (#1126)
- excludeFromReward(_pancakePairAddress) (#733)
- _excluded.push(account) (#758)
- excludeFromReward(_pancakePairAddress) (#733)
- _isExcluded[account] = true (#757)
- _isExcludedFromFee[msg.sender] = true (#727)
- _isExcludedFromFee[address(this)] = true (#728)
- _isExcludedFromFee[address(_pancakeRouter)] = true (#729)
- excludeFromReward(_pancakePairAddress) (#733)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#755)
Reentrancy in Metamonstas.transferFrom(address,address,uint256) (#1106-1110):
External calls:
- _transfer(sender,recipient,amount) (#1107)
- _pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#959-966)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#948-954)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1107)
- _pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#959-966)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowances[sender][msg.sender].sub(amount,ERC20: transfer amount exceeds allowance)) (#1108)
- _allowances[owner][spender] = amount (#1126)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Metamonstas._tokenTransfer(address,address,uint256,bool) (#974-1008):
External calls:
- _swapContractToken() (#994)
- _pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#959-966)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#948-954)
External calls sending eth:
- _swapContractToken() (#994)
- _pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#959-966)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1032)
- _transferStandard(sender,recipient,amount,taxes) (#1004)
- Transfer(sender,recipient,tTransferAmount) (#1032)
- _transferStandard(sender,recipient,amount,taxes) (#1007)
- Transfer(sender,recipient,tTransferAmount) (#1041)
- _transferToExcluded(sender,recipient,amount,taxes) (#1002)
- Transfer(sender,recipient,tTransferAmount) (#1050)
- _transferFromExcluded(sender,recipient,amount,taxes) (#1000)
- Transfer(sender,recipient,tTransferAmount) (#1060)
- _transferBothExcluded(sender,recipient,amount,taxes) (#1006)
Reentrancy in Metamonstas.constructor() (#716-734):
External calls:
- _pancakePairAddress = IUniswapV2Factory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#721-723)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1127)
- _approve(address(this),address(_pancakeRouter),type()(uint256).max) (#731)
- Transfer(address(0),msg.sender,_tTotal) (#732)
Reentrancy in Metamonstas.transferFrom(address,address,uint256) (#1106-1110):
External calls:
- _transfer(sender,recipient,amount) (#1107)
- _pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#959-966)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#948-954)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1107)
- _pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#959-966)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1127)
- _approve(sender,msg.sender,_allowances[sender][msg.sender].sub(amount,ERC20: transfer amount exceeds allowance)) (#1108)
Apply the check-effects-interactions pattern.

Additional information: link

Metamonstas.EnableTrading() (#894-897) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(LaunchTimestamp == 0) (#895)
Metamonstas._tokenTransfer(address,address,uint256,bool) (#974-1008) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(LaunchTimestamp > 0,Trading Not Yet Enabled) (#977)
- block.timestamp < LaunchTimestamp + BotProtectionTime (#981)
- require(bool)(block.timestamp > LaunchTimestamp + BotProtectionTime) (#987)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#261-269) uses assembly
- INLINE ASM (#267)
Address._functionCallWithValue(address,bytes,uint256,string) (#353-374) uses assembly
- INLINE ASM (#366-369)
Do not use evm assembly.

Additional information: link

Metamonstas.includeInReward(address) (#761-772) has costly operations inside a loop:
- _excluded.pop() (#768)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#353-374) is never used and should be removed
Address.functionCall(address,bytes) (#313-315) is never used and should be removed
Address.functionCall(address,bytes,string) (#323-325) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#338-340) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#348-351) is never used and should be removed
Address.isContract(address) (#261-269) is never used and should be removed
Address.sendValue(address,uint256) (#287-293) is never used and should be removed
SafeMath.mod(uint256,uint256) (#217-219) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#233-236) is never used and should be removed
Remove unused functions.

Additional information: link

Metamonstas._rTotal (#672) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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

Pragma version^0.8 (#9) is too complex
solc-0.8.10 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#287-293):
- (success) = recipient.call{value: amount}() (#291)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#353-374):
- (success,returndata) = target.call{value: weiValue}(data) (#357)
Low level call in Metamonstas.ClaimMarketings() (#699-708):
- (sent,None) = DevWallet.call{value: ContractBalance * _DevTax / totalTax}() (#703)
- (sent,None) = MarketingWallet.call{value: ContractBalance}() (#706)
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() (#479) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#480) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#497) is not in mixedCase
Function IUniswapV2Router01.WETH() (#519) is not in mixedCase
Function Metamonstas.ClaimMarketings() (#699-708) is not in mixedCase
Parameter Metamonstas.setFeeReceivers(address,address)._Dev (#710) is not in mixedCase
Parameter Metamonstas.setFeeReceivers(address,address)._Marketing (#710) is not in mixedCase
Parameter Metamonstas.setSwapAndLiquifyEnabled(bool)._enabled (#785) is not in mixedCase
Parameter Metamonstas.calculateReflectionFee(uint256,uint8)._amount (#842) is not in mixedCase
Parameter Metamonstas.calculateContractFee(uint256,uint8)._amount (#846) is not in mixedCase
Function Metamonstas.SetTaxes(uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8) (#882-892) is not in mixedCase
Parameter Metamonstas.SetTaxes(uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8).LP_ (#882) is not in mixedCase
Parameter Metamonstas.SetTaxes(uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8).Dev_ (#882) is not in mixedCase
Function Metamonstas.EnableTrading() (#894-897) is not in mixedCase
Constant Metamonstas._decimals (#677) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Metamonstas._pancakeRouter (#679) is not in mixedCase
Variable Metamonstas._pancakePairAddress (#680) is not in mixedCase
Constant Metamonstas.PancakeRouter (#687) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Metamonstas.DevWallet (#695) is not in mixedCase
Variable Metamonstas.MarketingWallet (#696) is not in mixedCase
Variable Metamonstas._liquidityTax (#862) is not in mixedCase
Variable Metamonstas._marketingTax (#863) is not in mixedCase
Variable Metamonstas._DevTax (#864) is not in mixedCase
Variable Metamonstas._reflectionTax (#865) is not in mixedCase
Variable Metamonstas._buyTax (#866) is not in mixedCase
Variable Metamonstas._sellTax (#867) is not in mixedCase
Variable Metamonstas._botTax (#868) is not in mixedCase
Variable Metamonstas._transferTax (#869) is not in mixedCase
Variable Metamonstas.LaunchTimestamp (#876) is not in mixedCase
Variable Metamonstas.BotProtectionTime (#879) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#524) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#525)
Variable Metamonstas._transferToExcluded(address,address,uint256,uint8).rTransferAmount (#1035) is too similar to Metamonstas._getValues(uint256,uint8).tTransferAmount (#797)
Variable Metamonstas._transferFromExcluded(address,address,uint256,uint8).rTransferAmount (#1044) is too similar to Metamonstas._getTValues(uint256,uint8).tTransferAmount (#805)
Variable Metamonstas._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to Metamonstas._getTValues(uint256,uint8).tTransferAmount (#805)
Variable Metamonstas._transferToExcluded(address,address,uint256,uint8).rTransferAmount (#1035) is too similar to Metamonstas._getTValues(uint256,uint8).tTransferAmount (#805)
Variable Metamonstas._transferBothExcluded(address,address,uint256,uint8).rTransferAmount (#1053) is too similar to Metamonstas._transferStandard(address,address,uint256,uint8).tTransferAmount (#1027)
Variable Metamonstas._getValues(uint256,uint8).rTransferAmount (#798) is too similar to Metamonstas._transferStandard(address,address,uint256,uint8).tTransferAmount (#1027)
Variable Metamonstas._transferFromExcluded(address,address,uint256,uint8).rTransferAmount (#1044) is too similar to Metamonstas._transferToExcluded(address,address,uint256,uint8).tTransferAmount (#1035)
Variable Metamonstas._transferBothExcluded(address,address,uint256,uint8).rTransferAmount (#1053) is too similar to Metamonstas._transferBothExcluded(address,address,uint256,uint8).tTransferAmount (#1053)
Variable Metamonstas._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to Metamonstas._transferToExcluded(address,address,uint256,uint8).tTransferAmount (#1035)
Variable Metamonstas._getValues(uint256,uint8).rTransferAmount (#798) is too similar to Metamonstas._transferBothExcluded(address,address,uint256,uint8).tTransferAmount (#1053)
Variable Metamonstas._transferToExcluded(address,address,uint256,uint8).rTransferAmount (#1035) is too similar to Metamonstas._transferToExcluded(address,address,uint256,uint8).tTransferAmount (#1035)
Variable Metamonstas._transferBothExcluded(address,address,uint256,uint8).rTransferAmount (#1053) is too similar to Metamonstas._transferFromExcluded(address,address,uint256,uint8).tTransferAmount (#1044)
Variable Metamonstas._transferBothExcluded(address,address,uint256,uint8).rTransferAmount (#1053) is too similar to Metamonstas._getValues(uint256,uint8).tTransferAmount (#797)
Variable Metamonstas._getValues(uint256,uint8).rTransferAmount (#798) is too similar to Metamonstas._transferFromExcluded(address,address,uint256,uint8).tTransferAmount (#1044)
Variable Metamonstas._getValues(uint256,uint8).rTransferAmount (#798) is too similar to Metamonstas._getValues(uint256,uint8).tTransferAmount (#797)
Variable Metamonstas._transferStandard(address,address,uint256,uint8).rTransferAmount (#1027) is too similar to Metamonstas._getValues(uint256,uint8).tTransferAmount (#797)
Variable Metamonstas._transferFromExcluded(address,address,uint256,uint8).rTransferAmount (#1044) is too similar to Metamonstas._transferStandard(address,address,uint256,uint8).tTransferAmount (#1027)
Variable Metamonstas._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to Metamonstas._transferStandard(address,address,uint256,uint8).tTransferAmount (#1027)
Variable Metamonstas._transferBothExcluded(address,address,uint256,uint8).rTransferAmount (#1053) is too similar to Metamonstas._getTValues(uint256,uint8).tTransferAmount (#805)
Variable Metamonstas._transferToExcluded(address,address,uint256,uint8).rTransferAmount (#1035) is too similar to Metamonstas._transferStandard(address,address,uint256,uint8).tTransferAmount (#1027)
Variable Metamonstas._transferFromExcluded(address,address,uint256,uint8).rTransferAmount (#1044) is too similar to Metamonstas._transferBothExcluded(address,address,uint256,uint8).tTransferAmount (#1053)
Variable Metamonstas._getValues(uint256,uint8).rTransferAmount (#798) is too similar to Metamonstas._getTValues(uint256,uint8).tTransferAmount (#805)
Variable Metamonstas._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to Metamonstas._transferBothExcluded(address,address,uint256,uint8).tTransferAmount (#1053)
Variable Metamonstas._transferFromExcluded(address,address,uint256,uint8).rTransferAmount (#1044) is too similar to Metamonstas._transferFromExcluded(address,address,uint256,uint8).tTransferAmount (#1044)
Variable Metamonstas._transferFromExcluded(address,address,uint256,uint8).rTransferAmount (#1044) is too similar to Metamonstas._getValues(uint256,uint8).tTransferAmount (#797)
Variable Metamonstas._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to Metamonstas._transferFromExcluded(address,address,uint256,uint8).tTransferAmount (#1044)
Variable Metamonstas._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to Metamonstas._getValues(uint256,uint8).tTransferAmount (#797)
Variable Metamonstas._transferBothExcluded(address,address,uint256,uint8).rTransferAmount (#1053) is too similar to Metamonstas._transferToExcluded(address,address,uint256,uint8).tTransferAmount (#1035)
Variable Metamonstas._transferToExcluded(address,address,uint256,uint8).rTransferAmount (#1035) is too similar to Metamonstas._transferFromExcluded(address,address,uint256,uint8).tTransferAmount (#1044)
Variable Metamonstas._getValues(uint256,uint8).rTransferAmount (#798) is too similar to Metamonstas._transferToExcluded(address,address,uint256,uint8).tTransferAmount (#1035)
Variable Metamonstas._transferStandard(address,address,uint256,uint8).rTransferAmount (#1027) is too similar to Metamonstas._transferToExcluded(address,address,uint256,uint8).tTransferAmount (#1035)
Variable Metamonstas._transferStandard(address,address,uint256,uint8).rTransferAmount (#1027) is too similar to Metamonstas._transferBothExcluded(address,address,uint256,uint8).tTransferAmount (#1053)
Variable Metamonstas._transferStandard(address,address,uint256,uint8).rTransferAmount (#1027) is too similar to Metamonstas._getTValues(uint256,uint8).tTransferAmount (#805)
Variable Metamonstas._transferStandard(address,address,uint256,uint8).rTransferAmount (#1027) is too similar to Metamonstas._transferStandard(address,address,uint256,uint8).tTransferAmount (#1027)
Variable Metamonstas._transferToExcluded(address,address,uint256,uint8).rTransferAmount (#1035) is too similar to Metamonstas._transferBothExcluded(address,address,uint256,uint8).tTransferAmount (#1053)
Variable Metamonstas._transferStandard(address,address,uint256,uint8).rTransferAmount (#1027) is too similar to Metamonstas._transferFromExcluded(address,address,uint256,uint8).tTransferAmount (#1044)
Prevent variables from having similar names.

Additional information: link

Ownable._previousOwner (#391) is never used in Metamonstas (#657-1131)
Ownable._lockTime (#392) is never used in Metamonstas (#657-1131)
Remove unused state variables.

Additional information: link

Metamonstas.BotProtectionTime (#879) should be constant
Metamonstas._name (#675) should be constant
Metamonstas._symbol (#676) should be constant
Metamonstas._tTotal (#671) should be constant
Ownable._lockTime (#392) should be constant
Ownable._previousOwner (#391) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#407-409)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#426-429)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#435-439)
isExcludedFromReward(address) should be declared external:
- Metamonstas.isExcludedFromReward(address) (#737-739)
totalFees() should be declared external:
- Metamonstas.totalFees() (#741-743)
excludeFromFee(address) should be declared external:
- Metamonstas.excludeFromFee(address) (#776-778)
includeInFee(address) should be declared external:
- Metamonstas.includeInFee(address) (#780-782)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Metamonstas.setSwapAndLiquifyEnabled(bool) (#785-787)
isExcludedFromFee(address) should be declared external:
- Metamonstas.isExcludedFromFee(address) (#850-852)
SetTaxes(uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8) should be declared external:
- Metamonstas.SetTaxes(uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8) (#882-892)
EnableTrading() should be declared external:
- Metamonstas.EnableTrading() (#894-897)
getTimestamp() should be declared external:
- Metamonstas.getTimestamp() (#900-902)
name() should be declared external:
- Metamonstas.name() (#1071-1073)
symbol() should be declared external:
- Metamonstas.symbol() (#1075-1077)
decimals() should be declared external:
- Metamonstas.decimals() (#1079-1081)
totalSupply() should be declared external:
- Metamonstas.totalSupply() (#1083-1085)
transfer(address,uint256) should be declared external:
- Metamonstas.transfer(address,uint256) (#1092-1095)
allowance(address,address) should be declared external:
- Metamonstas.allowance(address,address) (#1097-1099)
approve(address,uint256) should be declared external:
- Metamonstas.approve(address,uint256) (#1101-1104)
transferFrom(address,address,uint256) should be declared external:
- Metamonstas.transferFrom(address,address,uint256) (#1106-1110)
increaseAllowance(address,uint256) should be declared external:
- Metamonstas.increaseAllowance(address,uint256) (#1112-1115)
decreaseAllowance(address,uint256) should be declared external:
- Metamonstas.decreaseAllowance(address,uint256) (#1117-1120)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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

Contract has 12% buy tax and 11% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Youtube account


Unable to find Discord account


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 price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for MONSTA

News for MONSTA