Metabox is a virtual world built on the Binance Smart Chain where we can choose how we want to experience the world,a combination of NFT properties linked to yield bearing deposits on DeFi protocols.
We aim to create a high fidelity metaverse that can be accessed through a range of devices, integrated with BSC. MetaBox GAME 2.0 will use the Unreal Engine game engine We aim to enable a high degree of interactivity, physical realism, and photorealism to create amazing experiences.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
CodeToken.setGovernance(address)._governance (CodeToken.sol#39) lacks a zero-check on :
- governance = _governance (CodeToken.sol#41)
Check that the address is not zero.
Additional information: link
ERC20Detailed.constructor(string,string,uint8).name (ERC20Detailed.sol#12) shadows:
- ERC20Detailed.name() (ERC20Detailed.sol#18-20) (function)
ERC20Detailed.constructor(string,string,uint8).symbol (ERC20Detailed.sol#12) shadows:
- ERC20Detailed.symbol() (ERC20Detailed.sol#22-24) (function)
ERC20Detailed.constructor(string,string,uint8).decimals (ERC20Detailed.sol#12) shadows:
- ERC20Detailed.decimals() (ERC20Detailed.sol#26-28) (function)
Rename the local variables that shadow another component.
Additional information: link
Address.isContract(address) (Address.sol#4-10) uses assembly
- INLINE ASM (Address.sol#8)
Do not use evm assembly.
Additional information: link
Address.isContract(address) (Address.sol#4-10) is never used and should be removed
ERC20._burn(address,uint256) (ERC20.sol#70-75) is never used and should be removed
SafeERC20.callOptionalReturn(IERC20,bytes) (SafeERC20.sol#26-37) is never used and should be removed
SafeERC20.safeApprove(IERC20,address,uint256) (SafeERC20.sol#20-25) is never used and should be removed
SafeERC20.safeTransfer(IERC20,address,uint256) (SafeERC20.sol#12-14) is never used and should be removed
SafeERC20.safeTransferFrom(IERC20,address,address,uint256) (SafeERC20.sol#16-18) is never used and should be removed
SafeMath.div(uint256,uint256) (SafeMath.sol#30-32) is never used and should be removed
SafeMath.div(uint256,uint256,string) (SafeMath.sol#33-39) is never used and should be removed
SafeMath.mul(uint256,uint256) (SafeMath.sol#21-29) is never used and should be removed
SafeMath.sub(uint256,uint256) (SafeMath.sol#11-13) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in SafeERC20.callOptionalReturn(IERC20,bytes) (SafeERC20.sol#26-37):
- (success,returndata) = address(token).call(data) (SafeERC20.sol#30)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter CodeToken.setGovernance(address)._governance (CodeToken.sol#39) is not in mixedCase
Parameter CodeToken.addMinter(address)._minter (CodeToken.sol#44) is not in mixedCase
Parameter CodeToken.removeMinter(address)._minter (CodeToken.sol#49) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
CodeToken.init() (CodeToken.sol#24-32) uses literals with too many digits:
- _mint(0x73f3Faf691ABf82b91356319B744a9C9a5f67e61,450000000000000000000000000) (CodeToken.sol#26)
CodeToken.init() (CodeToken.sol#24-32) uses literals with too many digits:
- _mint(0xE5fe2ccc1fE412632C53Ba87828560aeD047Ec11,250000000000000000000000000) (CodeToken.sol#27)
CodeToken.init() (CodeToken.sol#24-32) uses literals with too many digits:
- _mint(0xD693c3F3B660B657bBA7651d1d6331744EDde485,100000000000000000000000000) (CodeToken.sol#28)
CodeToken.init() (CodeToken.sol#24-32) uses literals with too many digits:
- _mint(0x2ADc2aEA89397E99F2b9C22325f81176b42a55Da,80000000000000000000000000) (CodeToken.sol#29)
CodeToken.init() (CodeToken.sol#24-32) uses literals with too many digits:
- _mint(0x11D9fdA49aE7650E50A5e86bCD244b9DaC001426,70000000000000000000000000) (CodeToken.sol#30)
CodeToken.init() (CodeToken.sol#24-32) uses literals with too many digits:
- _mint(0x1E10C5E0cEf104413Ce78DaFd591275B14D4c1F7,50000000000000000000000000) (CodeToken.sol#31)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
init() should be declared external:
- CodeToken.init() (CodeToken.sol#24-32)
mint(address,uint256) should be declared external:
- CodeToken.mint(address,uint256) (CodeToken.sol#34-37)
setGovernance(address) should be declared external:
- CodeToken.setGovernance(address) (CodeToken.sol#39-42)
addMinter(address) should be declared external:
- CodeToken.addMinter(address) (CodeToken.sol#44-47)
removeMinter(address) should be declared external:
- CodeToken.removeMinter(address) (CodeToken.sol#49-52)
totalSupply() should be declared external:
- ERC20.totalSupply() (ERC20.sol#17-19)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (ERC20.sol#21-23)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#25-28)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#30-32)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#34-37)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#39-43)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#45-48)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#50-53)
name() should be declared external:
- ERC20Detailed.name() (ERC20Detailed.sol#18-20)
symbol() should be declared external:
- ERC20Detailed.symbol() (ERC20Detailed.sol#22-24)
decimals() should be declared external:
- ERC20Detailed.decimals() (ERC20Detailed.sol#26-28)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
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 verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
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
Unable to find code repository for the project
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of 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
Young tokens have high risks of price dump / death
Telegram account link seems to be invalid
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account