Transaction Hash:
Block:
5919977 at Jul-07-2018 05:49:28 AM +UTC
Transaction Fee:
0.0984647 ETH
$299.43
Gas Used:
1,969,294 Gas / 50 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1FA1db47...7886c7D1a |
5 Eth
Nonce: 0
|
4.9015353 Eth
Nonce: 1
| 0.0984647 | ||
0x973e5269...8d27041A9 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 1,579.711798800749134787 Eth | 1,579.810263500749134787 Eth | 0.0984647 |
Execution Trace
DxToken.60806040( )
1234567891011121314151617181920212223242526pragma solidity ^0.4.23;/*** @title SafeMath* @dev Math operations with safety checks that throw on error*/library SafeMath {/*** @dev Multiplies two numbers, throws on overflow.*/function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {if (a == 0) {return 0;}c = a * b;assert(c / a == b);return c;}/*** @dev Integer division of two numbers, truncating the quotient.*/function div(uint256 a, uint256 b) internal pure returns (uint256) {// assert(b > 0); // Solidity automatically throws when dividing by 0