ETH Price: $3,442.88 (+1.70%)

Transaction Decoder

Block:
3681897 at May-10-2017 07:54:20 AM +UTC
Transaction Fee:
0.001091769 ETH $3.76
Gas Used:
51,989 Gas / 21 Gwei

Account State Difference:

  Address   Before After State Difference Code
(MiningPoolHub: Old Address)
8,946.201726502101618789 Eth8,946.202818271101618789 Eth0.001091769
0xcbCC0F03...A7487b908
0xd1A96849...63410BA7D
0.06616 Eth
Nonce: 0
0.065068231 Eth
Nonce: 1
0.001091769

Execution Trace

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