ETH Price: $3,719.26 (-0.51%)

Transaction Decoder

Block:
3686045 at May-11-2017 01:33:53 AM +UTC
Transaction Fee:
0.000363923 ETH $1.35
Gas Used:
51,989 Gas / 7 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x0D82eDd2...fEaCC9017
0.1 Eth
Nonce: 0
0.099636077 Eth
Nonce: 1
0.000363923
(MiningPoolHub: Old Address)
8,250.638035547110064225 Eth8,250.638399470110064225 Eth0.000363923
0xcbCC0F03...A7487b908

Execution Trace

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