ETH Price: $3,645.45 (-2.39%)

Transaction Decoder

Block:
3677417 at May-09-2017 01:12:37 PM +UTC
Transaction Fee:
0.00073978 ETH $2.70
Gas Used:
36,989 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x07905b90...75303Db43
0.053313757940546 Eth
Nonce: 2
0.052573977940546 Eth
Nonce: 3
0.00073978
0xcbCC0F03...A7487b908
(Ethermine)
531.294042465368403887 Eth531.294782245368403887 Eth0.00073978

Execution Trace

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