ETH Price: $3,738.22 (+4.83%)

Transaction Decoder

Block:
3685345 at May-10-2017 10:44:20 PM +UTC
Transaction Fee:
0.0008 ETH $2.99
Gas Used:
40,000 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x5F0bCD94...2Fb1f9de8
0.1073451 Eth
Nonce: 3
0.1065451 Eth
Nonce: 4
0.0008
(Ethermine)
360.79372206534843383 Eth360.79452206534843383 Eth0.0008

Execution Trace

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