127
2021.07.06
In the TronQuest 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, TronQuest Smart-Contract is safe for use in the Tron Blockchain 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.
Optimization suggestions
Loop on the dynamic variable (low severity).
If the user gets more parallel deposits his withdrawal transaction going to cost more transaction fee because the loop on the dynamic variable is used in the ‘withdraw’ function.
In case exceeding the 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 200).
The TRONQUEST smart contract provides the opportunity to invest at least 100 TRX in the contract and get a 250% return if the contract balance has enough funds for payment.
Launch Date: Sun Jul 04 2021 10:00:00 GMT+0000
Contract Owners Fee
PROJECT: 9%
DEV: 1%
INVESTMENT PLANS
250% return on every investment. The basic interest rate of 1.5% daily and plenty of diverse bonuses.
Notes:
Basic interest
The basic interest of the contract is 1.5% every 24 hours
Hold Bonus
Users can get an extra 0.05% daily every 24h if you did not withdraw.
Contract Bonus
Each 1,000,000 TRX contract balance will give all users 0.1% daily.
Referral System (Match Bonus)
This contract pays a 15% direct referral commission in 5 levels
Notes:
Refback Feature
Users can use this function to return from 0% to 100% of their referral amount to the user who has invested with his referral code.
Leader Bonus
This contract paid a bonus based on total investment:
Total Investment (TRX) | >10,000 | >20,000 | >50,000 | >100,000 | >500,000 | >1,000,000 | >5,000,000 |
Bonus (%) | 0.1 | 0.3 | 0.5 | 0.7 | 1 | 1.3 | 1.5 |
Prize (TRX) | 200 | 400 | 1000 | 2,000 | 10,000 | 35,000 | 130,000 |
Referral Number Bonus
This contract paid a bonus based on total referral level 1 number:
Total Investment (TRX) | >25 | >50 | >100 | >250 | >500 | >1000 |
Bonus (%) | 0.1 | 0.25 | 0.5 | 0.75 | 1 | 1.5 |
Maximum Daily Profit
A user can get a 10% daily profit at maximum.
Withdraw Limit
A user can withdraw only once a day and maximum 50% of total active deposits.
Notes :
uint256 mils = address(this).balance.div(CONTRACT_BALANCE_STEP);
if (mils > lastMil) { /// 1 per every 1 mil
users[getUserById(1)].bonus = users[getUserById(1)].bonus.add((mils.sub(lastMil)).mul(CONTRACT_BALANCE_STEP.div(100)));
lastMil = mils;
}
According to the above codes, with the increase of each 1 million contract balance, 10,000 TRX will be paid to the first user of the contract, who is the owner.