Transaction Hash:
Block:
17506295 at Jun-18-2023 11:13:11 AM +UTC
Transaction Fee:
0.000379871109765095 ETH
$0.97
Gas Used:
23,803 Gas / 15.958959365 Gwei
Emitted Events:
153 |
GasZip.Deposit( from=[Sender] 0xb2cc9b9bc2bd4a88e7c23d8ee64ac6d1af97ea20, chains=151, amount=5300000000000000, to=[Sender] 0xb2cc9b9bc2bd4a88e7c23d8ee64ac6d1af97ea20 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 202.382407449036068833 Eth | 202.382410497752729615 Eth | 0.000003048716660782 | |
0x9E22ebeC...36D6D8390 | 0.376300000000000007 Eth | 0.381600000000000007 Eth | 0.0053 | ||
0xB2CC9B9B...1Af97EA20 |
0.050704050739845443 Eth
Nonce: 7
|
0.045024179630080348 Eth
Nonce: 8
| 0.005679871109765095 |
Execution Trace
ETH 0.0053
GasZip.deposit( chains=151, to=0xB2CC9B9Bc2bd4A88E7c23d8eE64AC6D1Af97EA20 )
deposit[GasZip (ln:10)]
Deposit[GasZip (ln:12)]
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; contract GasZip { event Deposit(address from, uint256 chains, uint256 amount, address to); address public owner; constructor(address _owner) { owner = _owner; } function deposit(uint256 chains, address to) payable external { require(msg.value != 0); emit Deposit(msg.sender, chains, msg.value, to); } function withdraw(address token) external { require(msg.sender == owner); if (token == address(0)) { owner.call{value: address(this).balance}(""); } else { IERC20(token).transfer(owner, IERC20(token).balanceOf(address(this))); } } function newOwner(address _owner) external { require(msg.sender == owner); owner = _owner; } } interface IERC20 { function balanceOf(address) external view returns (uint256); function transfer(address, uint256) external returns (bool); }