ETH Price: $2,151.22 (+0.14%)

Transaction Decoder

Block:
24092254 at Dec-25-2025 09:13:47 PM +UTC
Transaction Fee:
0.00000100099542135 ETH $0.002153
Gas Used:
32,650 Gas / 0.030658359 Gwei

Emitted Events:

570 RelayReceiver.FundsForwardedWithData( data=0x8644CBC2DAA8EBC80A62E5605F81521394F19D8655A7E856A6C8FAA53AF63E97 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
12.929242268298213177 Eth12.929242268298278477 Eth0.0000000000000653
0xDDe0287e...eE61A7c3E
0.010907974869532287 Eth
Nonce: 45
0.000137896924281169 Eth
Nonce: 46
0.010770077945251118
0xf70da978...8dfA3dbEF
(Relay: Solver)
626.812378105738020716 Eth626.823147182687850484 Eth0.010769076949829768

Execution Trace

ETH 0.010769076949829768 RelayReceiver.8644cbc2( )
  • ETH 0.010769076949829768 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();
            }
        }
    }