ETH Price: $3,714.86 (+1.47%)

Transaction Decoder

Block:
3685836 at May-11-2017 12:41:37 AM +UTC
Transaction Fee:
0.00104106 ETH $3.87
Gas Used:
52,053 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0xcbCC0F03...A7487b908
(Ethermine)
428.475963919477409663 Eth428.477004979477409663 Eth0.00104106
0xEE0c8DA4...8EbCEF64B
0.01600022 Eth
Nonce: 5
0.01495916 Eth
Nonce: 6
0.00104106

Execution Trace

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