ETH Price: $3,288.14 (+6.19%)

Transaction Decoder

Block:
3684066 at May-10-2017 05:14:52 PM +UTC
Transaction Fee:
0.00074234 ETH $2.44
Gas Used:
37,117 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
(DwarfPool)
8,818.103192179898418847 Eth8,818.103934519898418847 Eth0.00074234
0x30E232e2...AF6f1BB40
0.9888357 Eth
Nonce: 1
0.98809336 Eth
Nonce: 2
0.00074234
0xcbCC0F03...A7487b908

Execution Trace

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