ETH Price: $3,641.67 (-2.31%)

Transaction Decoder

Block:
3679108 at May-09-2017 08:15:56 PM +UTC
Transaction Fee:
0.001094457 ETH $3.99
Gas Used:
52,117 Gas / 21 Gwei

Account State Difference:

  Address   Before After State Difference Code
(DwarfPool)
8,504.447990790636419847 Eth8,504.449085247636419847 Eth0.001094457
0xa2c9a757...76F9E7883
(Humaniq: Wallet)
35,389.043435854257763679 Eth
Nonce: 44
35,389.042341397257763679 Eth
Nonce: 45
0.001094457
0xcbCC0F03...A7487b908

Execution Trace

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