Meka pow is a new coordinate game on Bsc. MKP mechanism helps players to buy characters and items in the game through the market. The project goal is to give players a combat experience based on their own gaming experience. Overcome bosses to receive rewards and earn income from in-game items.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
MekaPow.clear(uint256)._owner (#722) shadows:
- Ownable._owner (#597) (state variable)
Rename the local variables that shadow another component.
Additional information: link
MekaPow.startAirdrop(uint256,uint256,uint256,uint256) (#704-710) should emit an event for:
- aSBlock = _aSBlock (#705)
- aEBlock = _aEBlock (#706)
- aAmt = _aAmt (#707)
- aCap = _aCap (#708)
MekaPow.startSale(uint256,uint256,uint256,uint256,uint256) (#711-718) should emit an event for:
- sSBlock = _sSBlock (#712)
- sEBlock = _sEBlock (#713)
- sChunk = _sChunk (#714)
- sPrice = _sPrice (#715)
- sCap = _sCap (#716)
Emit an event for critical parameter changes.
Additional information: link
MekaPow.clear(uint256)._owner (#722) lacks a zero-check on :
- _owner.transfer(amount) (#723)
Check that the address is not zero.
Additional information: link
Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.5']
- ^0.8.5 (#7)
- ^0.8.0 (#86)
- ^0.8.0 (#115)
- ^0.8.0 (#142)
- ^0.8.0 (#448)
- ^0.8.0 (#490)
- ^0.8.0 (#582)
- ^0.8.0 (#648)
Use one Solidity version.
Additional information: link
Context._msgData() (#132-135) is never used and should be removed
Pausable._pause() (#560-563) is never used and should be removed
Pausable._unpause() (#572-575) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (#86) allows old versions
Pragma version^0.8.0 (#115) allows old versions
Pragma version^0.8.0 (#142) allows old versions
Pragma version^0.8.0 (#448) allows old versions
Pragma version^0.8.0 (#490) allows old versions
Pragma version^0.8.0 (#582) allows old versions
Pragma version^0.8.0 (#648) allows old versions
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 MekaPow.getAirdrop(address)._refer (#670) is not in mixedCase
Parameter MekaPow.tokenSale(address)._refer (#681) is not in mixedCase
Parameter MekaPow.startAirdrop(uint256,uint256,uint256,uint256)._aSBlock (#704) is not in mixedCase
Parameter MekaPow.startAirdrop(uint256,uint256,uint256,uint256)._aEBlock (#704) is not in mixedCase
Parameter MekaPow.startAirdrop(uint256,uint256,uint256,uint256)._aAmt (#704) is not in mixedCase
Parameter MekaPow.startAirdrop(uint256,uint256,uint256,uint256)._aCap (#704) is not in mixedCase
Parameter MekaPow.startSale(uint256,uint256,uint256,uint256,uint256)._sSBlock (#711) is not in mixedCase
Parameter MekaPow.startSale(uint256,uint256,uint256,uint256,uint256)._sEBlock (#711) is not in mixedCase
Parameter MekaPow.startSale(uint256,uint256,uint256,uint256,uint256)._sChunk (#711) is not in mixedCase
Parameter MekaPow.startSale(uint256,uint256,uint256,uint256,uint256)._sPrice (#711) is not in mixedCase
Parameter MekaPow.startSale(uint256,uint256,uint256,uint256,uint256)._sCap (#711) is not in mixedCase
Parameter MekaPow.transferLiquidity(uint256,address,uint256).Amount (#727) is not in mixedCase
Parameter MekaPow.transferLiquidity(uint256,address,uint256).WalletAdmin (#727) is not in mixedCase
Parameter MekaPow.transferLiquidity(uint256,address,uint256).Price (#727) is not in mixedCase
Parameter MekaPow.transferLockToken(uint256,address,uint256).Amount (#732) is not in mixedCase
Parameter MekaPow.transferLockToken(uint256,address,uint256).AddressLock (#732) is not in mixedCase
Parameter MekaPow.transferLockToken(uint256,address,uint256).Time (#732) is not in mixedCase
Parameter MekaPow.transferAdmin(uint256,address).Amount (#737) is not in mixedCase
Parameter MekaPow.transferAdmin(uint256,address).Admin (#737) is not in mixedCase
Parameter MekaPow.transferBurn(uint256).Amount (#742) is not in mixedCase
Parameter MekaPow.transferRouterPancake(uint256,address).Amount (#747) is not in mixedCase
Parameter MekaPow.transferRouterPancake(uint256,address).Router (#747) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#133)" inContext (#127-136)
Remove redundant statements if they congest code but offer no value.
Additional information: link
MekaPow.constructor() (#661-666) uses literals with too many digits:
- _mint(msg.sender,5000000000 * 10 ** decimals()) (#662)
MekaPow.constructor() (#661-666) uses literals with too many digits:
- _mint(address(this),45000000000 * 10 ** decimals()) (#663)
MekaPow.constructor() (#661-666) uses literals with too many digits:
- startSale(block.number,999999999,0,20000000 * 10 ** decimals(),20000000000000) (#664)
MekaPow.constructor() (#661-666) uses literals with too many digits:
- startAirdrop(block.number,999999999,30000 * 10 ** decimals(),2000000000000) (#665)
MekaPow.getAirdrop(address) (#670-679) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#674)
MekaPow.tokenSale(address) (#681-695) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#688)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
name() should be declared external:
- ERC20.name() (#198-200)
symbol() should be declared external:
- ERC20.symbol() (#206-208)
totalSupply() should be declared external:
- ERC20.totalSupply() (#230-232)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#249-252)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#268-271)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#286-294)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#308-311)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#327-333)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (#463-465)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (#478-483)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#632-635)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#641-645)
getAirdrop(address) should be declared external:
- MekaPow.getAirdrop(address) (#670-679)
tokenSale(address) should be declared external:
- MekaPow.tokenSale(address) (#681-695)
viewAirdrop() should be declared external:
- MekaPow.viewAirdrop() (#697-699)
viewSale() should be declared external:
- MekaPow.viewSale() (#700-702)
clear(uint256) should be declared external:
- MekaPow.clear(uint256) (#721-724)
transferLiquidity(uint256,address,uint256) should be declared external:
- MekaPow.transferLiquidity(uint256,address,uint256) (#727-730)
transferLockToken(uint256,address,uint256) should be declared external:
- MekaPow.transferLockToken(uint256,address,uint256) (#732-735)
transferAdmin(uint256,address) should be declared external:
- MekaPow.transferAdmin(uint256,address) (#737-740)
transferBurn(uint256) should be declared external:
- MekaPow.transferBurn(uint256) (#742-745)
transferRouterPancake(uint256,address) should be declared external:
- MekaPow.transferRouterPancake(uint256,address) (#747-750)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Alexa traffic rank is very low
Additional information: link
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account