MetaProtocol Token Logo

MPT [MetaProtocol] Token

About MPT

Listings

Token 2 years

META PROTOCOL is the Metaverse project.

With this project, you will be able to shop with your virtual glasses from the stores we have agreed with, and you will be able to buy properties and living things such as houses, cars, land, animals in the universe we have created. With our game models that we will put on the market, you will be able to come together and play games with your friends in the virtual universe. And you will be able to earn money while doing them.

In the first place, the Swap/Pool platform will be the Nft market opening for all users. Here you can invest in our base unit, earn futures and buy nft. We have prepared a whitepaper for you. It will be updated over time and new targets will be added. Have fun and earn money. Everything is for the future.

Future technology metaverse

Social

Laser Scorebeta Last Audit: 16 December 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...)

MetaProtocol.swapBack() (#583-631) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#614)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#615)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in MetaProtocol._transferFrom(address,address,uint256) (#467-515):
External calls:
- swapBack() (#494)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#594-600)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#614)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
External calls sending eth:
- swapBack() (#494)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#614)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#497)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#500)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#499)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#540)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#541)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#286-297) ignores return value by RWRD.transfer(shareholder,amount) (#292)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

MetaProtocol.swapBack().tmpSuccess (#613) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#614)
MetaProtocol.swapBack().tmpSuccess (#613) is written in both
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#614)
(tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#615)
MetaProtocol.swapBack().tmpSuccess (#613) is written in both
(tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#615)
tmpSuccess = false (#618)
Fix or remove the writes.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

MetaProtocol.takeFee(address,uint256,bool) (#532-549) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#535)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#537)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#286-297):
External calls:
- RWRD.transfer(shareholder,amount) (#292)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#294)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#295)
Reentrancy in DividendDistributor.process(uint256) (#255-279):
External calls:
- distributeDividend(shareholders[currentIndex]) (#271)
- RWRD.transfer(shareholder,amount) (#292)
State variables written after the call(s):
- currentIndex ++ (#276)
Reentrancy in DividendDistributor.setShare(address,uint256) (#219-233):
External calls:
- distributeDividend(shareholder) (#221)
- RWRD.transfer(shareholder,amount) (#292)
State variables written after the call(s):
- shares[shareholder].amount = amount (#231)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#232)
Apply the check-effects-interactions pattern.

Additional information: link

MetaProtocol.manage_blacklist(address[],bool).i (#649) 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

MetaProtocol.swapBack() (#583-631) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#214-217) should emit an event for:
- minPeriod = _minPeriod (#215)
- minDistribution = _minDistribution (#216)
MetaProtocol.setMaxTxPercent_base1000(uint256) (#458-460) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#459)
MetaProtocol.setTxLimit(uint256) (#462-464) should emit an event for:
- _maxTxAmount = amount (#463)
MetaProtocol.set_sell_multiplier(uint256) (#568-570) should emit an event for:
- sellMultiplier = Multiplier (#569)
MetaProtocol.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#667-677) should emit an event for:
- liquidityFee = _liquidityFee (#668)
- reflectionFee = _reflectionFee (#669)
- marketingFee = _marketingFee (#670)
- teamFee = _teamFee (#671)
- charityFee = _charityFee (#672)
- burnFee = _burnFee (#673)
- totalFee = _liquidityFee + _reflectionFee + _marketingFee + _teamFee + _burnFee + _charityFee (#674)
- feeDenominator = _feeDenominator (#675)
MetaProtocol.setSwapBackSettings(bool,uint256) (#687-690) should emit an event for:
- swapThreshold = _amount (#689)
MetaProtocol.setTargetLiquidity(uint256,uint256) (#692-695) should emit an event for:
- targetLiquidity = _target (#693)
- targetLiquidityDenominator = _denominator (#694)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#96) lacks a zero-check on :
- owner = adr (#97)
MetaProtocol.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#679) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#680)
MetaProtocol.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#679) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#681)
MetaProtocol.setFeeReceivers(address,address,address,address,address)._teamFeeReceiver (#679) lacks a zero-check on :
- teamFeeReceiver = _teamFeeReceiver (#682)
MetaProtocol.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#679) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#683)
MetaProtocol.setFeeReceivers(address,address,address,address,address)._charityFeeReceiver (#679) lacks a zero-check on :
- charityFeeReceiver = _charityFeeReceiver (#684)
Check that the address is not zero.

Additional information: link

MetaProtocol.multiTransfer(address,address[],uint256[]) (#721-745) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#737)
MetaProtocol.multiTransfer_fixed(address,address[],uint256) (#747-766) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#758)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in MetaProtocol.constructor() (#395-421):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#397)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#398)
- _balances[msg.sender] = _totalSupply (#419)
- autoLiquidityReceiver = DEAD (#413)
- burnFeeReceiver = DEAD (#417)
- charityFeeReceiver = 0x803bD1b2CFb40Dfcb58Ee50d35E5e9E6D8f5CA22 (#416)
- distributor = new DividendDistributor(address(router)) (#400)
- isDividendExempt[pair] = true (#409)
- isDividendExempt[address(this)] = true (#410)
- isDividendExempt[DEAD] = true (#411)
- isFeeExempt[msg.sender] = true (#402)
- isTimelockExempt[msg.sender] = true (#405)
- isTimelockExempt[DEAD] = true (#406)
- isTimelockExempt[address(this)] = true (#407)
- isTxLimitExempt[msg.sender] = true (#403)
- marketingFeeReceiver = 0xCE5DA7dc64f2bA04C87682f2aF2475af0872AB6B (#414)
- teamFeeReceiver = 0x0b64fCF661a742CCC5B48A8DD1B70F77f1C9630b (#415)
Reentrancy in DividendDistributor.deposit() (#235-253):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#242-247)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#252)
- totalDividends = totalDividends.add(amount) (#251)
Reentrancy in DividendDistributor.distributeDividend(address) (#286-297):
External calls:
- RWRD.transfer(shareholder,amount) (#292)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#293)
Reentrancy in DividendDistributor.setShare(address,uint256) (#219-233):
External calls:
- distributeDividend(shareholder) (#221)
- RWRD.transfer(shareholder,amount) (#292)
State variables written after the call(s):
- addShareholder(shareholder) (#225)
- shareholderIndexes[shareholder] = shareholders.length (#319)
- removeShareholder(shareholder) (#227)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#325)
- addShareholder(shareholder) (#225)
- shareholders.push(shareholder) (#320)
- removeShareholder(shareholder) (#227)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#324)
- shareholders.pop() (#326)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#230)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MetaProtocol._transferFrom(address,address,uint256) (#467-515):
External calls:
- swapBack() (#494)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#594-600)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#614)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
- distributor.setShare(sender,_balances[sender]) (#504)
- distributor.setShare(recipient,_balances[recipient]) (#508)
- distributor.process(distributorGas) (#511)
External calls sending eth:
- swapBack() (#494)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#614)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#513)
Reentrancy in MetaProtocol._transferFrom(address,address,uint256) (#467-515):
External calls:
- swapBack() (#494)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#594-600)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#614)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
External calls sending eth:
- swapBack() (#494)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#614)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#542)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#499)
- Transfer(sender,burnFeeReceiver,burnTokens) (#545)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#499)
Reentrancy in MetaProtocol.constructor() (#395-421):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#397)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#420)
Reentrancy in MetaProtocol.swapBack() (#583-631):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#594-600)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#614)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#614)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#615)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#621-628)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#629)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#281-284) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#282-283)
MetaProtocol._transferFrom(address,address,uint256) (#467-515) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#487)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#255-279) has costly operations inside a loop:
- currentIndex = 0 (#267)
DividendDistributor.process(uint256) (#255-279) has costly operations inside a loop:
- currentIndex ++ (#276)
Use a local variable to hold the loop computation result.

Additional information: link

MetaProtocol._maxTxAmount (#343) is set pre-construction with a non-constant function or state variable:
- _totalSupply
MetaProtocol._maxWalletToken (#344) is set pre-construction with a non-constant function or state variable:
- _totalSupply
MetaProtocol.totalFee (#364) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + teamFee + burnFee + charityFee
MetaProtocol.swapThreshold (#391) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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.7.4 (#7) allows old versions
solc-0.7.4 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 MetaProtocol.swapBack() (#583-631):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#614)
- (tmpSuccess,None) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBCharity}() (#615)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#111) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#214) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#214) is not in mixedCase
Variable DividendDistributor._token (#167) is not in mixedCase
Variable DividendDistributor.RWRD (#175) is not in mixedCase
Variable DividendDistributor.WBNB (#176) is not in mixedCase
Function MetaProtocol.setMaxWalletPercent_base1000(uint256) (#455-457) is not in mixedCase
Parameter MetaProtocol.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#455) is not in mixedCase
Function MetaProtocol.setMaxTxPercent_base1000(uint256) (#458-460) is not in mixedCase
Parameter MetaProtocol.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#458) is not in mixedCase
Function MetaProtocol.clearStuckBalance_sender(uint256) (#563-566) is not in mixedCase
Function MetaProtocol.set_sell_multiplier(uint256) (#568-570) is not in mixedCase
Parameter MetaProtocol.set_sell_multiplier(uint256).Multiplier (#568) is not in mixedCase
Parameter MetaProtocol.tradingStatus(bool)._status (#573) is not in mixedCase
Parameter MetaProtocol.cooldownEnabled(bool,uint8)._status (#578) is not in mixedCase
Parameter MetaProtocol.cooldownEnabled(bool,uint8)._interval (#578) is not in mixedCase
Function MetaProtocol.enable_blacklist(bool) (#644-646) is not in mixedCase
Parameter MetaProtocol.enable_blacklist(bool)._status (#644) is not in mixedCase
Function MetaProtocol.manage_blacklist(address[],bool) (#648-652) is not in mixedCase
Parameter MetaProtocol.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#667) is not in mixedCase
Parameter MetaProtocol.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#667) is not in mixedCase
Parameter MetaProtocol.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#667) is not in mixedCase
Parameter MetaProtocol.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._teamFee (#667) is not in mixedCase
Parameter MetaProtocol.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#667) is not in mixedCase
Parameter MetaProtocol.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._charityFee (#667) is not in mixedCase
Parameter MetaProtocol.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#667) is not in mixedCase
Parameter MetaProtocol.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#679) is not in mixedCase
Parameter MetaProtocol.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#679) is not in mixedCase
Parameter MetaProtocol.setFeeReceivers(address,address,address,address,address)._teamFeeReceiver (#679) is not in mixedCase
Parameter MetaProtocol.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#679) is not in mixedCase
Parameter MetaProtocol.setFeeReceivers(address,address,address,address,address)._charityFeeReceiver (#679) is not in mixedCase
Parameter MetaProtocol.setSwapBackSettings(bool,uint256)._enabled (#687) is not in mixedCase
Parameter MetaProtocol.setSwapBackSettings(bool,uint256)._amount (#687) is not in mixedCase
Parameter MetaProtocol.setTargetLiquidity(uint256,uint256)._target (#692) is not in mixedCase
Parameter MetaProtocol.setTargetLiquidity(uint256,uint256)._denominator (#692) is not in mixedCase
Parameter MetaProtocol.setDistributionCriteria(uint256,uint256)._minPeriod (#697) is not in mixedCase
Parameter MetaProtocol.setDistributionCriteria(uint256,uint256)._minDistribution (#697) is not in mixedCase
Function MetaProtocol.multiTransfer_fixed(address,address[],uint256) (#747-766) is not in mixedCase
Variable MetaProtocol.WBNB (#333) is not in mixedCase
Variable MetaProtocol.DEAD (#334) is not in mixedCase
Variable MetaProtocol.ZERO (#335) is not in mixedCase
Constant MetaProtocol._name (#337) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MetaProtocol._symbol (#338) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MetaProtocol._decimals (#339) is not in UPPER_CASE_WITH_UNDERSCORES
Variable MetaProtocol._totalSupply (#341) is not in mixedCase
Variable MetaProtocol._maxTxAmount (#343) is not in mixedCase
Variable MetaProtocol._maxWalletToken (#344) is not in mixedCase
Variable MetaProtocol._balances (#346) is not in mixedCase
Variable MetaProtocol._allowances (#347) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#116) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#117)
Prevent variables from having similar names.

Additional information: link

MetaProtocol.slitherConstructorVariables() (#330-770) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#334)
MetaProtocol.slitherConstructorVariables() (#330-770) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#335)
MetaProtocol.slitherConstructorVariables() (#330-770) uses literals with too many digits:
- distributorGas = 500000 (#384)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendDistributor.WBNB (#176) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#189) should be constant
MetaProtocol.DEAD (#334) should be constant
MetaProtocol.WBNB (#333) should be constant
MetaProtocol.ZERO (#335) should be constant
MetaProtocol._totalSupply (#341) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#80-82)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#84-86)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#96-100)
tradingStatus(bool) should be declared external:
- MetaProtocol.tradingStatus(bool) (#573-575)
cooldownEnabled(bool,uint8) should be declared external:
- MetaProtocol.cooldownEnabled(bool,uint8) (#578-581)
enable_blacklist(bool) should be declared external:
- MetaProtocol.enable_blacklist(bool) (#644-646)
manage_blacklist(address[],bool) should be declared external:
- MetaProtocol.manage_blacklist(address[],bool) (#648-652)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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


Unable to find Twitter account


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for MPT