Transaction Hash:
Block:
7008348 at Jan-04-2019 10:07:27 AM +UTC
Transaction Fee:
0.0008316245 ETH
$3.17
Gas Used:
237,607 Gas / 3.5 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x030f552a...b7498383e |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 3,423.972174632821683851 Eth | 3,423.973006257321683851 Eth | 0.0008316245 | |
0xeF5781A2...287610007 |
0.005 Eth
Nonce: 0
|
0.0041683755 Eth
Nonce: 1
| 0.0008316245 |
Execution Trace
Merunas.60806040( )
pragma solidity 0.5.2; contract Merunas { address payable public owner = msg.sender; function () external {} function receiveDonation() public payable {} function extractFunds() public { require(msg.sender == owner); owner.transfer(address(this).balance); } function showBalance() public view returns(uint256) { return address(this).balance; } }