ETH Price: $3,747.89 (+4.69%)

Transaction Decoder

Block:
3684839 at May-10-2017 08:28:27 PM +UTC
Transaction Fee:
0.00074362 ETH $2.79
Gas Used:
37,181 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x008985E8...c13fA4d2D
0.966377625999996 Eth
Nonce: 2
0.965634005999996 Eth
Nonce: 3
0.00074362
0xcbCC0F03...A7487b908
(Ethermine)
388.74471181966788888 Eth388.74545543966788888 Eth0.00074362

Execution Trace

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