ETH Price: $3,563.51 (+3.47%)

Transaction Decoder

Block:
3683622 at May-10-2017 03:27:37 PM +UTC
Transaction Fee:
0.00103978 ETH $3.71
Gas Used:
51,989 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
(ethfans.org)
1,619.788342209452415246 Eth1,619.789381989452415246 Eth0.00103978
0xcbCC0F03...A7487b908
0xFfCBd329...8AD283360
0.0945 Eth
Nonce: 0
0.09346022 Eth
Nonce: 1
0.00103978

Execution Trace

HumaniqToken.transfer( _to=0x1e4A36339b108D36e0Bd4aFC8Fa74740e62B6B6d, _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