Transaction Hash:
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:
15 |
OMGToken.Transfer( from=[Sender] 0xd26a4d3ce34eef62a5eacc1f07b6e4ed11d0d516, to=0x56f3C72C27FB738477025B62d9D575E8255A485C, value=8000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xd26114cd...edB8A0C07 | |||||
0xD26A4D3C...d11d0d516 |
0.3082284833175887 Eth
Nonce: 192
|
0.3060028433175887 Eth
Nonce: 193
| 0.00222564 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 1,014.733009835110759304 Eth | 1,014.735235475110759304 Eth | 0.00222564 |
Execution Trace
OMGToken.transfer( _to=0x56f3C72C27FB738477025B62d9D575E8255A485C, _value=8000000000000000000 )
transfer[ERC20Basic (ln:64)]
1234567891011121314151617181920212223242526pragma 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 0uint c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn 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) {