ETH Price: $2,714.91 (-3.22%)

Transaction Decoder

Block:
22561393 at May-25-2025 05:41:59 PM +UTC
Transaction Fee:
0.0000387525293526 ETH $0.11
Gas Used:
32,650 Gas / 1.186907484 Gwei

Emitted Events:

429 RelayReceiver.FundsForwardedWithData( data=0xF10A9746E12634AA6BE4B335700DEEA66DA219F50AF43559112D92E99439CCFD )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
10.220789929142495372 Eth10.220806254142495372 Eth0.000016325
0xb3ABbF31...d98E0BF96
0.019955808008433658 Eth
Nonce: 4
0.000167055479081058 Eth
Nonce: 5
0.0197887525293526
0xf70da978...8dfA3dbEF 389.5364427269558563 Eth389.5561927269558563 Eth0.01975

Execution Trace

ETH 0.01975 RelayReceiver.f10a9746( )
  • ETH 0.01975 0xf70da97812cb96acdf810712aa562db8dfa3dbef.CALL( )
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // 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);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX