ETH Price: $3,564.28 (+0.22%)

Transaction Decoder

Block:
3683319 at May-10-2017 02:11:03 PM +UTC
Transaction Fee:
0.0004858 ETH $1.73
Gas Used:
24,290 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x2D4a2D46...34183B69D
0.037596694 Eth
Nonce: 5
0.037110894 Eth
Nonce: 6
0.0004858
(Ethermine)
392.639280736810257241 Eth392.639766536810257241 Eth0.0004858

Execution Trace

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