Transaction Hash:
Block:
18107902 at Sep-10-2023 06:56:35 PM +UTC
Transaction Fee:
0.000232764344484605 ETH
$0.47
Gas Used:
22,111 Gas / 10.527083555 Gwei
Emitted Events:
353 |
LidoExecutionLayerRewardsVault.ETHReceived( amount=24531501721996348 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297 | (Lido: Execution Layer Rewards Vault) | 75.226141223514569185 Eth | 75.250672725236565533 Eth | 0.024531501721996348 | |
0x690B9A9E...Db4FaC990
Miner
| (builder0x69) |
2.759190857077109924 Eth
Nonce: 385491
|
2.734426591010628971 Eth
Nonce: 385492
| 0.024764266066480953 |
Execution Trace
ETH 0.024531501721996348
LidoExecutionLayerRewardsVault.CALL( )
1234567891011121314151617181920212223242526// SPDX-FileCopyrightText: 2021 Lido <info@lido.fi>// SPDX-License-Identifier: GPL-3.0/* See contracts/COMPILERS.md */pragma solidity 0.8.9;import "@openzeppelin/contracts-v4.4/token/ERC20/IERC20.sol";import "@openzeppelin/contracts-v4.4/token/ERC721/IERC721.sol";import "@openzeppelin/contracts-v4.4/token/ERC20/utils/SafeERC20.sol";interface ILido {/*** @notice A payable function supposed to be called only by LidoExecLayerRewardsVault contract* @dev We need a dedicated function because funds received by the default payable function* are treated as a user deposit*/function receiveELRewards() external payable;}/*** @title A vault for temporary storage of execution layer rewards (MEV and tx priority fee)*/contract LidoExecutionLayerRewardsVault {using SafeERC20 for IERC20;address public immutable LIDO;address public immutable TREASURY;/*** Emitted when the ERC20 `token` recovered (i.e. transferred)* to the Lido treasury address by `requestedBy` sender.*/