ETH Price: $2,114.21 (+1.95%)

Transaction Decoder

Block:
6400821 at Sep-26-2018 04:04:16 AM +UTC
Transaction Fee:
0.000669456 ETH $1.42
Gas Used:
74,384 Gas / 9 Gwei

Emitted Events:

67 TwelveHourTrains.Invest( investor=[Sender] 0x04b8499c04acc80165f0365c8e78c17d0d161072, amount=10000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x04B8499C...d0D161072
65.76484655302413927 Eth
Nonce: 14
55.76417709702413927 Eth
Nonce: 15
10.000669456
0x96BB9818...13f8eC76b 19.839635944933747235 Eth20.339635944933747235 Eth0.5
(Ethermine)
311.781826933592337693 Eth311.782496389592337693 Eth0.000669456
0xf00e5a59...3F981E0f1 159.413219808028065519 Eth168.913219808028065519 Eth9.5

Execution Trace

ETH 10 TwelveHourTrains.buy( _referredBy=0xe3ABD0358E96958892638bAd520a10Ad0af5305b )
  • ETH 0.5 0x96bb98183e5562913e72613c1979d0a13f8ec76b.CALL( )
    pragma solidity ^0.4.25;
    
    /**
    *
    12HourTrains - 100% each 12 hours
    https://12hourtrains.github.io/
    */
    contract TwelveHourTrains {
    
        using SafeMath for uint256;
    
        mapping(address => uint256) investments;
        mapping(address => uint256) joined;
        mapping(address => uint256) withdrawals;
        mapping(address => uint256) referrer;
    
        uint256 public step = 100;
        uint256 public minimum = 10 finney;
        uint256 public stakingRequirement = 2 ether;
        address public ownerWallet;
        address public owner;
    
        event Invest(address investor, uint256 amount);
        event Withdraw(address investor, uint256 amount);
        event Bounty(address hunter, uint256 amount);
        event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
        /**
         * @dev Сonstructor Sets the original roles of the contract
         */
    
        constructor() public {
            owner = msg.sender;
            ownerWallet = msg.sender;
        }
    
        /**
         * @dev Modifiers
         */
    
        modifier onlyOwner() {
            require(msg.sender == owner);
            _;
        }
    
        /**
         * @dev Allows current owner to transfer control of the contract to a newOwner.
         * @param newOwner The address to transfer ownership to.
         * @param newOwnerWallet The address to transfer ownership to.
         */
        function transferOwnership(address newOwner, address newOwnerWallet) public onlyOwner {
            require(newOwner != address(0));
            emit OwnershipTransferred(owner, newOwner);
            owner = newOwner;
            ownerWallet = newOwnerWallet;
        }
    
        /**
         * @dev Investments
         */
        function () public payable {
            buy(0x0);
        }
    
        function buy(address _referredBy) public payable {
            require(msg.value >= minimum);
    
            address _customerAddress = msg.sender;
    
            if(
               // is this a referred purchase?
               _referredBy != 0x0000000000000000000000000000000000000000 &&
    
               // no cheating!
               _referredBy != _customerAddress &&
    
               // does the referrer have at least X whole tokens?
               // i.e is the referrer a godly chad masternode
               investments[_referredBy] >= stakingRequirement
           ){
               // wealth redistribution
               referrer[_referredBy] = referrer[_referredBy].add(msg.value.mul(5).div(100));
           }
    
           if (investments[msg.sender] > 0){
               if (withdraw()){
                   withdrawals[msg.sender] = 0;
               }
           }
           investments[msg.sender] = investments[msg.sender].add(msg.value);
           joined[msg.sender] = block.timestamp;
           ownerWallet.transfer(msg.value.mul(5).div(100));
           emit Invest(msg.sender, msg.value);
        }
    
        /**
        * @dev Evaluate current balance
        * @param _address Address of investor
        */
        function getBalance(address _address) view public returns (uint256) {
            uint256 minutesCount = now.sub(joined[_address]).div(1 minutes);
            uint256 percent = investments[_address].mul(step).div(100);
            uint256 different = percent.mul(minutesCount).div(720);
            uint256 balance = different.sub(withdrawals[_address]);
    
            return balance;
        }
    
        /**
        * @dev Withdraw dividends from contract
        */
        function withdraw() public returns (bool){
            require(joined[msg.sender] > 0);
            uint256 balance = getBalance(msg.sender);
            if (address(this).balance > balance){
                if (balance > 0){
                    withdrawals[msg.sender] = withdrawals[msg.sender].add(balance);
                    msg.sender.transfer(balance);
                    emit Withdraw(msg.sender, balance);
                }
                return true;
            } else {
                return false;
            }
        }
    
        /**
        * @dev Bounty reward
        */
        function bounty() public {
            uint256 refBalance = checkReferral(msg.sender);
            if(refBalance >= minimum) {
                 if (address(this).balance > refBalance) {
                    referrer[msg.sender] = 0;
                    msg.sender.transfer(refBalance);
                    emit Bounty(msg.sender, refBalance);
                 }
            }
        }
    
        /**
        * @dev Gets balance of the sender address.
        * @return An uint256 representing the amount owned by the msg.sender.
        */
        function checkBalance() public view returns (uint256) {
            return getBalance(msg.sender);
        }
    
        /**
        * @dev Gets withdrawals of the specified address.
        * @param _investor The address to query the the balance of.
        * @return An uint256 representing the amount owned by the passed address.
        */
        function checkWithdrawals(address _investor) public view returns (uint256) {
            return withdrawals[_investor];
        }
    
        /**
        * @dev Gets investments of the specified address.
        * @param _investor The address to query the the balance of.
        * @return An uint256 representing the amount owned by the passed address.
        */
        function checkInvestments(address _investor) public view returns (uint256) {
            return investments[_investor];
        }
    
        /**
        * @dev Gets referrer balance of the specified address.
        * @param _hunter The address of the referrer
        * @return An uint256 representing the referral earnings.
        */
        function checkReferral(address _hunter) public view returns (uint256) {
            return referrer[_hunter];
        }
    }
    
    /**
     * @title SafeMath
     * @dev Math operations with safety checks that throw on error
     */
    library SafeMath {
        function mul(uint256 a, uint256 b) internal pure returns (uint256) {
            if (a == 0) {
                return 0;
            }
            uint256 c = a * b;
            assert(c / a == b);
            return c;
        }
    
        function div(uint256 a, uint256 b) internal pure returns (uint256) {
            // assert(b > 0); // Solidity automatically throws when dividing by 0
            uint256 c = a / b;
            // assert(a == b * c + a % b); // There is no case in which this doesn't hold
            return c;
        }
    
        function sub(uint256 a, uint256 b) internal pure returns (uint256) {
            assert(b <= a);
            return a - b;
        }
    
        function add(uint256 a, uint256 b) internal pure returns (uint256) {
            uint256 c = a + b;
            assert(c >= a);
            return c;
        }
    }