ETH Price: $2,538.79 (-0.25%)

Transaction Decoder

Block:
22564642 at May-26-2025 04:38:47 AM +UTC
Transaction Fee:
0.0000280282602675 ETH $0.07
Gas Used:
32,650 Gas / 0.85844595 Gwei

Emitted Events:

396 RelayReceiver.FundsForwardedWithData( data=0x3BB97D22CDC922ED050508E7E16CBC4B26BE0B9E6BD506B67C1905A036874170 )

Account State Difference:

  Address   Before After State Difference Code
0x3D9eA3D5...bD79Cc658
0.048675199506124417 Eth
Nonce: 51
0.006647171245856917 Eth
Nonce: 52
0.0420280282602675
(Titan Builder)
22.511376735646828131 Eth22.511393060646828131 Eth0.000016325
0xf70da978...8dfA3dbEF 300.515267883418708687 Eth300.557267883418708687 Eth0.042

Execution Trace

ETH 0.042 RelayReceiver.3bb97d22( )
  • ETH 0.042 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