ETH Price: $4,623.71 (+7.86%)

Transaction Decoder

Block:
22976290 at Jul-22-2025 05:44:59 PM +UTC
Transaction Fee:
0.0000463733155716 ETH $0.21
Gas Used:
32,650 Gas / 1.420315944 Gwei

Emitted Events:

639 RelayReceiver.FundsForwardedWithData( data=0x862B22D8DF93D64C1A7E58E38B7F1DEB678B6188A642BBBFCC3001FD4A5B94EE )

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
7.302615832249183828 Eth7.302615832537156828 Eth0.000000000287973
0xe7489F7a...80A33331b
0.076472391271485848 Eth
Nonce: 659
0.003426017955914248 Eth
Nonce: 660
0.0730463733155716
0xf70da978...8dfA3dbEF
(Relay: Solver)
320.916680968867570831 Eth320.989680968867570831 Eth0.073

Execution Trace

ETH 0.073 RelayReceiver.862b22d8( )
  • ETH 0.073 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();
            }
        }
    }