ETH Price: $2,141.47 (+4.36%)

Transaction Decoder

Block:
23632362 at Oct-22-2025 10:05:47 AM +UTC
Transaction Fee:
0.0000248119544122 ETH $0.05
Gas Used:
32,650 Gas / 0.759937348 Gwei

Emitted Events:

179 RelayReceiver.FundsForwardedWithData( data=0x11C73BD38C6495E3E60253EED49B22581892D38E365942C3664B0833CCEE9575 )

Account State Difference:

  Address   Before After State Difference Code
0xCfA013Fd...DD7c131fA
0.01313759167076341 Eth
Nonce: 62
0.007073280726815967 Eth
Nonce: 63
0.006064310943947443
(BuilderNet)
91.851662949570947647 Eth91.851684398459223797 Eth0.00002144888827615
0xf70da978...8dfA3dbEF
(Relay: Solver)
667.697863553025827694 Eth667.703903052015362937 Eth0.006039498989535243

Execution Trace

ETH 0.006039498989535243 RelayReceiver.11c73bd3( )
  • ETH 0.006039498989535243 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();
            }
        }
    }