ETH Price: $2,761.54 (-1.06%)

Transaction Decoder

Block:
22555763 at May-24-2025 10:45:47 PM +UTC
Transaction Fee:
0.000018557483207904 ETH $0.05
Gas Used:
32,976 Gas / 0.562757254 Gwei

Emitted Events:

473 RelayReceiver.FundsForwardedWithData( data=0x1A4982EFFA0B9369458072E9EFCC32FACE921F99BC5310744FE1480E93B5AA08865D8597 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
24.121221400796542195 Eth24.121224698396542195 Eth0.0000032976
0xEEE191Aa...7BE31247F
0.011081004831336094 Eth
Nonce: 407
0.001342472737798004 Eth
Nonce: 408
0.00973853209353809
0xf70da978...8dfA3dbEF 478.915558371768866974 Eth478.92527834637919716 Eth0.009719974610330186

Execution Trace

ETH 0.009719974610330186 RelayReceiver.1a4982ef( )
  • ETH 0.009719974610330186 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