ETH Price: $3,531.35 (-0.28%)

Transaction Decoder

Block:
3682581 at May-10-2017 11:03:18 AM +UTC
Transaction Fee:
0.001091769 ETH $3.86
Gas Used:
51,989 Gas / 21 Gwei

Account State Difference:

  Address   Before After State Difference Code
0xBAeBf9B0...23e1424B4
0.03 Eth
Nonce: 0
0.028908231 Eth
Nonce: 1
0.001091769
0xcbCC0F03...A7487b908
(Ethermine)
392.259140746884929869 Eth392.260232515884929869 Eth0.001091769

Execution Trace

HumaniqToken.transfer( _to=0x7d7fF1fb596D97EBE27007E4e8B7F5F17eC10AAe, _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