ETH Price: $2,532.55 (-7.45%)

Transaction Decoder

Block:
21780108 at Feb-05-2025 11:51:11 AM +UTC
Transaction Fee:
0.00008184836638805 ETH $0.21
Gas Used:
32,650 Gas / 2.506841237 Gwei

Emitted Events:

77 RelayReceiver.FundsForwardedWithData( data=0x35E93D4AEA4522E7EB227C372B1BF9EFB7672562E415E512B3BA955F979B766B )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
8.471328823088011354 Eth8.471370497405918554 Eth0.0000416743179072
0xb9515FAA...D45C411C1
0.00825430203177068 Eth
Nonce: 3
0.00007245366538263 Eth
Nonce: 4
0.00818184836638805
0xf70da978...8dfA3dbEF 651.930210035305933206 Eth651.938310035305933206 Eth0.0081

Execution Trace

ETH 0.0081 RelayReceiver.35e93d4a( )
  • ETH 0.0081 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