ETH Price: $2,238.89 (-1.23%)

Transaction Decoder

Block:
21259414 at Nov-24-2024 06:32:23 PM +UTC
Transaction Fee:
0.000308304396124848 ETH $0.69
Gas Used:
32,202 Gas / 9.574076024 Gwei

Emitted Events:

167 RelayReceiver.FundsForwardedWithData( data=0x04858E87 )

Account State Difference:

  Address   Before After State Difference Code
0x891c4169...01F6393d0
0.150575180844516657 Eth
Nonce: 255
0.030266876448391809 Eth
Nonce: 256
0.120308304396124848
(beaverbuild)
17.168382203214936419 Eth17.168415008486850197 Eth0.000032805271913778
0xf70da978...8dfA3dbEF 168.136570265377281487 Eth168.256570265377281487 Eth0.12

Execution Trace

ETH 0.12 RelayReceiver.CALL( )
  • ETH 0.12 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();
            }
        }
    }