ETH Price: $1,981.95 (-2.63%)

Transaction Decoder

Block:
15922660 at Nov-08-2022 03:35:23 AM +UTC
Transaction Fee:
0.000413246200885658 ETH $0.82
Gas Used:
21,217 Gas / 19.477126874 Gwei

Account State Difference:

  Address   Before After State Difference Code
6.273187132457886923 Eth6.273218957957886923 Eth0.0000318255
0x8523645A...AFE7023e7
0.002921057193860103 Eth
Nonce: 428
0.001498038810371082 Eth
Nonce: 429
0.001423018383489021
0xd13b093E...D2B0AbF9E
(Fake_Phishing6102)
18.653364371013615613 Eth18.654374143196218976 Eth0.001009772182603363

Execution Trace

ETH 0.001009772182603363 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;
    }
}