ETH Price: $3,812.12 (+1.82%)

Transaction Decoder

Block:
3685754 at May-11-2017 12:23:39 AM +UTC
Transaction Fee:
0.00104234 ETH $3.97
Gas Used:
52,117 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x2BDFCC9d...0Fa678677
0.235566575 Eth
Nonce: 6
0.234524235 Eth
Nonce: 7
0.00104234
(Nanopool)
2,460.710179552847409034 Eth2,460.711221892847409034 Eth0.00104234
0xcbCC0F03...A7487b908

Execution Trace

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