ETH Price: $2,199.26 (-5.42%)

Transaction Decoder

Block:
23618997 at Oct-20-2025 01:05:23 PM +UTC
Transaction Fee:
0.000022969618652736 ETH $0.05
Gas Used:
32,976 Gas / 0.696555636 Gwei

Emitted Events:

246 RelayReceiver.FundsForwardedWithData( data=0x08054BDCAC9186DC21463BFFF9FE890A4A93EB7DA071BA72BD852063BBC89FCD865D8597 )

Account State Difference:

  Address   Before After State Difference Code
0x1928dAe8...b61507592
0.067987466065067802 Eth
Nonce: 70
0.061964496446415066 Eth
Nonce: 71
0.006022969618652736
(Titan Builder)
17.048620610417905353 Eth17.048637098417905353 Eth0.000016488
0xf70da978...8dfA3dbEF
(Relay: Solver)
760.361041164084916535 Eth760.367041164084916535 Eth0.006

Execution Trace

ETH 0.006 RelayReceiver.08054bdc( )
  • ETH 0.006 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();
            }
        }
    }