ETH Price: $4,635.17 (+7.52%)

Transaction Decoder

Block:
3681500 at May-10-2017 06:22:41 AM +UTC
Transaction Fee:
0.00051009 ETH $2.36
Gas Used:
24,290 Gas / 21 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x47E9cFa8...f01d225e1
0.212549939 Eth
Nonce: 2
0.212039849 Eth
Nonce: 3
0.00051009
(Ethpool 2)
273.99136707386947314 Eth273.99187716386947314 Eth0.00051009

Execution Trace

HumaniqToken.transfer( _to=0xE347cF07af725950b5E648611DB45Eff315ccA15, _value=6946800000000 ) => ( success=False )
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