Transaction Hash:
Block:
23773348 at Nov-11-2025 03:34:47 AM +UTC
Transaction Fee:
0.000069129758608908 ETH
$0.13
Gas Used:
32,964 Gas / 2.097128947 Gwei
Emitted Events:
| 291 |
RelayReceiver.FundsForwardedWithData( data=0x1F1BBAAF81A9001AFD659E69A41501698A120F522F9A458E1C8F1D548CEA13D5865D8597 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 17.987154806788774686 Eth | 17.987220734788774686 Eth | 0.000065928 | |
| 0x7a22A755...3f0aF790c |
0.0226805700419684 Eth
Nonce: 554
|
0.011903335748840367 Eth
Nonce: 555
| 0.010777234293128033 | ||
| 0xf70da978...8dfA3dbEF | (Relay: Solver) | 510.458804493716139441 Eth | 510.469512598250658566 Eth | 0.010708104534519125 |
Execution Trace
ETH 0.010708104534519125
RelayReceiver.1f1bbaaf( )
- ETH 0.010708104534519125
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();
}
}
}