ETH Price: $4,628.14 (+7.36%)

Transaction Decoder

Block:
3682184 at May-10-2017 09:15:04 AM +UTC
Transaction Fee:
0.001093113 ETH $5.06
Gas Used:
52,053 Gas / 21 Gwei

Account State Difference:

  Address   Before After State Difference Code
(ethfans.org)
1,646.002826117178284472 Eth1,646.003919230178284472 Eth0.001093113
0xcbCC0F03...A7487b908
0xcE92F383...34D8E3eb7
126.598004549728029687 Eth
Nonce: 24
126.596911436728029687 Eth
Nonce: 25
0.001093113

Execution Trace

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