METALUNR Token Logo

MLUNR [METALUNR] Token

ALERT: phishing / airdrop scam

About MLUNR

Listings

Not Found
Token 2 years
white paper

Metalunr is a secure, scalable hyper-performance gaming, social, and advertising blockchain platform designed to reward the community for doing what they already do every day which includes playing games, watching videos and participating in crypto related surveys.

Social

Laser Scorebeta Last Audit: 19 July 2022

report
Token seems to be a scam (type: phishing / airdrop scam).

Anti-Scam

Links


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

METALUNR._tFeeTotal (#97) is never initialized. It is used in:
- METALUNR.totalFees() (#190-192)
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

METALUNR.totalSupply (#93) shadows:
- BEP20Basic.totalSupply (#64)
Remove the state variable shadowing.

Additional information: link

METALUNR.transferOwnership(address) (#169-173) should emit an event for:
- owner = newOwner (#171)
Emit an event for critical parameter changes.

Additional information: link

METALUNR.constructor() (#128-132) uses literals with too many digits:
- teamFund = 250000000e8 (#129)
METALUNR.slitherConstructorVariables() (#77-367) uses literals with too many digits:
- totalSupply = 5000000000e8 (#93)
METALUNR.slitherConstructorVariables() (#77-367) uses literals with too many digits:
- tokensPerEth = 400000e8 (#96)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

METALUNR.getTokens() (#232-289) performs a multiplication on the result of a division:
-tokens = tokensPerEth.mul(msg.value) / 1000000000000000000 (#240)
-countbonus = tokens * 30 / 100 (#245)
METALUNR.getTokens() (#232-289) performs a multiplication on the result of a division:
-tokens = tokensPerEth.mul(msg.value) / 1000000000000000000 (#240)
-countbonus = tokens * 50 / 100 (#247)
METALUNR.getTokens() (#232-289) performs a multiplication on the result of a division:
-tokens = tokensPerEth.mul(msg.value) / 1000000000000000000 (#240)
-countbonus = tokens * 100 / 100 (#249)
METALUNR.getTokens() (#232-289) performs a multiplication on the result of a division:
-tokens = tokensPerEth.mul(msg.value) / 1000000000000000000 (#240)
-countbonus = tokens * 20 / 100 (#253)
METALUNR.getTokens() (#232-289) performs a multiplication on the result of a division:
-tokens = tokensPerEth.mul(msg.value) / 1000000000000000000 (#240)
-countbonus = tokens * 50 / 100 (#255)
Consider ordering multiplication before division.

Additional information: link

METALUNR.setTaxFeePercent(uint256) (#134-136) should emit an event for:
- _taxFee = taxFee (#135)
METALUNR.setLiquidityFeePercent(uint256) (#159-161) should emit an event for:
- _liquidityFee = liquidityFee (#160)
Emit an event for critical parameter changes.

Additional information: link

METALUNR.getTokens() (#232-289) uses timestamp for comparisons
Dangerous comparisons:
- msg.value >= requestMinimum && now < deadline && now < round1 && now < round2 (#243)
- msg.value >= requestMinimum && now < deadline && now > round1 && now < round2 (#251)
- now >= deadline && now >= round1 && now < round2 (#273)
Avoid relying on block.timestamp.

Additional information: link

METALUNR.getTokens() (#232-289) compares to a boolean constant:
-Claimed[investor] == false && progress0drop <= target0drop (#265)
Remove the equality to the boolean constant.

Additional information: link

METALUNR.Distribute(address,uint256) (#194-208) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(_amount) (#199)
METALUNR.Distribute(address,uint256) (#194-208) has costly operations inside a loop:
- distributionFinished = true (#202)
Use a local variable to hold the loop computation result.

Additional information: link

METALUNR.calculateLiquidityFee(uint256) (#163-167) is never used and should be removed
METALUNR.calculateTaxFee(uint256) (#138-142) is never used and should be removed
METALUNR.removeAllFee() (#144-152) is never used and should be removed
METALUNR.restoreAllFee() (#154-157) is never used and should be removed
SafeMath.div(uint256,uint256) (#36-41) is never used and should be removed
Remove unused functions.

Additional information: link

METALUNR._previousTaxFee (#99) is set pre-construction with a non-constant function or state variable:
- _taxFee
METALUNR._previousLiquidityFee (#101) 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

Pragma version^0.4.26 (#11) allows old versions
solc-0.4.26 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

Event METALUNRrequestMinimumUpdated(uint256) (#112) is not in CapWords
Parameter METALUNR.calculateTaxFee(uint256)._amount (#138) is not in mixedCase
Parameter METALUNR.calculateLiquidityFee(uint256)._amount (#163) is not in mixedCase
Parameter METALUNR.distr(address,uint256)._to (#181) is not in mixedCase
Parameter METALUNR.distr(address,uint256)._amount (#181) is not in mixedCase
Function METALUNR.Distribute(address,uint256) (#194-208) is not in mixedCase
Parameter METALUNR.Distribute(address,uint256)._participant (#194) is not in mixedCase
Parameter METALUNR.Distribute(address,uint256)._amount (#194) is not in mixedCase
Function METALUNR.DistributeAirdrop(address,uint256) (#210-212) is not in mixedCase
Parameter METALUNR.DistributeAirdrop(address,uint256)._participant (#210) is not in mixedCase
Parameter METALUNR.DistributeAirdrop(address,uint256)._amount (#210) is not in mixedCase
Function METALUNR.DistributeAirdropMultiple(address[],uint256) (#214-216) is not in mixedCase
Parameter METALUNR.DistributeAirdropMultiple(address[],uint256)._addresses (#214) is not in mixedCase
Parameter METALUNR.DistributeAirdropMultiple(address[],uint256)._amount (#214) is not in mixedCase
Parameter METALUNR.updateTokensPerEth(uint256)._tokensPerEth (#218) is not in mixedCase
Parameter METALUNR.updaterequestMinimum(uint256)._requestMinimum (#223) is not in mixedCase
Parameter METALUNR.balanceOf(address)._owner (#291) is not in mixedCase
Parameter METALUNR.transfer(address,uint256)._to (#300) is not in mixedCase
Parameter METALUNR.transfer(address,uint256)._amount (#300) is not in mixedCase
Parameter METALUNR.transferFrom(address,address,uint256)._from (#311) is not in mixedCase
Parameter METALUNR.transferFrom(address,address,uint256)._to (#311) is not in mixedCase
Parameter METALUNR.transferFrom(address,address,uint256)._amount (#311) is not in mixedCase
Parameter METALUNR.approve(address,uint256)._spender (#324) is not in mixedCase
Parameter METALUNR.approve(address,uint256)._value (#324) is not in mixedCase
Parameter METALUNR.allowance(address,address)._owner (#331) is not in mixedCase
Parameter METALUNR.allowance(address,address)._spender (#331) is not in mixedCase
Parameter METALUNR.withdraw(uint256)._wdamount (#347) is not in mixedCase
Parameter METALUNR.burn(uint256)._value (#352) is not in mixedCase
Parameter METALUNR.withdrawForeignTokens(address)._tokenContract (#361) is not in mixedCase
Variable METALUNR.Claimed (#84) is not in mixedCase
Variable METALUNR._taxFee (#98) is not in mixedCase
Variable METALUNR._liquidityFee (#100) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

BEP20Basic.totalSupply (#64) should be constant
METALUNR._tFeeTotal (#97) should be constant
METALUNR.target0drop (#102) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

balanceOf(address) should be declared external:
- ForeignToken.balanceOf(address) (#59)
transfer(address,uint256) should be declared external:
- ForeignToken.transfer(address,uint256) (#60)
balanceOf(address) should be declared external:
- BEP20Basic.balanceOf(address) (#65)
- METALUNR.balanceOf(address) (#291-293)
transfer(address,uint256) should be declared external:
- BEP20Basic.transfer(address,uint256) (#66)
- METALUNR.transfer(address,uint256) (#300-309)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (#71)
- METALUNR.allowance(address,address) (#331-333)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#72)
- METALUNR.transferFrom(address,address,uint256) (#311-322)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#73)
- METALUNR.approve(address,uint256) (#324-329)
transferOwnership(address) should be declared external:
- METALUNR.transferOwnership(address) (#169-173)
finishDistribution() should be declared external:
- METALUNR.finishDistribution() (#175-179)
totalFees() should be declared external:
- METALUNR.totalFees() (#190-192)
updateTokensPerEth(uint256) should be declared external:
- METALUNR.updateTokensPerEth(uint256) (#218-221)
updaterequestMinimum(uint256) should be declared external:
- METALUNR.updaterequestMinimum(uint256) (#223-226)
getTokenBalance(address,address) should be declared external:
- METALUNR.getTokenBalance(address,address) (#335-339)
withdrawAll() should be declared external:
- METALUNR.withdrawAll() (#341-345)
withdraw(uint256) should be declared external:
- METALUNR.withdraw(uint256) (#347-350)
burn(uint256) should be declared external:
- METALUNR.burn(uint256) (#352-359)
withdrawForeignTokens(address) should be declared external:
- METALUNR.withdrawForeignTokens(address) (#361-365)
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.


Token is deployed only at one blockchain


Token has only one trading pair


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is not listed at Mobula.Finance

Additional information: link


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


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

Price for MLUNR

News for MLUNR