ETH Price: $3,018.03 (+1.95%)

Transaction Decoder

Block:
3686640 at May-11-2017 04:10:52 AM +UTC
Transaction Fee:
0.00048 ETH $1.45
Gas Used:
24,000 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
(MiningPoolHub: Old Address)
8,325.160480790514557341 Eth8,325.160960790514557341 Eth0.00048
0xd28f9C38...0540B96Bb
0.02192 Eth
Nonce: 0
0.02144 Eth
Nonce: 1
0.00048

Execution Trace

HumaniqToken.transfer( _to=0x04607DEBcB30cBB29D5f44f6Bd97C0Cd38208728, _value=500000000000 )
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