ETH Price: $2,566.72 (+1.29%)

Transaction Decoder

Block:
3684330 at May-10-2017 06:21:07 PM +UTC
Transaction Fee:
0.00104234 ETH $2.68
Gas Used:
52,117 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0xcbCC0F03...A7487b908
(Ethermine)
401.067654454407500653 Eth401.068696794407500653 Eth0.00104234
0xFF9B4741...77385438E
0.01794022 Eth
Nonce: 2
0.01689788 Eth
Nonce: 3
0.00104234

Execution Trace

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