Transaction Hash:
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:
25 |
WLLToken.Transfer( from=[Sender] 0x4c615ee70d5cff6e98551e485a22cff31a4e948c, to=0x7ba64B693FF047FBDdf529D00eF1470891E5b8B3, value=12100000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4C615ee7...31a4E948c |
3.5971567839138764 Eth
Nonce: 87
|
3.595483566128905136 Eth
Nonce: 88
| 0.001673217784971264 | ||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 5,682.07522603184194775 Eth | 5,682.076899249626919014 Eth | 0.001673217784971264 | |
0x889930aD...6Ab70e8c6 |
Execution Trace
WLLToken.transfer( _to=0x7ba64B693FF047FBDdf529D00eF1470891E5b8B3, _value=12100000000000000000000 )
transfer[WLLToken (ln:24)]
revert[WLLToken (ln:27)]
Transfer[WLLToken (ln:32)]
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 } }