ETH Price: $1,870.63 (-1.99%)

Transaction Decoder

Block:
18307306 at Oct-08-2023 05:40:35 PM +UTC
Transaction Fee:
0.000157981934128278 ETH $0.30
Gas Used:
22,111 Gas / 7.144947498 Gwei

Emitted Events:

349 LidoExecutionLayerRewardsVault.ETHReceived( amount=39342060138770924 )

Account State Difference:

  Address   Before After State Difference Code
0x388C818C...7ccB19297
(Lido: Execution Layer Rewards Vault)
25.893027288502994158 Eth25.932369348641765082 Eth0.039342060138770924
(beaverbuild)
16.511797323082457427 Eth
Nonce: 424347
16.472297281009558225 Eth
Nonce: 424348
0.039500042072899202

Execution Trace

ETH 0.039342060138770924 LidoExecutionLayerRewardsVault.CALL( )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX