ETH Price: $3,641.23 (-1.30%)

Transaction Decoder

Block:
3684057 at May-10-2017 05:12:53 PM +UTC
Transaction Fee:
0.00048452 ETH $1.76
Gas Used:
24,226 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x624440FF...8C1347b21
0.00847442 Eth
Nonce: 2
0.0079899 Eth
Nonce: 3
0.00048452
(MiningPoolHub: Old Address)
8,260.586876831458942879 Eth8,260.587361351458942879 Eth0.00048452

Execution Trace

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