ETH Price: $3,796.03 (+1.22%)

Transaction Decoder

Block:
3684366 at May-10-2017 06:29:02 PM +UTC
Transaction Fee:
0.00074234 ETH $2.82
Gas Used:
37,117 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x78Ae1663...Eb38E5a21
0.99848937 Eth
Nonce: 20
0.99774703 Eth
Nonce: 21
0.00074234
0xcbCC0F03...A7487b908
(Ethermine)
412.394717187551653487 Eth412.395459527551653487 Eth0.00074234

Execution Trace

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