ETH Price: $3,746.44 (+0.19%)

Transaction Decoder

Block:
3683640 at May-10-2017 03:32:01 PM +UTC
Transaction Fee:
0.00104234 ETH $3.91
Gas Used:
52,117 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
(ethfans.org)
1,624.846065332152072546 Eth1,624.847107672152072546 Eth0.00104234
0x90B116c5...9839Bf2e0
0.02 Eth
Nonce: 0
0.01895766 Eth
Nonce: 1
0.00104234
0xcbCC0F03...A7487b908

Execution Trace

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