|
Trony
Added: Oct 30,2020 15:02
Closed: Dec 07,2020
|
Payment systems:
|
Features:

|
|
|
Plans: BASIC INTEREST RATE: 2.0% EVERY 24 HOURS (+0.0832% HOURLY)
Min deposit: $100 TRX
Max deposit: $∞
Referral: 5% - 2% - 1%
Withdrawal: Instant
|
0.0
|
|
998 views [2 clicks]
Reviews: 000
|
Domain: |
trony.cc is registered for a 1 year
by Danesco Trading Ltd. [from Oct 14,2020 to Oct 14,2021]
|
Dedicated server IP: 193.233.63.251 There are 1 domain hosted on this server.
|
SSL
valid from Oct 25, 2020
to Oct 25, 2021 - Sectigo Limited
|
Similar content found in 10 HYIPs |
|
Smart-contract calculates hold-bonus from your deposit. After 24 hours +0.1%, after 48 hours +0.2% and so on.
The text above is found on the main page of the folowing websites:
swissex.me, tronstore.net
Total: 2 HYIP
|
Smart-contract check its current balance and charge an additional +0.1% up to your earnings for every 1,000,000 TRX on balance.
The text above is found on the main page of the folowing websites:
swissex.me, tronstore.net
Total: 2 HYIP
|
SEND TRX TO OUR SMART-CONTRACT Deposit any amount of TRX to the smart contract and start making profits. The minimum deposit amount is 100 TRX. There is no maximum limit.
The text above is found on the main page of the folowing websites:
troncapital.net
Total: 1 HYIP
|
Request withdraw from the same wallet you deposited.
The text above is found on the main page of the folowing websites:
swissex.me, tronprom.com, tronstore.net, tronguru.com, trondrip.com
Total: 5 HYIP
|
All your wallet deposits and referral earnings will be withdrawn with single transaction per 1 request
The text above is found on the main page of the folowing websites:
swissex.me, tronprom.com, tronstore.net
Total: 3 HYIP
|
pragma solidity 0.5.10; contract Trony { using SafeMath for uint256; uint256 constant public INVEST_MIN_AMOUNT = 100 trx; uint256 constant public BASE_PERCENT = 20; uint256[] public REFERRAL_PERCENTS = [50, 20, 10]; uint256 constant public MARKETING_FEE = 90; uint256 constant public PROJECT_FEE = 30; uint256 constant public PERCENTS_DIVIDER = 1000; uint256 constant public CONTRACT_BALANCE_STEP = 1000000 trx; uint256 constant public TIME_STEP = 1 days; uint256 public totalUsers; uint256 public totalInvested; uint256 public totalWithdrawn; uint256 public totalDeposits; address payable public marketingAddress; address payable public projectAddress; address public defaultReferrer; struct Deposit { uint256 amount; uint256 withdrawn; uint256 start; } struct User { Deposit[] deposits; uint256 checkpoint; address referrer; uint256 level1; uint256 level2; uint256 level3; uint256 bonus; uint256 withdrawRef; } mapping (address => User) internal users; uint256 internal contractBalancePercent; event Newbie(address user); event NewDeposit(address indexed user, uint256 amount); event Withdrawn(address indexed user, uint256 amount); event RefBonus(address indexed referrer, address indexed referral, uint256 indexed level, uint256 amount); event FeePayed(address indexed user, uint256 totalAmount); constructor(address payable marketingAddr, address payable projectAddr, address defaultRef) public { require(!isContract(marketingAddr) && !isContract(projectAddr)); marketingAddress = marketingAddr; projectAddress = projectAddr; defaultReferrer = defaultRef; } function invest(address referrer) public payable { require(msg.value >= INVEST_MIN_AMOUNT); marketingAddress.transfer(msg.value.mul(MARKETING_FEE).div(PERCENTS_DIVIDER)); projectAddress.transfer(msg.value.mul(PROJECT_FEE).div(PERCENTS_DIVIDER)); emit FeePayed(msg.sender, msg.value.mul(MARKETING_FEE.add(PROJECT_FEE)).div(PERCENTS_DIVIDER)); User storage user = users[msg.sender]; if (user.referrer == address(0)) { if (users[referrer].deposits.length > 0 && referrer != msg.sender) { user.referrer = referrer; } else if (msg.sender != defaultReferrer) { user.referrer = defaultReferrer; } address upline = user.referrer; for (uint256 i = 0; i < 3; i++) { if (upline != address(0)) { if (i == 0) { users[upline].level1 = users[upline].level1.add(1); } else if (i == 1) { users[upline].level2 = users[upline].level2.add(1); } else if (i == 2) { users[upline].level3 = users[upline].level3.add(1); } upline = users[upline].referrer; } else break; } } if (user.referrer != address(0)) { address upline = user.referrer; for (uint256 i = 0; i < 3; i++) { if (upline != address(0)) { uint256 amount = msg.value.mul(REFERRAL_PERCENTS[i]).div(PERCENTS_DIVIDER); users[upline].bonus = users[upline].bonus.add(amount); emit RefBonus(upline, msg.sender, i, amount); upline = users[upline].referrer; } else break; } } if (user.deposits.length == 0) { user.checkpoint = block.timestamp; totalUsers = totalUsers.add(1); emit Newbie(msg.sender); } user.deposits.push(Deposit(msg.value, 0, block.timestamp)); totalInvested = totalInvested.add(msg.value); totalDeposits = totalDeposits.add(1); emit NewDeposit(msg.sender, msg.value); uint256 newPercent = address(this).balance.div(CONTRACT_BALANCE_STEP); if (newPercent > contractBalancePercent && contractBalancePercent < 100) { if (newPercent > 100) { newPercent = 100; } contractBalancePercent = newPercent; } } function withdraw() public { User storage user = users[msg.sender]; uint256 userPercentRate = getUserPercentRate(msg.sender); uint256 totalAmount; uint256 dividends; for (uint256 i = 0; i < user.deposits.length; i++) { if (user.deposits[i].withdrawn < user.deposits[i].amount.mul(2)) { if (user.deposits[i].start > user.checkpoint) { dividends = (user.deposits[i].amount.mul(userPercentRate).div(PERCENTS_DIVIDER)) .mul(block.timestamp.sub(user.deposits[i].start)) .div(TIME_STEP); } else { dividends = (user.deposits[i].amount.mul(userPercentRate).div(PERCENTS_DIVIDER)) .mul(block.timestamp.sub(user.checkpoint)) .div(TIME_STEP); } if (user.deposits[i].withdrawn.add(dividends) > user.deposits[i].amount.mul(2)) { dividends = (user.deposits[i].amount.mul(2)).sub(user.deposits[i].withdrawn); } user.deposits[i].withdrawn = user.deposits[i].withdrawn.add(dividends); /// changing of storage data totalAmount = totalAmount.add(dividends); } } uint256 referralBonus = getUserReferralBonus(msg.sender); if (referralBonus > 0) { totalAmount = totalAmount.add(referralBonus); user.withdrawRef = user.withdrawRef.add(referralBonus); user.bonus = 0; } require(totalAmount > 0, User has no dividends); uint256 contractBalance = address(this).balance; if (contractBalance < totalAmount) { totalAmount = contractBalance; } user.checkpoint = block.timestamp; msg.sender.transfer(totalAmount); totalWithdrawn = totalWithdrawn.add(totalAmount); emit Withdrawn(msg.sender, totalAmount); } function getContractBalance() public view returns (uint256) { return address(this).balance; } function getContractBalanceRate() public view returns (uint256) { return BASE_PERCENT.add(getContractBonus()); } function getContractBonus() public view returns (uint256) { return contractBalancePercent; } function getUserHoldBonus(address userAddress) public view returns (uint256) { User storage user = users[userAddress]; if (isActive(userAddress)) { uint256 holdBonus = (now.sub(user.checkpoint)).div(TIME_STEP); if (holdBonus > 80) { holdBonus = 80; } return holdBonus; } else { return 0; } } function getUserPercentRate(address userAddress) public view returns (uint256) { return getContractBalanceRate().add(getUserHoldBonus(userAddress)); } function getUserDividends(address userAddress) public view returns (uint256) { User storage user = users[userAddress]; uint256 userPercentRate = getUserPercentRate(userAddress); uint256 totalDividends; uint256 dividends; for (uint256 i = 0; i < user.deposits.length; i++) { if (user.deposits[i].withdrawn < user.deposits[i].amount.mul(2)) { if (user.deposits[i].start > user.checkpoint) { dividends = (user.deposits[i].amount.mul(userPercentRate).div(PERCENTS_DIVIDER)) .mul(block.timestamp.sub(user.deposits[i].start)) .div(TIME_STEP); } else { dividends = (user.deposits[i].amount.mul(userPercentRate).div(PERCENTS_DIVIDER)) .mul(block.timestamp.sub(user.checkpoint)) .div(TIME_STEP); } if (user.deposits[i].withdrawn.add(dividends) > user.deposits[i].amount.mul(2)) { dividends = (user.deposits[i].amount.mul(2)).sub(user.deposits[i].withdrawn); } totalDividends = totalDividends.add(dividends); /// no update of withdrawn because that is view function } } return totalDividends; } function getUserCheckpoint(address userAddress) public view returns(uint256) { return users[userAddress].checkpoint; } function getUserReferrer(address userAddress) public view returns(address) { return users[userAddress].referrer; } function getUserDownlineCount(address userAddress) public view returns(uint256, uint256, uint256) { return (users[userAddress].level1, users[userAddress].level2, users[userAddress].level3); } function getUserReferralBonus(address userAddress) public view returns(uint256) { return users[userAddress].bonus; } function getUserReferralWithdraw(address userAddress) public view returns(uint256) { return users[userAddress].withdrawRef; } function getUserAvailableBalanceForWithdrawal(address userAddress) public view returns(uint256) { return getUserReferralBonus(userAddress).add(getUserDividends(userAddress)); } function isActive(address userAddress) public view returns (bool) { User storage user = users[userAddress]; if (user.deposits.length > 0) { if (user.deposits[user.deposits.length-1].withdrawn < user.deposits[user.deposits.length-1].amount.mul(2)) { return true; } } } function getUserDepositInfo(address userAddress, uint256 index) public view returns(uint256, uint256, uint256) { User storage user = users[userAddress]; return (user.deposits[index].amount, user.deposits[index].withdrawn, user.deposits[index].start); } function getUserAmountOfDeposits(address userAddress) public view returns(uint256) { return users[userAddress].deposits.length; } function getUserTotalDeposits(address userAddress) public view returns(uint256) { User storage user = users[userAddress]; uint256 amount; for (uint256 i = 0; i < user.deposits.length; i++) { amount = amount.add(user.deposits[i].amount); } return amount; } function getUserTotalWithdrawn(address userAddress) public view returns(uint256) { User storage user = users[userAddress]; uint256 amount; for (uint256 i = 0; i < user.deposits.length; i++) { amount = amount.add(user.deposits[i].withdrawn); } return amount; } function isContract(address addr) internal view returns (bool) { uint size; assembly { size := extcodesize(addr) } return size > 0; } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, SafeMath: addition overflow); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, SafeMath: subtraction overflow); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, SafeMath: multiplication overflow); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, SafeMath: division by zero); uint256 c = a / b; return c; } }
The text above is found on the main page of the folowing websites:
swissex.me, tronprom.com, tronstore.net
Total: 3 HYIP
|
Your deposit will be activated after
The text above is found on the main page of the folowing websites:
aimbtc.com, cryptobit.me, toptrade.cc, speedbit.io, swissex.me, tronprom.com, tronstore.net, tronguru.com, trondrip.com
Total: 9 HYIP
|
Earnings comes every moment on your wallet balance, you can withdraw it any time you want
The text above is found on the main page of the folowing websites:
swissex.me, tronprom.com, tronstore.net, tronguru.com, trondrip.com
Total: 5 HYIP
|
TRON (TRX) - one of the largest blockchain-based operating systems in the world, consistently handles 2000 transactions per second. Also, TRX is one of the most popular cryptocurrency coin with ~$1.12b market cup.
The text above is found on the main page of the folowing websites:
swissex.me, tronstore.net
Total: 2 HYIP
|
You can easily get TRX on every popular exchangers like , , , and many others. After exchange send TRX on your personal wallet and after that send it to our smart-contract address.
The text above is found on the main page of the folowing websites:
swissex.me, tronstore.net
Total: 2 HYIP
|
IMPORTANT! We are working only with personal wallets. Dont make deposits form exchangers accounts, you will lose funds, because payouts will come to exchanger address, not yours!
The text above is found on the main page of the folowing websites:
swissex.me, tronstore.net
Total: 2 HYIP
|
What TRX personal wallets to use?
The text above is found on the main page of the folowing websites:
swissex.me, tronstore.net
Total: 2 HYIP
|
You can use two types of wallets:
The text above is found on the main page of the folowing websites:
swissex.me, tronprom.com, tronstore.net, tronguru.com, trondrip.com
Total: 5 HYIP
|
- Browser extensions. For example TronLink / TronPay. Just install extension on your favorite browser and create personal wallet address.
The text above is found on the main page of the folowing websites:
swissex.me, tronstore.net
Total: 2 HYIP
|
- Mobile crypto wallets. You can use any personal crypto wallet, which support TRX cryptocurrency and TRON dapps technology, for example: , and others.
The text above is found on the main page of the folowing websites:
swissex.me, tronstore.net
Total: 2 HYIP
|
Click Withdraw button, and you will get instantly all your deposits earnings and affiliate bonuses with a single transaction. Your personal hold-bonus will be reseted.
The text above is found on the main page of the folowing websites:
swissex.me, tronstore.net
Total: 2 HYIP
|
|
# |
project name hostname |
payouts |
statuses closed after |
|
IP SSL |
started closed |
 |
Swissex.me
|
200% ROI |
2
7 days |
 |
172.67.149.249
SSL |
Oct 05,2020
Oct 15,2020 |
 |
Tronprom
|
5% daily until 250% ROI (Hourly accruals) |
2
21 days |
 |
172.67.150.193
SSL |
Oct 07,2020
Oct 29,2020 |
 |
Toptrade
|
10%-15%-20%-30% Hourly for 12 Hours |
4
9 days |
|
104.27.184.42
SSL |
Sep 10,2019
Sep 20,2019 |
 |
Tronguru Ltd
|
Up to 4% daily ( from which 1% Is Total Hold Bonus and 3% Daily Profit. Contract starts with 2% Daily) until 150% ROI ( |
2
38 days |
 |
54.38.100.154
Free SSL |
Oct 27,2020
Dec 07,2020 |
 |
Cryptobit
|
2.22 % daily for 7 days |
1
11 days |
|
186.2.161.33
SSL |
Jul 03,2017
Jul 16,2017 |
 |
Speedbit
|
0.125% Hourly ( 3% Daily ) For 60 Days |
2
34 days |
 |
52.178.73.83
Free SSL |
May 18,2020
Jun 22,2020 |
 |
Trondrip
|
6% - 15% daily till 260% roi (hourly accruals) |
2
6 days |
 |
54.38.100.146
Free SSL |
Nov 03,2020
Nov 12,2020 |
 |
Tron Capital
|
Get +200% of INCOME in addition to your deposit in 60 days |
|
 |
104.18.40.5
SSL |
Nov 04,2020
|
 |
Aim Btc
|
Plan: 0.12% per hour Deposit back anytime |
1
135 days |
|
104.27.182.39
|
Jul 28,2016
Dec 09,2016 |
 |
Tronstore Ltd
|
0.0416% hourly until 200% profit (Profit Accrued Every Second) |
|
 |
172.67.157.77
SSL |
Oct 19,2020
|
|
|
Latest Events
|
|
 |
|
|
 |
Ramonainv
Sqmonitor 4 hours ago
added |
paying
|
|
 |
Ramonainv
Hyipcruiser 5 hours ago
added |
paying
|
|
 |
Aitimart
Fairmonitor 7 hours ago
changed |
paying »
waiting
|
|
 |
Tradinghyips 11 hours ago
added |
paying
|
|
 |
|
|
 |
Stinbitz.net
Instantmonitor 12 hours ago
changed |
paying »
waiting
|
|
|