Transaction Hash:
Block:
22785391 at Jun-26-2025 01:39:59 AM +UTC
Transaction Fee:
0.0000809190989028 ETH
$0.16
Gas Used:
32,650 Gas / 2.478379752 Gwei
Emitted Events:
| 36 |
RelayReceiver.FundsForwardedWithData( data=0x01EBC049AEA6767AE3352E7F4FFF306469120A4C223617A434B0B6DD10A3ED3B )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 39.367796546200736484 Eth | 39.367812871200736484 Eth | 0.000016325 | |
| 0xe69A2585...c38D490a6 |
0.011529653713793443 Eth
Nonce: 3
|
0.009842803872131955 Eth
Nonce: 4
| 0.001686849841661488 | ||
| 0xf70da978...8dfA3dbEF | (Relay: Solver) | 727.581673485334514459 Eth | 727.583279416077273147 Eth | 0.001605930742758688 |
Execution Trace
ETH 0.001605930742758688
RelayReceiver.01ebc049( )
- ETH 0.001605930742758688
Relay: Solver.CALL( )
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;
contract RelayReceiver {
// --- Structs ---
struct Call {
address to;
bytes data;
uint256 value;
}
// --- Errors ---
error CallFailed();
error NativeTransferFailed();
error Unauthorized();
// --- Events ---
event FundsForwardedWithData(bytes data);
// --- Fields ---
address private immutable SOLVER;
// --- Constructor ---
constructor(address solver) {
SOLVER = solver;
}
// --- Public methods ---
fallback() external payable {
send(SOLVER, msg.value);
emit FundsForwardedWithData(msg.data);
}
function forward(bytes calldata data) external payable {
send(SOLVER, msg.value);
emit FundsForwardedWithData(data);
}
// --- Restricted methods ---
function makeCalls(Call[] calldata calls) external payable {
if (msg.sender != SOLVER) {
revert Unauthorized();
}
unchecked {
uint256 length = calls.length;
for (uint256 i; i < length; i++) {
Call memory c = calls[i];
(bool success, ) = c.to.call{value: c.value}(c.data);
if (!success) {
revert CallFailed();
}
}
}
}
// --- Internal methods ---
function send(address to, uint256 value) internal {
bool success;
assembly {
// Save gas by avoiding copying the return data to memory.
// Provide at most 100k gas to the internal call, which is
// more than enough to cover common use-cases of logic for
// receiving native tokens (eg. SCW payable fallbacks).
success := call(100000, to, value, 0, 0, 0, 0)
}
if (!success) {
revert NativeTransferFailed();
}
}
}