ETH Price: $3,787.02 (+0.43%)

Transaction Decoder

Block:
3684128 at May-10-2017 05:31:05 PM +UTC
Transaction Fee:
0.00104234 ETH $3.95
Gas Used:
52,117 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0xcbCC0F03...A7487b908
0xcC39a604...C227b5d81
122.94103573 Eth
Nonce: 14
122.93999339 Eth
Nonce: 15
0.00104234
(Ethermine)
362.636864855204904967 Eth362.637907195204904967 Eth0.00104234

Execution Trace

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