MEXI Token Logo

MEXI Token

About MEXI

Listings

Token 2 years
white paper

The next-gen metaverse, allows your NFTs to travel through Play-to-Earn multi-chain games.

Social

Laser Scorebeta Last Audit: 23 December 2021

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Anti-Scam

Links


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

BEP20.inCaseTokensGetStuck(IERC20) (contracts/BEP20.sol#315-319) ignores return value by _token.transfer(msg.sender,amount) (contracts/BEP20.sol#318)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

BEP20.init(address) (contracts/BEP20.sol#63-67) ignores return value by IERC20(this).approve(_tokenomics,MAX_SUPPLY) (contracts/BEP20.sol#65)
Ensure that all the return values of the function calls are used.

Additional information: link

BEP20.allowance(address,address).owner (contracts/BEP20.sol#126) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#34-36) (function)
BEP20._approve(address,address,uint256).owner (contracts/BEP20.sol#300) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#34-36) (function)
Rename the local variables that shadow another component.

Additional information: link

BEP20.getChainId() (contracts/BEP20.sol#310-314) uses assembly
- INLINE ASM (contracts/BEP20.sol#312)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.8.9', '^0.8.0']
- ^0.8.0 (@openzeppelin/contracts/access/Ownable.sol#3)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#3)
- ^0.8.0 (@openzeppelin/contracts/utils/Context.sol#3)
- ^0.8.0 (@openzeppelin/contracts/utils/math/safeMath.sol#3)
- 0.8.9 (contracts/BEP20.sol#3)
Use one Solidity version.

Additional information: link

BEP20.getChainId() (contracts/BEP20.sol#310-314) is never used and should be removed
Context._msgData() (@openzeppelin/contracts/utils/Context.sol#20-22) is never used and should be removed
SafeMath.div(uint256,uint256) (@openzeppelin/contracts/utils/math/safeMath.sol#134-136) is never used and should be removed
SafeMath.div(uint256,uint256,string) (@openzeppelin/contracts/utils/math/safeMath.sol#190-199) is never used and should be removed
SafeMath.mod(uint256,uint256) (@openzeppelin/contracts/utils/math/safeMath.sol#150-152) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@openzeppelin/contracts/utils/math/safeMath.sol#216-225) is never used and should be removed
SafeMath.mul(uint256,uint256) (@openzeppelin/contracts/utils/math/safeMath.sol#120-122) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (@openzeppelin/contracts/utils/math/safeMath.sol#21-27) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (@openzeppelin/contracts/utils/math/safeMath.sol#63-68) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (@openzeppelin/contracts/utils/math/safeMath.sol#75-80) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (@openzeppelin/contracts/utils/math/safeMath.sol#46-56) is never used and should be removed
SafeMath.trySub(uint256,uint256) (@openzeppelin/contracts/utils/math/safeMath.sol#34-39) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (@openzeppelin/contracts/access/Ownable.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/Context.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/math/safeMath.sol#3) allows old versions
Pragma version0.8.9 (contracts/BEP20.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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 BEP20.init(address)._tokenomics (contracts/BEP20.sol#63) is not in mixedCase
Parameter BEP20.burn(uint256)._amount (contracts/BEP20.sol#220) is not in mixedCase
Parameter BEP20.inCaseTokensGetStuck(IERC20)._token (contracts/BEP20.sol#315) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (@openzeppelin/contracts/access/Ownable.sol#53-55)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (@openzeppelin/contracts/access/Ownable.sol#61-64)
init(address) should be declared external:
- BEP20.init(address) (contracts/BEP20.sol#63-67)
name() should be declared external:
- BEP20.name() (contracts/BEP20.sol#78-80)
decimals() should be declared external:
- BEP20.decimals() (contracts/BEP20.sol#85-87)
symbol() should be declared external:
- BEP20.symbol() (contracts/BEP20.sol#92-94)
balanceOf(address) should be declared external:
- BEP20.balanceOf(address) (contracts/BEP20.sol#106-108)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (contracts/BEP20.sol#118-121)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (contracts/BEP20.sol#126-128)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (contracts/BEP20.sol#137-140)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (contracts/BEP20.sol#154-166)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (contracts/BEP20.sol#180-183)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (contracts/BEP20.sol#199-206)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (contracts/BEP20.sol#216-219)
burn(uint256) should be declared external:
- BEP20.burn(uint256) (contracts/BEP20.sol#220-222)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


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


BscScan page for the token does not contain additional info: website, socials, description, etc.

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 Telegram link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of scam / 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 MEXI

News for MEXI