Transaction Hash:
Block:
24154791 at Jan-03-2026 02:42:59 PM +UTC
Transaction Fee:
0.000002745128307024 ETH
$0.006361
Gas Used:
32,976 Gas / 0.083246249 Gwei
Emitted Events:
| 330 |
RelayReceiver.FundsForwardedWithData( data=0x23795AF9DB2E1932CE2B1F422BFD4895B45D755F9B9338352667EA510FF2A875865D8597 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
| 0x15473Bf2...Fa9c7cc26 |
0.007073663647833789 Eth
Nonce: 141
|
0.002854136323781711 Eth
Nonce: 142
| 0.004219527324052078 | ||
|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 13.677781837815023432 Eth | 13.677782339050223432 Eth | 0.0000005012352 | |
| 0xf70da978...8dfA3dbEF | (Relay: Solver) | 696.027417843919138484 Eth | 696.031634626114883538 Eth | 0.004216782195745054 |
Execution Trace
ETH 0.004216782195745054
RelayReceiver.23795af9( )
- ETH 0.004216782195745054
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();
}
}
}