66
2021.05.07
In the MoonBank Smart-Contract were found no vulnerabilities, no backdoors, and no scam scripts.
The code was tested with compatible compilers and simulate manually reviewed for all commonly known and specific vulnerabilities.
So MoonBank Smart-Contract is safe for use in the Binance Smart Chain main network.
CRITICAL ISSUES (critical, high severity): 0
Critical and harmful access for owners, user block ability, Bugs and vulnerabilities that enable theft of funds, lock access to funds without possibility to restore it, or lead to any other loss of funds to be transferred to any party.
ERRORS, BUGS AND WARNINGS (medium, low severity): 0
Bugs can negatively affect the usability of a program, errors that can trigger a contract failure, Lack of necessary security precautions, other warnings for owners and users, warning codes that are valid code but the compiler thinks are suspicious.
OPTIMIZATION (low severity): 1
Methods to decrease the cost of transactions in Smart-Contract.
RECOMMENDATIONS (very low severity): 0
Hint and tips to improve contract functionality and trustworthiness
1- Loop on the dynamic variable (low severity).
If the user gets more parallel deposits his withdrawal transaction fee will cost more transaction fees because the loop on the dynamic variable is used in the ‘withdraw’ function.
In case of the GAS limit of exceeding the size of transaction withdraw is not possible.
Note:
This comment is relevant only if a user creates an excessive number of parallel deposits (more than 100).
The MOONBANK smart contract provides the opportunity to invest any amount in BNB (from 0.01 BNB) in the contract and get a 120% to unlimited return on investment in 4 different plans if the contract balance has enough funds for payment.
Contract Owners Fee
DEVELOPER: 5%
MARKETING: 5%
FOUR INVESTMENT PLANS
Plans | Total Return | Days | Daily Profit |
1 | unlimited | forever | 3.7% |
2 | 211.5% | 45 | 4.7% |
3 | 142.5% | 25 | 5.7% |
4 | 120.6% | 18 | 6.7% |
Notes:
Referral System (Match Bonus)
This contract pays a 10% referral commission over 5 levels
Notes:
Notes and Hints:
receive() external payable {
if (msg.value == 0) {
withdraw();
} else {
invest(0, 0); //default to buy plan 0, no referrer
}
}