ETH Price: $2,953.68 (-2.78%)
Gas: 0.81 Gwei

Transaction Decoder

Block:
3682271 at May-10-2017 09:41:42 AM +UTC
Transaction Fee:
0.000780801 ETH $2.31
Gas Used:
37,181 Gas / 21 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x041DeDfe...42151184D
391.574534925804996 Eth
Nonce: 28
391.573754124804996 Eth
Nonce: 29
0.000780801
(Nanopool)
2,437.493468233894890816 Eth2,437.494249034894890816 Eth0.000780801
0xcbCC0F03...A7487b908

Execution Trace

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