ETH Price: $3,827.14 (+2.18%)

Transaction Decoder

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

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(DwarfPool)
8,839.890616846355098696 Eth8,839.891799046355098696 Eth0.0011822
0xC890B1f5...98dFA9671
9.187829798697454753 Eth
Nonce: 268
9.186647598697454753 Eth
Nonce: 269
0.0011822
0xcbCC0F03...A7487b908

Execution Trace

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