261
2021.04.30
In the BNBMINER 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 BNBMINER 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): 1
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 amount of parallel deposits (more than 100).
The BNBMINER smart-contract provides the opportunity to invest any amount in BNB (from 0.05 BNB) in the contract and get a 108% to unlimited return on investment in 6 different plans if the contract balance has enough funds for payment.
Launch Date: Sat May 01 2021 14:08:56 GMT+0000
Contract Owners Fee
DEVELOPER: 5%
MARKETING: 5%
FUND: 2%
SIX INVESTMENT PLANS
Plans | Total Return | Days | Daily Profit |
1 | unlimited | forever | 4% |
2 | 140% | 10 | 14% |
3 | 169% | 13 | 13% |
4 | 126% | 7 | 18% |
5 | 114% | 3 | 38% |
6 | 108% | 2 | 54% |
Notes:
Referral System (Match Bonus)
This contract pays 9.1% referral commissions over 3 level
Notes:
Withdraw Limit:
Notes and Hints:
function() external payable {
if (msg.value == 0) {
withdraw();
} else {
invest(0, 0); //default to buy plan 0, no referrer
}
}