ETH Price: $2,544.62 (+0.65%)

Transaction Decoder

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

Account State Difference:

  Address   Before After State Difference Code
0x09884aF6...958D40E0f
0.118477584 Eth
Nonce: 2
0.116991416 Eth
Nonce: 3
0.001486168
0x45e42D65...45a9b89Bc
(Nanopool)
1,038.296243971349984944 Eth1,038.297730139349984944 Eth0.001486168

Execution Trace

Nexium.transfer( _to=0x7b42cb9e3a72757E9BeDd3Fc91b87a257e74dc20, _value=982000 ) => ( success=True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
contract 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
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX