Transaction Hash:
Block:
2806769 at Dec-14-2016 12:45:58 PM +UTC
Transaction Fee:
0.001486168 ETH
$3.78
Gas Used:
36,248 Gas / 41 Gwei
Emitted Events:
0 |
Nexium.Transfer( from=[Sender] 0x09884af62d26d21442f130a1fca4915958d40e0f, to=0x7b42cb9e3a72757E9BeDd3Fc91b87a257e74dc20, value=982000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x09884aF6...958D40E0f |
0.118477584 Eth
Nonce: 2
|
0.116991416 Eth
Nonce: 3
| 0.001486168 | ||
0x45e42D65...45a9b89Bc | |||||
0x52bc44d5...b7d7bE3b5
Miner
| (Nanopool) | 1,038.296243971349984944 Eth | 1,038.297730139349984944 Eth | 0.001486168 |
Execution Trace
Nexium.transfer( _to=0x7b42cb9e3a72757E9BeDd3Fc91b87a257e74dc20, _value=982000 ) => ( success=True )
transfer[Nexium (ln:38)]
Transfer[Nexium (ln:43)]
1234567891011121314151617181920212223242526contract tokenSpender { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); }contract Nexium {/* Public variables of the token */string public name;string public symbol;uint8 public decimals;uint256 public initialSupply;address public burnAddress;/* This creates an array with all balances */mapping (address => uint) public balanceOf;mapping (address => mapping (address => uint)) public allowance;/* This generates a public event on the blockchain that will notify clients */event Transfer(address indexed from, address indexed to, uint value);event Approval(address indexed from, address indexed spender, uint value);/* Initializes contract with initial supply tokens to the creator of the contract */function Nexium() {initialSupply = 100000000000;balanceOf[msg.sender] = initialSupply; // Give the creator all initial tokens