ETH Price: $2,814.46 (+2.16%)

Transaction Decoder

Block:
22555718 at May-24-2025 10:36:35 PM +UTC
Transaction Fee:
0.000028175663168928 ETH $0.08
Gas Used:
32,976 Gas / 0.854429378 Gwei

Emitted Events:

455 RelayReceiver.FundsForwardedWithData( data=0xD296965AD9692E0D2FF3D4B401FE2B4009ED728E78FDFDA45D36BFDE9A3DE979865D8597 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
23.997486842042412896 Eth23.997503330042412896 Eth0.000016488
0x4Ef68Daa...801905c57
0.010688095463036882 Eth
Nonce: 33
0.008659919799867954 Eth
Nonce: 34
0.002028175663168928
0xf70da978...8dfA3dbEF 477.507580914337610303 Eth477.509580914337610303 Eth0.002

Execution Trace

ETH 0.002 RelayReceiver.d296965a( )
  • ETH 0.002 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