ETH Price: $1,822.88 (+0.69%)

Transaction Decoder

Block:
21539290 at Jan-02-2025 08:50:47 PM +UTC
Transaction Fee:
0.00030767204104175 ETH $0.56
Gas Used:
32,650 Gas / 9.423339695 Gwei

Emitted Events:

267 RelayReceiver.FundsForwardedWithData( data=0x2AA2879697D7A467194E939D3B0A0B6F98A4F86D1576450F32E8706F74B85636 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
13.034672512448626154 Eth13.034675797115059804 Eth0.00000328466643365
0xB02EafE7...Eb67B147C
0.025588734697688358 Eth
Nonce: 8
0.025157249502840814 Eth
Nonce: 9
0.000431485194847544
0xf70da978...8dfA3dbEF 313.547298298718049655 Eth313.547422111871855449 Eth0.000123813153805794

Execution Trace

ETH 0.000123813153805794 RelayReceiver.2aa28796( )
  • ETH 0.000123813153805794 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();
            }
        }
    }