ETH Price: $2,554.38 (+1.81%)

Transaction Decoder

Block:
22561346 at May-25-2025 05:32:35 PM +UTC
Transaction Fee:
0.0000535589393909 ETH $0.14
Gas Used:
32,650 Gas / 1.640396306 Gwei

Emitted Events:

273 RelayReceiver.FundsForwardedWithData( data=0xB80F8E165171BBFF9521C72AEF6F1BB8DEA06B6BDED52E59AA6BD5A7EEB4D86E )

Account State Difference:

  Address   Before After State Difference Code
0x1a9ea69d...4C670EB08
0.001779280001493233 Eth
Nonce: 9
0.0005513081982091 Eth
Nonce: 10
0.001227971803284133
(Titan Builder)
9.974509845496097944 Eth9.974543347692768444 Eth0.0000335021966705
0xf70da978...8dfA3dbEF 387.892094051375845184 Eth387.893268464239738417 Eth0.001174412863893233

Execution Trace

ETH 0.001174412863893233 RelayReceiver.b80f8e16( )
  • ETH 0.001174412863893233 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