ETH Price: $3,746.79 (+1.12%)

Transaction Decoder

Block:
3683647 at May-10-2017 03:33:27 PM +UTC
Transaction Fee:
0.005585339 ETH $20.93
Gas Used:
36,989 Gas / 151 Gwei

Account State Difference:

  Address   Before After State Difference Code
(ethfans.org)
1,623.667528555974274886 Eth1,623.673113894974274886 Eth0.005585339
0x23D4A954...ba71FB3eB
0.081157442 Eth
Nonce: 4
0.075572103 Eth
Nonce: 5
0.005585339

Execution Trace

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