MekaMiners Token Logo

MEKA [MekaMiners] Token

About MEKA

Listings

Token 2 years
CoinMarketCap 2 years
white paper

NFT Game that bring the artistic nft world close to the game nft world innovating the HODL meaning with real life incentives.

Social

Laser Scorebeta Last Audit: 28 February 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links


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


Contract creator or owner is blacklisted for past scams

BEP20.allowance(address,address).owner (contracts/BEP20.sol#102) shadows:
- Ownable.owner() (contracts/Ownable.sol#26-28) (function)
BEP20._approve(address,address,uint256).owner (contracts/BEP20.sol#313) shadows:
- Ownable.owner() (contracts/Ownable.sol#26-28) (function)
Rename the local variables that shadow another component.

Additional information: link

MekaMiners.setCooldownForTrades(uint8) (contracts/MekaMiners.sol#32-34) should emit an event for:
- _tradeCooldown = tradeCooldown (contracts/MekaMiners.sol#33)
MekaMiners.setBuyFee(uint8) (contracts/MekaMiners.sol#36-38) should emit an event for:
- _buyFee = _fee (contracts/MekaMiners.sol#37)
MekaMiners.setSellFee(uint8) (contracts/MekaMiners.sol#40-42) should emit an event for:
- _sellFee = _fee (contracts/MekaMiners.sol#41)
Emit an event for critical parameter changes.

Additional information: link

MekaMiners.constructor(address).feeReceiveAddress (contracts/MekaMiners.sol#25) lacks a zero-check on :
- _feeReceiveAddress = feeReceiveAddress (contracts/MekaMiners.sol#27)
Check that the address is not zero.

Additional information: link

MekaMiners.transfer(address,uint256) (contracts/MekaMiners.sol#104-140) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)((_lastTrade[_msgSender()][_receiver] < (block.timestamp - _tradeCooldown)) && (_lastTrade[_receiver][_msgSender()] < (block.timestamp - _tradeCooldown)),No consecutive sells allowed. Please wait.) (contracts/MekaMiners.sol#122-128)
MekaMiners.transferFrom(address,address,uint256) (contracts/MekaMiners.sol#142-169) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)((_lastTrade[_from][_receiver] < (block.timestamp - _tradeCooldown)) && (_lastTrade[_receiver][_from] < (block.timestamp - _tradeCooldown)),No consecutive sells allowed. Please wait.) (contracts/MekaMiners.sol#153-159)
Avoid relying on block.timestamp.

Additional information: link

MekaMiners.isContract(address) (contracts/MekaMiners.sol#179-186) uses assembly
- INLINE ASM (contracts/MekaMiners.sol#181-183)
Do not use evm assembly.

Additional information: link

BEP20._burn(address,uint256) (contracts/BEP20.sol#288-297) is never used and should be removed
Context._msgData() (contracts/Context.sol#13-16) is never used and should be removed
MekaMiners.isContract(address) (contracts/MekaMiners.sol#179-186) is never used and should be removed
SafeMath.div(uint256,uint256) (contracts/SafeMath.sol#85-87) is never used and should be removed
SafeMath.div(uint256,uint256,string) (contracts/SafeMath.sol#102-109) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/SafeMath.sol#122-124) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/SafeMath.sol#139-142) is never used and should be removed
SafeMath.mul(uint256,uint256) (contracts/SafeMath.sol#61-72) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.2 (contracts/BEP20.sol#2) allows old versions
Pragma version^0.8.2 (contracts/Context.sol#2) allows old versions
Pragma version^0.8.2 (contracts/IBEP20.sol#2) allows old versions
Pragma version^0.8.2 (contracts/IERC165.sol#2) allows old versions
Pragma version^0.8.2 (contracts/IERC721.sol#2) allows old versions
Pragma version^0.8.2 (contracts/IERC721Enumerable.sol#2) allows old versions
Pragma version^0.8.2 (contracts/MekaMiners.sol#2) allows old versions
Pragma version^0.8.2 (contracts/Ownable.sol#2) allows old versions
Pragma version^0.8.2 (contracts/Pausable.sol#2) allows old versions
Pragma version^0.8.2 (contracts/SafeMath.sol#2) allows old versions
solc-0.8.11 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

Parameter MekaMiners.setBuyFee(uint8)._fee (contracts/MekaMiners.sol#36) is not in mixedCase
Parameter MekaMiners.setSellFee(uint8)._fee (contracts/MekaMiners.sol#40) is not in mixedCase
Parameter MekaMiners.setLPAddress(address,bool)._addr (contracts/MekaMiners.sol#57) is not in mixedCase
Parameter MekaMiners.isAddressLP(address)._addr (contracts/MekaMiners.sol#66) is not in mixedCase
Parameter MekaMiners.transfer(address,uint256)._receiver (contracts/MekaMiners.sol#104) is not in mixedCase
Parameter MekaMiners.transfer(address,uint256)._amount (contracts/MekaMiners.sol#104) is not in mixedCase
Parameter MekaMiners.transferFrom(address,address,uint256)._from (contracts/MekaMiners.sol#143) is not in mixedCase
Parameter MekaMiners.transferFrom(address,address,uint256)._receiver (contracts/MekaMiners.sol#144) is not in mixedCase
Parameter MekaMiners.transferFrom(address,address,uint256)._amount (contracts/MekaMiners.sol#145) is not in mixedCase
Parameter MekaMiners.computeCut(uint256,uint8)._fee (contracts/MekaMiners.sol#171) is not in mixedCase
Parameter MekaMiners.isContract(address)._address (contracts/MekaMiners.sol#179) is not in mixedCase
Variable MekaMiners._isLockTransferForAntiBot (contracts/MekaMiners.sol#17) is not in mixedCase
Variable MekaMiners._lpAddresses (contracts/MekaMiners.sol#19) is not in mixedCase
Function Pausable._pause() (contracts/Pausable.sol#32-36) is not in mixedCase
Function Pausable._unpause() (contracts/Pausable.sol#41-45) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (contracts/Context.sol#14)" inContext (contracts/Context.sol#4-18)
Remove redundant statements if they congest code but offer no value.

Additional information: link

MekaMiners.constructor(address) (contracts/MekaMiners.sol#25-30) uses literals with too many digits:
- _mint(_msgSender(),200000000 * 10 ** decimals()) (contracts/MekaMiners.sol#29)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

name() should be declared external:
- BEP20.name() (contracts/BEP20.sol#37-39)
symbol() should be declared external:
- BEP20.symbol() (contracts/BEP20.sol#45-47)
totalSupply() should be declared external:
- BEP20.totalSupply() (contracts/BEP20.sol#69-71)
balanceOf(address) should be declared external:
- BEP20.balanceOf(address) (contracts/BEP20.sol#76-78)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (contracts/BEP20.sol#88-97)
- MekaMiners.transfer(address,uint256) (contracts/MekaMiners.sol#104-140)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (contracts/BEP20.sol#102-109)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (contracts/BEP20.sol#118-126)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (contracts/BEP20.sol#140-147)
- MekaMiners.transferFrom(address,address,uint256) (contracts/MekaMiners.sol#142-169)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (contracts/BEP20.sol#178-189)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (contracts/BEP20.sol#205-219)
setBuyFee(uint8) should be declared external:
- MekaMiners.setBuyFee(uint8) (contracts/MekaMiners.sol#36-38)
setSellFee(uint8) should be declared external:
- MekaMiners.setSellFee(uint8) (contracts/MekaMiners.sol#40-42)
setPCSRouterdAddress(address) should be declared external:
- MekaMiners.setPCSRouterdAddress(address) (contracts/MekaMiners.sol#52-55)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/Ownable.sol#52-55)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/Ownable.sol#61-63)
_pause() should be declared external:
- Pausable._pause() (contracts/Pausable.sol#32-36)
_unpause() should be declared external:
- Pausable._unpause() (contracts/Pausable.sol#41-45)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


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

Additional information: link


Young tokens have high risks of scam / price dump / death


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


Token has relatively low CoinGecko rank

Price for MEKA

News for MEKA