Transaction Hash:
Block:
22313128 at Apr-20-2025 10:14:23 PM +UTC
Transaction Fee:
0.00001056833741935 ETH
$0.03
Gas Used:
32,650 Gas / 0.323685679 Gwei
Emitted Events:
| 152 |
RelayReceiver.FundsForwardedWithData( data=0xA442168FF1B09C616964754467A70685BE8E650F4713A13D8282627E0294A4EB )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
|
0x7DbfeD56...32DF8cc6c
Miner
| (MEV Builder: 0x7dbf...c6c) | 1.007909181811067447 Eth | 1.007909202121130547 Eth | 0.0000000203100631 | |
| 0xf00baE1a...3938f25df |
0.012644999468414815 Eth
Nonce: 21
|
0.012015899734665387 Eth
Nonce: 22
| 0.000629099733749428 | ||
| 0xf70da978...8dfA3dbEF | (Relay: Solver) | 211.871957588915403013 Eth | 211.872576120311733091 Eth | 0.000618531396330078 |
Execution Trace
ETH 0.000618531396330078
RelayReceiver.a442168f( )
- ETH 0.000618531396330078
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();
}
}
}