53
2021.09.08
The TronConnect 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, TronConnect 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.
1- 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 TRONCONNECT smart contract provides the opportunity to invest at least 200 TRX in the contract and get a 250% return if the contract balance has enough funds for payment.
Launch Date: Wed Sep 08 2021 15:30:00 GMT+0000
Contract Owners Fee
PROJECT: 10%
PROJECT: 7%
DEV: 3%
INVESTMENT PLANS
250% return on every investment. The basic interest rate of 4% daily and plenty of diverse bonuses.
Notes:
Basic interest
The basic interest of the contract is 4% every 24 hours
Hold Bonus
Users can get an extra 0.1% daily every 24h if you did not withdraw.
Contract Bonus
Each 250,000 TRX contract balance will give all users 0.1% daily.
Referral System (Match Bonus)
This contract pays an 11% 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 | >25,000 | >50,000 | >100,000 | >150,000 | >200,000 | >300,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) | >10 | >25 | >50 | >75 | >100 | >200 |
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 a maximum of 40% 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.