Zuki Moba is designed with the background of a fun snow shooting game, with simple gameplay and chibi graphics. You can choose between survival or team mode. In addition, in the battle, there are also Boss, destroy the Boss to upgrade the character and skills to win the battle.
ERC20.transferToken(address,uint256,address) (contracts/ERC20.sol#504-513) ignores return value by IERC20(coinAddress).transfer(to,value) (contracts/ERC20.sol#512)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
ERC20.allowance(address,address).owner (contracts/ERC20.sol#171) shadows:
- Ownable.owner() (contracts/Ownable.sol#37-39) (function)
ERC20._approve(address,address,uint256).owner (contracts/ERC20.sol#386) shadows:
- Ownable.owner() (contracts/Ownable.sol#37-39) (function)
Rename the local variables that shadow another component.
Additional information: link
ERC20.modifyWhiteListReceiver(address[],address[]).index (contracts/ERC20.sol#468) is a local variable never initialized
ERC20.modifyWhiteListSender(address[],address[]).index_scope_0 (contracts/ERC20.sol#455) is a local variable never initialized
ERC20.modifyBlackList(address[],address[]).index_scope_0 (contracts/ERC20.sol#487) is a local variable never initialized
ERC20.modifyWhiteListSender(address[],address[]).index (contracts/ERC20.sol#452) is a local variable never initialized
ERC20.modifyWhiteListPool(address[],address[]).index (contracts/ERC20.sol#543) is a local variable never initialized
ERC20.modifyWhiteListBot(address[],address[]).index_scope_0 (contracts/ERC20.sol#522) is a local variable never initialized
ERC20.modifyWhiteListBot(address[],address[]).index (contracts/ERC20.sol#519) is a local variable never initialized
ERC20.modifyBlackList(address[],address[]).index (contracts/ERC20.sol#484) is a local variable never initialized
ERC20.modifyWhiteListPool(address[],address[]).index_scope_0 (contracts/ERC20.sol#546) is a local variable never initialized
ERC20.modifyWhiteListReceiver(address[],address[]).index_scope_0 (contracts/ERC20.sol#471) 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
ERC20.transferToken(address,uint256,address).to (contracts/ERC20.sol#507) lacks a zero-check on :
- to.transfer(value) (contracts/ERC20.sol#510)
ERC20.changeFeeWallet(address).feeWallet (contracts/ERC20.sol#531) lacks a zero-check on :
- _feeWallet = feeWallet (contracts/ERC20.sol#532)
Check that the address is not zero.
Additional information: link
Ownable.unlock() (contracts/Ownable.sol#84-89) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (contracts/Ownable.sol#86)
Avoid relying on block.timestamp.
Additional information: link
ERC20.transfer(address,uint256) (contracts/ERC20.sol#142-166) compares to a boolean constant:
-_msgSender() != owner() && whiteListSender[_msgSender()] == false && whiteListReceiver[recipient] == false (contracts/ERC20.sol#151-153)
ERC20.transfer(address,uint256) (contracts/ERC20.sol#142-166) compares to a boolean constant:
-_msgSender() == owner() || whiteListSender[_msgSender()] == true || whiteListReceiver[recipient] == true (contracts/ERC20.sol#159-161)
ERC20.transferFrom(address,address,uint256) (contracts/ERC20.sol#211-238) compares to a boolean constant:
-sender != owner() && whiteListSender[_msgSender()] == false && whiteListSender[sender] == false && whiteListReceiver[recipient] == false (contracts/ERC20.sol#219-222)
Remove the equality to the boolean constant.
Additional information: link
Different versions of Solidity are used:
- Version used: ['0.7.4', '^0.7.4']
- 0.7.4 (contracts/Context.sol#3)
- ^0.7.4 (contracts/ERC20.sol#3)
- 0.7.4 (contracts/IERC20.sol#3)
- 0.7.4 (contracts/Ownable.sol#3)
- 0.7.4 (contracts/SafeMath.sol#3)
- 0.7.4 (contracts/Token.sol#2)
- 0.7.4 (contracts/Uniswap.sol#2)
Use one Solidity version.
Additional information: link
SafeMath.tryDiv(uint256,uint256) (contracts/SafeMath.sol#60-63) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (contracts/SafeMath.sol#70-73) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (contracts/SafeMath.sol#24-28) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/SafeMath.sol#210-213) is never used and should be removed
SafeMath.div(uint256,uint256,string) (contracts/SafeMath.sol#190-193) is never used and should be removed
ERC20._setupDecimals(uint8) (contracts/ERC20.sol#404-406) is never used and should be removed
Context._msgData() (contracts/Context.sol#20-23) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/SafeMath.sol#152-155) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (contracts/SafeMath.sol#45-53) is never used and should be removed
SafeMath.trySub(uint256,uint256) (contracts/SafeMath.sol#35-38) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.7.4 (contracts/ERC20.sol#3) allows old versions
solc-0.7.4 is not recommended for deployment
Pragma version0.7.4 (contracts/Context.sol#3) allows old versions
Pragma version0.7.4 (contracts/Token.sol#2) allows old versions
Pragma version0.7.4 (contracts/Ownable.sol#3) allows old versions
Pragma version0.7.4 (contracts/Uniswap.sol#2) allows old versions
Pragma version0.7.4 (contracts/IERC20.sol#3) allows old versions
Pragma version0.7.4 (contracts/SafeMath.sol#3) 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
Variable ERC20._feeTransfer (contracts/ERC20.sol#58) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/Uniswap.sol#69) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/Uniswap.sol#99) is not in mixedCase
Parameter ERC20.setAntiBot(bool)._enable (contracts/ERC20.sol#496) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (contracts/Uniswap.sol#67) is not in mixedCase
Parameter ERC20.enableMint(bool)._pmintable (contracts/ERC20.sol#443) is not in mixedCase
Variable ERC20._feeWallet (contracts/ERC20.sol#60) is not in mixedCase
Parameter ERC20.setSwapWhiteList(bool)._enable (contracts/ERC20.sol#500) is not in mixedCase
Function IUniswapV2Router01.WETH() (contracts/Uniswap.sol#143) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (contracts/Context.sol#21)" inContext (contracts/Context.sol#15-25)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/Uniswap.sol#148) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/Uniswap.sol#149)
Prevent variables from having similar names.
Additional information: link
Token.maxSupply (contracts/Token.sol#10) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (contracts/ERC20.sol#211-238)
modifyWhiteListPool(address[],address[]) should be declared external:
- ERC20.modifyWhiteListPool(address[],address[]) (contracts/ERC20.sol#539-549)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/Ownable.sol#56-59)
isExcludedToFee(address) should be declared external:
- ERC20.isExcludedToFee(address) (contracts/ERC20.sol#476-478)
enableMint(bool) should be declared external:
- ERC20.enableMint(bool) (contracts/ERC20.sol#443-446)
isExcludedFromFee(address) should be declared external:
- ERC20.isExcludedFromFee(address) (contracts/ERC20.sol#460-462)
changeFee(uint256) should be declared external:
- ERC20.changeFee(uint256) (contracts/ERC20.sol#535-537)
decimals() should be declared external:
- ERC20.decimals() (contracts/ERC20.sol#110-112)
modifyWhiteListReceiver(address[],address[]) should be declared external:
- ERC20.modifyWhiteListReceiver(address[],address[]) (contracts/ERC20.sol#464-474)
burn(uint256) should be declared external:
- Token.burn(uint256) (contracts/Token.sol#27-29)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (contracts/ERC20.sol#279-293)
symbol() should be declared external:
- ERC20.symbol() (contracts/ERC20.sol#93-95)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (contracts/ERC20.sol#124-132)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (contracts/ERC20.sol#142-166)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (contracts/ERC20.sol#252-263)
mint(uint256) should be declared external:
- ERC20.mint(uint256) (contracts/ERC20.sol#437-441)
modifyBlackList(address[],address[]) should be declared external:
- ERC20.modifyBlackList(address[],address[]) (contracts/ERC20.sol#480-490)
changeFeeWallet(address) should be declared external:
- ERC20.changeFeeWallet(address) (contracts/ERC20.sol#531-533)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/Ownable.sol#65-69)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (contracts/Ownable.sol#71-73)
name() should be declared external:
- ERC20.name() (contracts/ERC20.sol#85-87)
isExcludedFromPool(address) should be declared external:
- ERC20.isExcludedFromPool(address) (contracts/ERC20.sol#551-553)
modifyWhiteListBot(address[],address[]) should be declared external:
- ERC20.modifyWhiteListBot(address[],address[]) (contracts/ERC20.sol#515-525)
modifyWhiteListSender(address[],address[]) should be declared external:
- ERC20.modifyWhiteListSender(address[],address[]) (contracts/ERC20.sol#448-458)
unlock() should be declared external:
- Ownable.unlock() (contracts/Ownable.sol#84-89)
totalSupply() should be declared external:
- ERC20.totalSupply() (contracts/ERC20.sol#117-119)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (contracts/ERC20.sol#188-196)
isBlackList(address) should be declared external:
- ERC20.isBlackList(address) (contracts/ERC20.sol#492-494)
transferToken(address,uint256,address) should be declared external:
- ERC20.transferToken(address,uint256,address) (contracts/ERC20.sol#504-513)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (contracts/Ownable.sol#76-81)
isExcludedFromBot(address) should be declared external:
- ERC20.isExcludedFromBot(address) (contracts/ERC20.sol#527-529)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (contracts/ERC20.sol#171-179)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity 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 30d PancakeSwap volume is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Contract has 1% buy tax and 1% sell tax.
Taxes are low and contract ownership is renounced.
Unable to find Youtube account