ETH Price: $4,258.79 (+1.44%)

Transaction Decoder

Block:
3680086 at May-10-2017 12:20:47 AM +UTC
Transaction Fee:
0.00104106 ETH $4.43
Gas Used:
52,053 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
(WaterholePool)
27.803752586739538317 Eth27.804793646739538317 Eth0.00104106
0xcbCC0F03...A7487b908
0xfEEfd417...767Cb089e
0.066158318 Eth
Nonce: 1
0.065117258 Eth
Nonce: 2
0.00104106

Execution Trace

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