Transaction Hash:
Block:
7008368 at Jan-04-2019 10:11:55 AM +UTC
Transaction Fee:
0.000702369 ETH
$2.67
Gas Used:
234,123 Gas / 3 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 9,215.568252591118327621 Eth | 9,215.568954960118327621 Eth | 0.000702369 | |
0xC7516BdF...733Ff5198 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0xeF5781A2...287610007 |
0.0041683755 Eth
Nonce: 1
|
0.0034660065 Eth
Nonce: 2
| 0.000702369 |
Execution Trace
Merunas.60806040( )
pragma solidity 0.5.2; contract Merunas { address payable public owner = msg.sender; function () external payable {} 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; } }