ETH Price: $3,751.31 (+0.81%)

Transaction Decoder

Block:
6114167 at Aug-09-2018 03:33:42 AM +UTC
Transaction Fee:
0.00222564 ETH $8.35
Gas Used:
37,094 Gas / 60 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0xd26114cd...edB8A0C07
0xD26A4D3C...d11d0d516
0.3082284833175887 Eth
Nonce: 192
0.3060028433175887 Eth
Nonce: 193
0.00222564
(Ethermine)
1,014.733009835110759304 Eth1,014.735235475110759304 Eth0.00222564

Execution Trace

OMGToken.transfer( _to=0x56f3C72C27FB738477025B62d9D575E8255A485C, _value=8000000000000000000 )
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.11;
/**
* Math operations with safety checks
*/
library 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); // Solidity automatically throws when dividing by 0
uint c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
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