ETH Price: $3,622.55 (+1.41%)

Transaction Decoder

Block:
3685777 at May-11-2017 12:28:00 AM +UTC
Transaction Fee:
0.00074362 ETH $2.69
Gas Used:
37,181 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0xcbCC0F03...A7487b908
0xD94eeC45...eaeb6a8fc
0.2 Eth
Nonce: 0
0.19925638 Eth
Nonce: 1
0.00074362
(Ethermine)
359.345508953114025469 Eth359.346252573114025469 Eth0.00074362

Execution Trace

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