ETH Price: $3,080.70 (+2.67%)

Transaction Decoder

Block:
3684721 at May-10-2017 07:57:10 PM +UTC
Transaction Fee:
0.00104106 ETH $3.21
Gas Used:
52,053 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x0b2eC342...E08BfCE1D
0.49790022 Eth
Nonce: 3
0.49685916 Eth
Nonce: 4
0.00104106
(DwarfPool)
8,880.646815933110353064 Eth8,880.647856993110353064 Eth0.00104106
0xcbCC0F03...A7487b908

Execution Trace

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