ETH Price: $3,722.40 (-1.09%)

Transaction Decoder

Block:
3681196 at May-10-2017 05:00:42 AM +UTC
Transaction Fee:
0.0004858 ETH $1.81
Gas Used:
24,290 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x97B52D02...b11AEba78
0.134112765 Eth
Nonce: 5
0.133626965 Eth
Nonce: 6
0.0004858
(MiningPoolHub: Old Address)
8,939.034692241699660048 Eth8,939.035178041699660048 Eth0.0004858

Execution Trace

HumaniqToken.transfer( _to=0x64ae4dD6C5c72a423EaB64e324431E73D9c5a6E6, _value=534828800707 ) => ( success=False )
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