ETH Price: $2,966.74 (-0.14%)

Transaction Decoder

Block:
3683961 at May-10-2017 04:47:53 PM +UTC
Transaction Fee:
0.00074234 ETH $2.20
Gas Used:
37,117 Gas / 20 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x18551c25...cE8b3FbE8
0.015 Eth
Nonce: 0
0.01425766 Eth
Nonce: 1
0.00074234
0xcbCC0F03...A7487b908
(Ethermine)
413.604075202244491875 Eth413.604817542244491875 Eth0.00074234

Execution Trace

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