ETH Price: $3,538.88 (-4.55%)

Transaction Decoder

Block:
3676090 at May-09-2017 07:24:53 AM +UTC
Transaction Fee:
0.0005 ETH $1.77
Gas Used:
25,000 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Ethermine)
582.9716967747636598 Eth582.9721967747636598 Eth0.0005
0xEE0c8DA4...8EbCEF64B
0.01954 Eth
Nonce: 1
0.01904 Eth
Nonce: 2
0.0005

Execution Trace

HumaniqToken.transfer( _to=0xf3E1b79b74E6abfaF41F56c03B70C9B61D7c1438, _value=1000000000 )
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
pragma solidity ^0.4.6;
/**
* Math operations with safety checks
*/
contract SafeMath {
function mul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint a, uint b) internal returns (uint) {
assert(b > 0);
uint c = a / b;
assert(a == b * c + a % b);
return c;
}
function sub(uint a, uint b) internal returns (uint) {
assert(b <= a);
return a - b;
}
function add(uint a, uint b) internal returns (uint) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX