ETH Price: $2,267.24 (-5.82%)

Transaction Decoder

Block:
5029382 at Feb-04-2018 01:11:18 PM +UTC
Transaction Fee:
0.001673217784971264 ETH $3.79
Gas Used:
51,576 Gas / 32.441790464 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x4C615ee7...31a4E948c
3.5971567839138764 Eth
Nonce: 87
3.595483566128905136 Eth
Nonce: 88
0.001673217784971264
(F2Pool Old)
5,682.07522603184194775 Eth5,682.076899249626919014 Eth0.001673217784971264
0x889930aD...6Ab70e8c6

Execution Trace

WLLToken.transfer( _to=0x7ba64B693FF047FBDdf529D00eF1470891E5b8B3, _value=12100000000000000000000 )
pragma solidity ^0.4.13;
contract WLLToken {
    
	/* Public variables of the token */
	string public name;
	string public symbol;
	uint8 public decimals;
	uint256 public totalSupply;
    
	/* This creates an array with all balances */
	mapping (address => uint256) public balanceOf;

	/* This generates a public event on the blockchain that will notify clients */
	event Transfer(address indexed from, address indexed to, uint256 value);

	function WLLToken() {
	    totalSupply = 10*(10**8)*(10**18);
		balanceOf[msg.sender] = 10*(10**8)*(10**18);              // Give the creator all initial tokens
		name = "WLLToken";                                   // Set the name for display purposes
		symbol = "WLL";                               // Set the symbol for display purposes
		decimals = 18;                            // Amount of decimals for display purposes
	}

	function transfer(address _to, uint256 _value) {
	/* Check if sender has balance and for overflows */
	if (balanceOf[msg.sender] < _value || balanceOf[_to] + _value < balanceOf[_to])
		revert();
	/* Add and subtract new balances */
	balanceOf[msg.sender] -= _value;
	balanceOf[_to] += _value;
	/* Notifiy anyone listening that this transfer took place */
	Transfer(msg.sender, _to, _value);
	}

	/* This unnamed function is called whenever someone tries to send ether to it */
	function () {
	revert();     // Prevents accidental sending of ether
	}
}