Expedite the creation of a sustainable world 3.0 & incubate the next green projects | Green DeFi+GameFi+NFTs+eCommerce
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Mirai._transferBNB(address,uint256) (Mirai.sol#87-89) sends eth to arbitrary user
Dangerous calls:
- _to.transfer(amount) (Mirai.sol#88)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Mirai._transferMIRAIToken(address,uint256) (Mirai.sol#90-92) ignores return value by ERC20(address(this)).transfer(_to,amount) (Mirai.sol#91)
Mirai._transferAllTokensContracts(ERC20,address,uint256) (Mirai.sol#93-95) ignores return value by _token.transfer(_to,amount) (Mirai.sol#94)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Context._msgData() (Context.sol#20-23) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#44-47) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#49-53) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (Context.sol#3) allows old versions
Pragma version^0.8.0 (ERC20.sol#3) allows old versions
Pragma version^0.8.0 (IERC20.sol#3) allows old versions
Pragma version^0.8.0 (IERC20Metadata.sol#3) allows old versions
Pragma version0.8.0 (Mirai.sol#3) allows old versions
Pragma version0.8.0 (MultiManager.sol#3) allows old versions
Pragma version0.8.0 (SafeMath.sol#3) allows old versions
solc-0.8.0 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
ERC20._updateListHistory(uint256,uint256).nV (ERC20.sol#159) 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
Mirai.constructor(address).developers (Mirai.sol#24) lacks a zero-check on :
- _developers = developers (Mirai.sol#36)
Mirai._transferBNB(address,uint256)._to (Mirai.sol#87) lacks a zero-check on :
- _to.transfer(amount) (Mirai.sol#88)
Check that the address is not zero.
Additional information: link
Mirai.burn() (Mirai.sol#43-49) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= (_deployTimeStamp + 86400),Burn date not reached) (Mirai.sol#44)
Avoid relying on block.timestamp.
Additional information: link
Different versions of Solidity is used:
- Version used: ['0.8.0', '^0.8.0']
- ^0.8.0 (Context.sol#3)
- ^0.8.0 (ERC20.sol#3)
- ^0.8.0 (IERC20.sol#3)
- ^0.8.0 (IERC20Metadata.sol#3)
- 0.8.0 (Mirai.sol#3)
- 0.8.0 (MultiManager.sol#3)
- 0.8.0 (SafeMath.sol#3)
Use one Solidity version.
Additional information: link
Multimanager.deleteManager(address) (MultiManager.sol#29-51) has costly operations inside a loop:
- delete managersArray[i] (MultiManager.sol#46)
Use a local variable to hold the loop computation result.
Additional information: link
Variable ERC20._nonce (ERC20.sol#45) is not in mixedCase
Variable ERC20._p (ERC20.sol#47) is not in mixedCase
Variable ERC20._b (ERC20.sol#49) is not in mixedCase
Variable ERC20._listHistory (ERC20.sol#51) is not in mixedCase
Variable ERC20._du (ERC20.sol#53) is not in mixedCase
Variable ERC20._maxRedeemRecords (ERC20.sol#55) is not in mixedCase
Variable ERC20._noTransferFee (ERC20.sol#63) is not in mixedCase
Variable ERC20._developers (ERC20.sol#65) is not in mixedCase
Variable ERC20._swappingContractAddress (ERC20.sol#67) is not in mixedCase
Function Mirai._addInNoTransferFee(address) (Mirai.sol#63-67) is not in mixedCase
Function Mirai._removeInNoTransferFee(address) (Mirai.sol#68-72) is not in mixedCase
Function Mirai._claimContract() (Mirai.sol#74-77) is not in mixedCase
Function Mirai._changeRewardsMaxRecords(uint256) (Mirai.sol#80-84) is not in mixedCase
Function Mirai._transferBNB(address,uint256) (Mirai.sol#87-89) is not in mixedCase
Parameter Mirai._transferBNB(address,uint256)._to (Mirai.sol#87) is not in mixedCase
Function Mirai._transferMIRAIToken(address,uint256) (Mirai.sol#90-92) is not in mixedCase
Parameter Mirai._transferMIRAIToken(address,uint256)._to (Mirai.sol#90) is not in mixedCase
Function Mirai._transferAllTokensContracts(ERC20,address,uint256) (Mirai.sol#93-95) is not in mixedCase
Parameter Mirai._transferAllTokensContracts(ERC20,address,uint256)._token (Mirai.sol#93) is not in mixedCase
Parameter Mirai._transferAllTokensContracts(ERC20,address,uint256)._to (Mirai.sol#93) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.
Additional information: link
ERC20._transfer(address,address,uint256) (ERC20.sol#336-390) uses literals with too many digits:
- recipientAmount = amount.mul(90000000).div(100000000) (ERC20.sol#369)
ERC20._transfer(address,address,uint256) (ERC20.sol#336-390) uses literals with too many digits:
- developersAmount = amount.mul(1500000).div(100000000) (ERC20.sol#370)
ERC20._transfer(address,address,uint256) (ERC20.sol#336-390) uses literals with too many digits:
- _p = amount.mul(2000000).div(100000000) (ERC20.sol#371)
ERC20._transfer(address,address,uint256) (ERC20.sol#336-390) uses literals with too many digits:
- swap = amount.mul(4000000).div(100000000) (ERC20.sol#372)
Mirai.constructor(address) (Mirai.sol#24-40) uses literals with too many digits:
- _mint(address(this),300000000000 * (10 ** uint256(decimals()))) (Mirai.sol#30)
Mirai.constructor(address) (Mirai.sol#24-40) uses literals with too many digits:
- _mint(msg.sender,700000000000 * (10 ** uint256(decimals()))) (Mirai.sol#34)
Mirai.burn() (Mirai.sol#43-49) uses literals with too many digits:
- _burn(address(this),300000000000 * (10 ** uint256(decimals()))) (Mirai.sol#47)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Multimanager.messagesArray (MultiManager.sol#12) is never used in Mirai (Mirai.sol#10-97)
Remove unused state variables.
Additional information: link
manualClaim() should be declared external:
- ERC20.manualClaim() (ERC20.sol#106-135)
name() should be declared external:
- ERC20.name() (ERC20.sol#185-187)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#193-195)
totalSupply() should be declared external:
- ERC20.totalSupply() (ERC20.sol#217-219)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (ERC20.sol#224-226)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#236-239)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#244-246)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#255-258)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#273-281)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#295-298)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#314-320)
returnNonce() should be declared external:
- Mirai.returnNonce() (Mirai.sol#52-54)
historyClaimDifference(address) should be declared external:
- Mirai.historyClaimDifference(address) (Mirai.sol#57-60)
_transferBNB(address,uint256) should be declared external:
- Mirai._transferBNB(address,uint256) (Mirai.sol#87-89)
_transferMIRAIToken(address,uint256) should be declared external:
- Mirai._transferMIRAIToken(address,uint256) (Mirai.sol#90-92)
_transferAllTokensContracts(ERC20,address,uint256) should be declared external:
- Mirai._transferAllTokensContracts(ERC20,address,uint256) (Mirai.sol#93-95)
addManagers(address) should be declared external:
- Multimanager.addManagers(address) (MultiManager.sol#22-27)
deleteManager(address) should be declared external:
- Multimanager.deleteManager(address) (MultiManager.sol#29-51)
viewManagers() should be declared external:
- Multimanager.viewManagers() (MultiManager.sol#53-55)
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 PancakeSwap volume 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 PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Contract has 10% buy tax and 9% sell tax.
Taxes are low and contract ownership is renounced.
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
Unable to find code repository for the project
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 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
Token has relatively low CoinMarketCap rank
Unable to find Telegram account