ETH Price: $2,549.36 (+0.40%)

Transaction Decoder

Block:
22597206 at May-30-2025 06:01:23 PM +UTC
Transaction Fee:
0.000137650833933552 ETH $0.35
Gas Used:
32,976 Gas / 4.174273227 Gwei

Emitted Events:

521 RelayReceiver.FundsForwardedWithData( data=0xAE9150680493AD5D70CF7ECB3E59F73691572A268183EC92F76CD838FED32C4F865D8597 )

Account State Difference:

  Address   Before After State Difference Code
0x5Ff57006...dE18E6Fe7
0.002553180025410936 Eth
Nonce: 51
0.000205192340810096 Eth
Nonce: 52
0.00234798768460084
(beaverbuild)
16.96602792209622941 Eth16.96604441009622941 Eth0.000016488
0xf70da978...8dfA3dbEF 196.379914032298560175 Eth196.382124369149227463 Eth0.002210336850667288

Execution Trace

ETH 0.002210336850667288 RelayReceiver.ae915068( )
  • ETH 0.002210336850667288 0xf70da97812cb96acdf810712aa562db8dfa3dbef.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();
            }
        }
    }