ETH Price: $2,626.54 (+4.15%)

Transaction Decoder

Block:
22555750 at May-24-2025 10:42:59 PM +UTC
Transaction Fee:
0.00001294788987936 ETH $0.03
Gas Used:
32,976 Gas / 0.39264586 Gwei

Emitted Events:

539 RelayReceiver.FundsForwardedWithData( data=0x8D892CD3D5F0B297744E17F365CBEB095372736590A2F16D44CB0731D9830E11865D8597 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
24.057159015867104061 Eth24.057159019164704061 Eth0.0000000032976
0xe8536B77...366E6Ab27
0.000201559715539475 Eth
Nonce: 1
0.000008552110120645 Eth
Nonce: 2
0.00019300760541883
0xf70da978...8dfA3dbEF 478.722466416489236759 Eth478.722646476204776229 Eth0.00018005971553947

Execution Trace

ETH 0.00018005971553947 RelayReceiver.8d892cd3( )
  • ETH 0.00018005971553947 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