ETH Price: $3,711.23 (+0.07%)

Transaction Decoder

Block:
3671099 at May-08-2017 10:31:40 AM +UTC
Transaction Fee:
0.0011822 ETH $4.39
Gas Used:
59,110 Gas / 20 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(DwarfPool)
8,839.900066766355098696 Eth8,839.901248966355098696 Eth0.0011822
0xC890B1f5...98dFA9671
9.178379878697454753 Eth
Nonce: 276
9.177197678697454753 Eth
Nonce: 277
0.0011822
0xcbCC0F03...A7487b908

Execution Trace

HumaniqToken.transferFrom( _from=0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF, _to=0x19FEC4bB3d856A6B7b2167eBc2f45D32ca9e8b58, _value=1120000000000 ) => ( 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