ETH Price: $3,004.85 (+1.30%)
Gas: 2.7 Gwei

Transaction Decoder

Block:
3684316 at May-10-2017 06:16:07 PM +UTC
Transaction Fee:
0.00104106 ETH $3.13
Gas Used:
52,053 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Nanopool)
2,479.427479788689425908 Eth2,479.428520848689425908 Eth0.00104106
0xcbCC0F03...A7487b908
0xDB00a27D...89a7A1e8F
0.014 Eth
Nonce: 0
0.01295894 Eth
Nonce: 1
0.00104106

Execution Trace

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