ETH Price: $3,088.94 (+3.30%)

Transaction Decoder

Block:
3683256 at May-10-2017 01:54:58 PM +UTC
Transaction Fee:
0.00104106 ETH $3.22
Gas Used:
52,053 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x2857845C...5EB927224
0.0882366 Eth
Nonce: 2
0.08719554 Eth
Nonce: 3
0.00104106
0xcbCC0F03...A7487b908
(Icemining.io)
9.178105656640716488 Eth9.179146716640716488 Eth0.00104106

Execution Trace

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