Transaction Hash:
Block:
23819380 at Nov-17-2025 02:06:47 PM +UTC
Transaction Fee:
0.00005223600843955 ETH
$0.10
Gas Used:
32,650 Gas / 1.599877747 Gwei
Emitted Events:
| 269 |
RelayReceiver.FundsForwardedWithData( data=0x3B53C4CFE68399A5E7984F45EB0A96EBB473CFCFC54E4EC1ABF961C67E88ACD5 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.714956302127788583 Eth | 11.714969641715909433 Eth | 0.00001333958812085 | |
| 0xB8E92722...4f1a419ee |
0.371160318698022085 Eth
Nonce: 12
|
0.370697634451081226 Eth
Nonce: 13
| 0.000462684246940859 | ||
| 0xf70da978...8dfA3dbEF | (Relay: Solver) | 659.942378780623289307 Eth | 659.942789228861790616 Eth | 0.000410448238501309 |
Execution Trace
ETH 0.000410448238501309
RelayReceiver.3b53c4cf( )
- ETH 0.000410448238501309
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();
}
}
}