46
2021.03.31
In the TRONWIX 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 TRONWIX Smart-Contract is safe for use in the Tron 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): 0
Methods to decrease the cost of transactions in Smart-Contract.
RECOMMENDATIONS (very low severity): 1
Hint and tips to improve contract functionality and trustworthy.
1- Loop on the dynamic variable (low severity).
If the user gets more parallel deposits his withdraw transaction going to cost more transaction fee, because the loop on the dynamic variable is used in the ‘withdraw’ function.
In case of exceeding TRON limit of 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 TRONWIX smart-contract provides the opportunity to invest at least 50 TRX in the contract and get a 122%-222% return on investment if the contract balance has enough funds for payment.
Contract Owners Fee
THREE INVESTMENT PLANS
Plan | min | max | Condition | daily | Days |
1 | 50 | 10,000 | Only one active deposit | 1.5% | 15 |
2 | 10,000 | 100,000 | Only one active deposit | 2.5% | 25 |
3 | 100,000 | No limits | No limits | 3.5% | 35 |
Referral System (Direct Bonus)
This contract paid 8% referrals in three-level.
Referral System Turnover
Turnover | 20k | 60k | 300k | 600k | 1.2m | 6m | 12m | 18m | 25m |
Referral Level 1 | 6% | 7% | 8% | 10% | 12% | 14% | 16% | 18% | 20% |
Turnover: calculated based on total user referrals deposit amount
Notes:
Withdraw System
Based on the withdraw function user can withdraw their dividends during the plan but can not withdraw their capital investment until the plan finished
function() external payable {
if (msg.value == 0) {
withdraw();
} else {
invest(0, 6666); //default to buy plan 0
}
}
If a user sends 0 amount to contract directly withdraw function will be called and if send any amount default invest will be called